-
1. Re: gotourl after external MP4 IM AT WITS END PLEASE HELP
kglad Nov 12, 2010 4:30 PM (in response to NonLinearEdits)are you playing your mp4 in an flvplayback component?
-
2. Re: gotourl after external MP4 IM AT WITS END PLEASE HELP
NonLinearEdits Nov 12, 2010 5:06 PM (in response to kglad)I'm not 100% sure, I go file>import video and then load the external video from there and use the playback skin (none) so i'm assuming yes? lol Sorry I'm a videographer / editor trying to teach myself flash to work on my portfolio lol. I've taken some classes in flash but I'm sure my knowledge is way outdated by now
-
3. Re: gotourl after external MP4 IM AT WITS END PLEASE HELP
kglad Nov 12, 2010 7:33 PM (in response to NonLinearEdits)click your on-stage component to select it and in the properties panel assign an instance name, eg flv.
then create a button (transparent or not), and assign an instance name of btn.
finally, click the backstage to de-select everything and in the properties panel paste:
btn.onRelease=urlF;
var lo:Object = new Object();
lo.complete = function(eObj:Object):Void {
urlF();
};
flv.addEventListener("complete", lo);function urlF():Void{
getURL("http://www.burkepushman.com/home.html");
} -
4. Re: gotourl after external MP4 IM AT WITS END PLEASE HELP
NonLinearEdits Nov 12, 2010 10:45 PM (in response to kglad)You sir are a genius!!! I forgot to name my video in the scene.... thanks so much!
I can't believe i forgot that!
-
5. Re: gotourl after external MP4 IM AT WITS END PLEASE HELP
kglad Nov 12, 2010 11:01 PM (in response to NonLinearEdits)you're welcome.
please mark this thread as answered, if you can.