Fixed minor void actions and xml mistakes. But got stuck with these two:
In Firefox flash throws error:
WARNING: unknown action: layer[skin_thumbs].scrolltocenter
ERROR: download of "http://vt-test.most-inform.com/plugins/dblclick.swf" failed
In the xml, there's only one scrolltocenter(); action:
|
Quellcode
|
1
|
layer[skin_thumbs].scrolltocenter(0,get(layer[get(xml.scene)].y));
|
which scrolls to the current scene's thumb on pano start. And it IN FACT does it, although throwing such an error

.
The second problem is loading of doubleckick plugin. Can't even imagine why it happens exactly in Firefox.
The doubleclick code is this:
|
Quellcode
|
1
2
3
4
5
6
7
8
|
<plugin name="dblclick" devices="fullscreensupport"
url="%SWFPATH%/plugins/dblclick.swf" alturl="%SWFPATH%/plugins/dblclick.js"
keep="true"
ondblclick="switch(fullscreen)"
/>
I tried removing "devices" attribute and changing %SWFPATH% to %BASEDIR% and still there's no result *cry*
Have anyone encountered the same problem?
|