Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
planetpankaj  
#1 Posted : Tuesday, June 11, 2013 10:17:15 PM(UTC)
planetpankaj

Rank: Member

Groups: Member
Joined: 5/21/2013(UTC)
Posts: 11


Hi

I want to show a messsage or redirect the user to appstore on applle/android devices if aurigma is not installed please suggest

Thanks
Pankaj
vitaly  
#2 Posted : Thursday, June 13, 2013 1:04:12 AM(UTC)
vitaly

Rank: Advanced Member

Groups: Member
Joined: 12/19/2012(UTC)
Posts: 164

Was thanked: 8 time(s) in 8 post(s)
Hello,

Unfortunately, it is not possible. However, you can add installation link to your page like this:
Code:

<!--Installation link-->
<a href="#" style="display:none" id="downloadAppLink">Install Aurigma Up to upload images</a>
<script type="text/javascript">
(function() {
    var ua = navigator.userAgent;
    var link = document.getElementById("downloadAppLink");
    if (ua.indexOf("Android") > -1) {
        link.setAttribute("href", "https://play.google.com/store/apps/details?id=com.aurigma.aurigmauploader");
        link.style.display = "";
    } else if (ua.indexOf("iPhone") > -1 || ua.indexOf("iPad") > -1) {
        link.setAttribute("href", "http://itunes.apple.com/us/app/aurigma-up/id432611633");
        link.style.display = "";
    }
})();
</script>
Best regards,
Vitaly Kustov
Aurigma Technical Support
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.