Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

call a javascript function from out of flash... 2

Status
Not open for further replies.

linckx

Technical User
Oct 2, 2002
18
hi there,

how can I call a javascript function from on a button in flash?

my function works, tried it with a html button, was no prob.
but how can I adress it from flash?

my function is called openPopUp();

friendly greetings
robin
 
Use getURL:

on(release){
getURL("Javascript:popUp()");
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top