Please forgive my ignorance as i'm pretty new to Flash. I have a button inside of my flash website that links to a html page. I would like to load that in a new window. What's the best way for me to approach this. Thanks in advance.
New Browser Window...What code are you using for the button?
New Browser Window...on (release) {
?getURL(''http://www.handsoftheriver.com/onlineStore.html'');
}
Try adding ''_blank'' as a second argument
on (release) {
?getURL(''http://www.handsoftheriver.com/onlineStore.html'', ''_blank'');
}
Ned, You are the man! Thank you very much. That did the trick!
BFM
You're welcome
No comments:
Post a Comment