vote up 0 vote down star

I have an AIR Application which uses the mx:HTML tag to load a webpage hosted by me.

In my webpage, I want to invoke a function in the containing AIR application via javascript?

Is this possible?

eg:

in my AIR application:

public function goBack():void{
  trace('invoked from javascript!');
}   

<mx:HTML id="coreHtml" width="100%" height="100%" backgroundAlpha="0" location="http://mydomain.com/myhtmlpage.html" />

Then in myhtmlpage.html

function callActionscript(){
 asfunction.goBack();
}

With this setup I get the following error:

ReferenceError: Can't find variable: goBack

If i change my function to:

function callActionscript(){
 asfunction.parent.goBack();
}

I get the following error:

TypeError: Value undefined does not allow function calls.

Update:

If I change the function to:

function callActionscript(){
 asfunction.goBack;
}

I get the following error:

ReferenceError: Can't find variable: goBack

Now if I put a hyperlink on in myhtmlpage.html:

<a href="asfunction:goBack">test</a>

I get the following error:

*Error: SECURITY_ERR: DOM Exception 18*

flag

63% accept rate
1  
Haven't used asfunction in years. Isn't it safer to use ExternalInterface when dealing with flash/javascript ? ExternalInterface.addCallback() should do the trick. Not sure I'm making things easier for your or not. – George Profenza Aug 27 at 23:45
I'm trying to implement: adobe.com/devnet/flash/… however this is an AIR application so i don't think you can call the: getMovieName("myMovie").callPlayBall code... – dmose Aug 28 at 0:24

1 Answer

vote up 0 vote down

Answered :)

link text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.