Please help: Fullscreen does not work at customer site

Q&A about the latest versions
Post Reply
User avatar
soulbrother
Posts: 547
Joined: Tue Apr 08, 2008 7:01 pm
Location: München
Contact:

Hi guys,

possibly someone can help on that:

I created a small o2vr project and send it to the customer.
He entered it in his website, here we are:
http://tognetto.de/produkte/hitprint_filme.php

I loaded the same data on my website, just to test, if all works fine ( inkl. html5):
http://panobilder.de/tog-test/

And customer complained: The fullscreen does not work...

As I do not have real experience with websites, I can guess only.... but hopefully someone of you can give me the best hint, WHERE the problem could be "hidden".

Thanks a lot !
frodo
Posts: 224
Joined: Wed Oct 15, 2008 2:52 pm

Hi!
Once loaded, I could open it in fullscreen.
IE 8
Regards, Martin
smooth
Posts: 1493
Joined: Sat Sep 09, 2006 7:30 pm

You/they are missing the parameter AllowFullScreen = "true" value in the <embed>
It is present in the <object> so fullscreen will work with Internet Explorer.

<embed> is for Firefox, Opera, Chrome, Safari etc.

Basically the code being used is outdated. But fix up the missing parameter in the <embed> Flash code and it will work.

Regards, Smooth 8)
Image
User avatar
soulbrother
Posts: 547
Joined: Tue Apr 08, 2008 7:01 pm
Location: München
Contact:

Wow, what a fast and helpful reply !

Great !

I just wonder now, WHERE to input the additional allowfullscreen command:

This is origin html from this side:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shoc ... 1,1,102,55" width="600" height="423">
<param name="movie" value="/360spin_GB-3.swf" />
<param name="quality" value="high" />
<param name= "bgcolor" value="#fcffff" />
<param name= "allowscriptaccess" value="sameDomain"/>
<param name= "allowfullscreen" value= "true"/>

<embed src="/360spin_GB-3.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download ... kwaveFlash" type="application/x-shockwave-flash" width="600" height="423"></embed>
</object>


.
.
Would it be correct to enter it like that? (see red marked):


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shoc ... 1,1,102,55" width="600" height="423">
<param name="movie" value="/360spin_GB-3.swf" />
<param name="quality" value="high" />
<param name= "bgcolor" value="#fcffff" />
<param name= "allowscriptaccess" value="sameDomain"/>
<param name= "allowfullscreen" value= "true"/>

<embed src="/360spin_GB-3.swf" quality="high" allowFullScreen="true" pluginspage="http://www.adobe.com/shockwave/download ... kwaveFlash" type="application/x-shockwave-flash" width="600" height="423"></embed>
</object>



Is that the correct place and writing of this command ??

Many many thanks again !!
Post Reply