FLASH Question
- Started
- Last post
- 5 Responses
- T_65
How do you llink a quicktime to a flash page. Something real simple, so you click a button and the quicktime pops up and starts playing?
- GriffDeCarlo0
go to somethingleet or tutorial forum you'll find more help their. no offense this place isnt geared toward that kind of thing. even tho most of us are designers.
- zack270
getURL(qtfilepath);
- unfittoprint0
or
MovieClip.prototype.popCenter= function(url, nom, largeur, hauteur) {
getURL ("javascript:window.open('" +url +"','" +nom +"','width=" +largeur +",height=" +hauteur +",top='+((screen.height/2)-(" +hauteur/2 +"))+',left='+((screen.width/2... +largeur/2 +"))); void(0);");
}//call it
triggerButton.onRelease=function...
popCenter("reel.mov", "nomFenetre", "500", "300", "yes");
}
- Neuarmy0
go to somethingleet or tutorial forum you'll find more help their. no offense this place isnt geared toward that kind of thing. even tho most of us are designers.
GriffDeCarlo
(mar 28 04, 17:00)----------------------------
wtf?
dude, you just signed up today...
shit like this is answered here daily.
- jkosoy0
seriously. all I do here is pretty much answer flash questions...
i definitely think you'd prolly find answers at ultrashock and were-here, too, but there's no sense flaming the guy for asking a question.
in any case, just to not post for the sake of posting, it is getURL(url,window);
as like 10 people have already pointed out. :)