Pop-up Window From Cd

Hi there all…

Please I need help, does any body knows hot to lunch
a html page located in a folder on a CD

CD ROOT/FLASHMOVIE/FOLDER/HTML PAGE

Thanks in advance

Create a file called, “Autorun.inf” and add:

[autorun]
icon=yourlogo.ico
open=path/to/file.htm

The icon bit is optional, but I’d suggest having one for consistency and better corporate-branding. Plus, it adds a professional feel to things.

Of course, the Autorun.inf is Win-only.

Oh, I see thanks for your tip NewHopeKenny, but What I need is to launch the html with mouse function… do you know how?

myButton.onRelease = function() {
     getURL("path/to/file.htm", _blank);
}

Thanks a lot… I’ll try that right now!..