|
|||
|
greetz from germany,
i like swfkit pro very much, because of its good options, but i still have a problem understanding the manual :-[ i just downloaded swfkit to realise a cd application, but i don't know how to create a new window from my main.swf. i want a button to open another .swf file in a new window. is it possible to create a new opening window with other another appearance with swfkit? and if it's possible, could you please tell me the right scripting. thanx |
|
|||
|
Hi
I know that new window. Code:
myButtonbtnListener = new Object();
myButtonbtnListener.click = function() {
// Open this Export Dialog
import SWFKit.*;
var form = new Form();
form.movie = Global.getAdditionalFile("< your flashfilm >");
form.caption = "New Window";
form.showCaption = true;
form.canDrag = true;
form.initVars = "formid="+form.Identifier;
form.show(true);
};
myButton.addEventListener("click", myButtonbtnListener);
I hope enjoy.. Gb SnakeMedia
__________________
Sorry I am deaf! I have problem with eys... Thanks! |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|