|
|||
|
Hiya all.
This looks like a really fantastic product. A quick question on the created exe - what does the end user need installed on their machine, and what does/can the package install? Specifically, can an app be supplied without forcing the end user to install anything else? Thanks. PS: Any ideas on the best way to do or emulate a callback? |
|
|||
|
Thanks, that is neat.
![]() I currently have a movieclip that does nothing but check variables (onEnterFrame) set by FFish script. These are set to advise on completion, success and otherwise of tasks external to the movie. The movieClip calls functions to "trigger events" based on the value of these variables. This is the closest I can get to a callback. Any better way? Also, when using the inet object, is there some initialising to be done? inet.isInetConnected() always returns false, even when the connection is there. And, finally is there an intention to create an FTP object or must an external dll be used?Thanks. |
|
|||
|
1. you can define an object in Flash
Code:
function MyObject()
{
this.addProperty("value", this.getVal, this.setVal);
}
MyObject.prototype.getVal = function()
{
}
MyObject.prototype.setVal = function(val)
{
//do something at here
...
}
o = new MyObject;
FlashPlayer.setVariable("o.value", "hello"); 2. The isInetConnected method just ping the site "www.swfkit.com". You can ping any other sites instead. Code:
if (Inet.ping("www.google.com", 3) <= 0) trace("false");
else trace("true");
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|