hie
i can say how u can open new window in fullscreen mode (using javascript & getURL action):
in new browsers (ie5+, may be nn6; havent checked)
function openFullscreen(file){
var wnd=window.open(file,'new','fullscreen')
}
or for older browsers:
function openFullscreen(file){
var w,h,prefs
w=screen.availWidth
h=screen.availHeight
prefs='width='+w+', height='+h+', scrollbars=yes, location=yes, menubar=yes'
var wnd=window.open(file,'new', prefs)
}
or this way:
function openFullscreen(file){
var w,h
w=screen.availWidth
h=screen.availHeight
var wnd=window.open(file,'new', '')
wnd.moveTo(0,0)
wnd.resizeTo(w,h)
}
& somewhere in ur actions:
..
getURL("javascript

penFullscreen('some.swf')"

.. Victor