This content has been marked as final.
Show 7 replies
-
1. Re: Send command from .swf to .exe
Devendran Nov 29, 2006 7:21 AM (in response to rc3rdmd)What EXE you are having is that EXE is a Flash file?
if it s a Flash file just call a function on the EXE. Or Access the Button/Variable directly using _root.someVariable or _root.someButton
Thats all
-
2. Re: Send command from .swf to .exe
rc3rdmd Nov 29, 2006 7:37 AM (in response to rc3rdmd)I tried both the function and the _root.myButton.enable = true but neither one works. I created a function in the original Flash .exe called enableButtons(); and called it from the .swf file before it's unloaded but it doesn't work.
-
3. Re: Send command from .swf to .exe
Devendran Nov 29, 2006 8:00 AM (in response to rc3rdmd)if you are loading the swf in to the time line of the root. None of your Function will exist. -
4. Re: Send command from .swf to .exe
rc3rdmd Nov 29, 2006 8:13 AM (in response to rc3rdmd)Why doesn't _root.myButton.enable = true work?
Any other options ? -
5. Re: Send command from .swf to .exe
Devendran Nov 29, 2006 8:46 AM (in response to rc3rdmd)How you are loading? r u using _lockroot property anywhere..... -
6. Re: Send command from .swf to .exe
rc3rdmd Nov 29, 2006 8:59 AM (in response to rc3rdmd)I'm loading from the timeline of the .exe file.
I click a button in the .exe that uses the moviecliploader:
myMCL.loadClip("myswf.swf", 5); -
7. Re: Send command from .swf to .exe
Devendran Nov 30, 2006 1:13 AM (in response to rc3rdmd)
movieClipLoaderObj.loadClip("targetURL", targetMovie);
You are mentioning the target movieClip name as number
This is Wrong Practise.. Variable and movie clip names should start with Alphabet. Try with that...