[Flashcoders] clicks on flvs with alpha channels

2007-06-15 Thread kevin dowd
Hello, I am displaying an flv with an alpha channel. ( flash 8 player ) I notice that the onPress event registers across the whole video not just the visible parts of the video. Is it possible to only click the visible parts of the video - ie the bits allowed by the alpha channel? regards ___

[Flashcoders] blur every clip...

2007-05-03 Thread Kevin . Dowd
Hello, Hi, In my app I need to show a modal dialogue and blur/unblur all on-stage clips while the dialogue is active. So, whats the cleanest AS2 way to do this - I'm in Flash 8 but don't want any prototypes. I need to extend all movieclips so does this mean I will need to register every movie

[Flashcoders] 2-d sort solver

2007-02-01 Thread Kevin . Dowd
Hello, aa = [ [20,40],[20,10],[30,15],[30,35],[40,100],[1000,1]]; aa.sort( mySorter) function mySorter(a,b){ if (a[1] > b[1]){ return 1 } } for (var i = 0; ihttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Autho

[Flashcoders] sort 2d array

2007-02-01 Thread Kevin . Dowd
Hello, Can anybody tell me how to sort the following array based upon the second value within each array item myArray:Array = [ [20,40],[20,10],[30,15],[30,35],[40,100],[1000,1]]; this should be something like [[1000,1], [20,10], . Faster the better cos its for a game and gets called a l

[Flashcoders] ffmpeg question

2007-01-09 Thread Kevin . Dowd
Hello, I've got 10 .flv videos running off of the desktop/local app and the user can set in-points and out-points for each one of them and then playback one video composed of all these user-generated points. Could I get ffpeg to take all of these user-generated points and create one single .flv

[Flashcoders] OO way to start RIA app

2006-11-10 Thread Kevin . Dowd
Hello, Recently had to re-jig the start-up sequence to an AS2 flash app - caused lots of unexpected side-effects Struck me that there must be an agreed OO way to start/finish an application. Does anyone have some useful advice on best practice for app start-up from an AS2 perpective? regards