|
-
a href="#" onClick=window.open(Flash?)
Is it possible to implement something like this using a button inside flash?
<a href="#" onClick=window.open("http://www.thepcmanwebsite.com/online_casino/aff/gamclubaffslots.shtml","","menubar=0,resizable=1,s crollbars=1,status=0,titlebar=0,toolbar=0")>Club Slots</a>
-
Best bet would be to make a function and then call that function from Flash.
on on the HTML side you'd have something like
function popWin(url){
window.open(url,'WindowTitle','menubar=0,resizable =1,scrollbars=1,status=0,titlebar=0,toolbar=0';
}
Then in Flash on your button you'd want something like:
myButton_mc.onRelease = function(){
getURL("javascript opWin('http://www.thepcmanwebsite.com/online_casino/aff/gamclubaffslots.shtml');");
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|