Hi,
the fullscreen mode can be changed by changing the "fullscreen" varaible,
e.g. to switch to fullscreen:
|
Quellcode
|
1
|
set(fullscreen,true);
|
for switching back:
|
Quellcode
|
1
|
set(fullscreen,false);
|
to toggle between the two states:
|
Quellcode
|
1
|
switch(fullscreen);
|
note - due the flash security restrictions the fullscreen mode can be only changed as reaction to a user input,
that means it will only work in the code from a mouse or keyboard event,
e.g.
|
Quellcode
|
1
|
<plugin .... onclick="switch(fullscreen);" ... />
|
best regards,
Klaus