I have no issues with it on IOS devices at all. The only thing is that it is not rendered with webGl, which is a bit noticable on older IOS devices, but apart from that, It runs fine on several iPads and iPhones, so I don't get what the problem is.It is the perfect solution but before you spend hours on it check out the previous posts as it fails on an iPad or iPhone.
Bit of a shame really.

Hi Timescale,
I either misunderstood your post and my apologies for that or you seem to have some serious issues going on communicating with other people so I will polity bow out of the conversation and move on as life's too short.
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.comLocation: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.comThis post has been edited 2 times, last edit by "Tuur" (May 10th 2016, 4:05pm)
|
|
Source code |
1 2 |
<layer name="iframe" align="centertop" x="10" y="2" keep="true" url="skin/PlayButtonRed.png" zorder="2" scale="1.0" style="tooltip" tooltip="Play Samples" onclick="switch(autorotate.enabled); add_iframe('player/index.html', 450, 650); showinfo(closeiframe); " devices="!mobile"/>
<layer name="closeiframe" url="skin/click_here.png" zorder="999" parent="layer[iframe]" keep="true" align="centertop" x="0" y="2" visible="false" alpha="0" scale="1.0" onclick="hideinfo(iframe); "/>
|
|
|
Source code |
1 2 3 4 |
<action name="hideinfo"> tween(plugin[%1].alpha, 0, 0.5, default, set(plugin[%1].visible,false)); tween(plugin[%1].scale, 0.5); </action> |
Mmm.. well anything could have happened there really.. Hard to say without diag tools. Do you have a working example online somewhere that can be examined?
|
|
Source code |
1 |
document.getElementById('musicplayer').contentWindow.AjsFunction(argument);
|
Never tried that before.. Perhaps you can set visibility? Use JS to set the iframe SRC to blank for neatness?How do we close the iframe?
removeChild doesn't seem to work?
|
|
Source code |
1 2 3 4 5 6 |
<action name="remove_iframe" type="Javascript">
var iframes = document.querySelectorAll("1%");
var lastIframe = iframes[iframes.length - 1];
lastIframe.parentNode.removeChild(1%);
</action>
|