These forums are provided for community interactions only. For official support please submit a support ticket.
You are not logged in.
I'm guessing that Director knows if ssp mobile is requesting content as opposed to the ssp player. If so, can you please add an option to have Director include a watermark just for the ssp mobile player? My flash player has a watermark built in, but the mobile player serves unprotected images up. Your help will be appreciated!!!
Offline
+1, I really need a solution for this. It is a cinch to download gallery photos with the iPad.
Offline
Thanks for adding your support, Blasko. If we can get a few more people to add their support, maybe Todd will take notice ![]()
Offline
Actually I just found the setting in the slideshow pro director settings. Click settings in the top right and you will see you can add watermarks there at the bottom. Then go back to the album and then its settings and you can turn on your watermark.
Will need to turn off the one inside your regular slideshow swf or else you'll have doubles.
Working great on my droid!
Offline
Yes, I know that one. My logo is over the top of the show in flash, so I don't need a watermark there. Just in ssp_mobile. that's why I'm looking for the switch.....
Offline
+1 for a mobile-only watermark toggle.
Offline
This could be a work around. In your page header include this script:
<script type="text/javascript">// <![CDATA[
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
document.location = "iphoneonlycontentpage.php";
}
// ]]></script>
It will deliver a separate page "iphoneonlycontentpage.php" to iphones and ipads. If you want to cover all mobile phones, get a detection script here: http://detectmobilebrowsers.com/
Once you've delivered the mobile users to a different page (or you can detect on the page and deliver a conditional set of code i.e. "this code for mobile, that code for all others") point your mobile only embed code at a different xml file path to a separate smart album that includes all the images in your original album(s). Add the watermark to this album.
Result: Desktops get your traditional code and albums, mobiles get your mobile only code and smart album with watermark.
Offline
Thanks basedrop!
Offline