Re: [Flashcoders] how are they doing this? Papervision3d or pre-rendered 3d?

2007-09-16 Thread Snepo - Arse
I disagree, IMO tthe only video involved would be the initial sequence of the cards falling though that could easily be an image sequence. It is more likely that just the card turning effect is pre-rendered and the card content is composited at runtime. When the card turns you can see a

Re: [Flashcoders] presentation remote controls

2007-06-29 Thread Snepo - Arse
Remote controls generally trigger keyboard events are are programable so you can map them to whatever keys you want. a On 29/06/2007, at 7:08 PM, martin coulthurst wrote: Hi All Has anyone used a wireless presentation remote control with Flash slides / presentations? I assume that there

Re: [Flashcoders] Uncover the Flash Files

2007-06-08 Thread Snepo - Arse
I also missed content because of the window size. The Flash Times link, for example, cannot be scrolled to if the window is to small. Fonts are hard to read, no preloader, mystery meat navigation etc Why don't you just offer the information in a usable and clear fashion... no wonder there

Re: [Flashcoders] pause an onEnterFrame?

2007-05-07 Thread Snepo - Arse
or just onEnterFrame = function() { if(paused) return; } On 08/05/2007, at 3:15 PM, 阿本 wrote: flashcoders,你好 you can set like this: var flag=0; onEnterFrame=function() { if(flag==1) { } else if(flag!=1) { } } I think this can do you want

Re: [Flashcoders] Programatic anmation to Quicktime/AVI

2007-05-04 Thread Snepo - Arse
Flash CS3 export supports programatic animation. On 04/05/2007, at 6:33 PM, pedr browne wrote: Hello, Got an animation that uses nested MCs and programatic animation. Need to export it to either AVI or uncompressed Quicktime, and obviously using Flash's own export is a no-no. Was

Re: [Flashcoders] Flash and needed computer specs

2007-04-10 Thread Snepo - Arse
FWIW - get them good chairs and desks... no matter how fast their work stations compile it's still less efficient than poor ergonomics and a bad back. As for the machine specs ask them... I'm sure they each have their own preferences. Arse www.snepo.com www.arseiam.com On 11/04/2007,

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Snepo - Arse
On 10/04/2007, at 8:10 AM, Gustavo Duenas wrote: at least he BELIEVES IN YOU. As does Satan, Zeus, Quetzalcoatl, Ganesha, Cthulhu and L Ron Hubbard. Though I'm not sure what that has to do with Flash. ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] jsfl, removing interval-frames

2007-04-02 Thread Snepo - Arse
I have a double frame script here: http://blog.snepo.com/articles/category/flash-jsfl You could easily modify it to remove every other frame (I'd give it a shot but don't have Flash in front of me). Keep in mind that it will not preserve tweens if you remove a key. Arse www.snepo.com

Re: [Flashcoders] Using JSFL with AS files

2007-03-22 Thread Snepo - Arse
jsfl files can be externalised as .jsfl and executed via commandsrun command if that is what you are asking Arse www.snepo.com www.arseiam.com On 23/03/2007, at 12:30 AM, Danny Kodicek wrote: Is there any way to do it? (And yes, I know I'd be better off with an external editor, but

Re: [Flashcoders] 500 blur filters on 500 MCs

2007-03-20 Thread Snepo - Arse
cacheAsBitmap will rasterise all vectors every time you scale or rotate a clip. the superCacheAsBitmap draws an MC to a bitmap object which is then scaled and rotated... thus not needing to re-cache to bitmap every frame. Arse www.snepo.com www.arseiam.com On 21/03/2007, at 10:28 AM,

Re: [Flashcoders] flash cms

2007-03-17 Thread Snepo - Arse
We make a Data Platform for Flash that removes the need for a database and middle ware: http://depot.snepo.com Not a CMS but you can handle all your data/permission management through AS and/or the Flash IDE so dynamic content development with Depot is a cinch. Regards, Arse

Re: [Flashcoders] flash cms

2007-03-17 Thread Snepo - Arse
. On 3/17/07, Snepo - Arse [EMAIL PROTECTED] wrote: We make a Data Platform for Flash that removes the need for a database and middle ware: http://depot.snepo.com Not a CMS but you can handle all your data/permission management through AS and/or the Flash IDE so dynamic content

Re: [Flashcoders] flash cms

2007-03-17 Thread Snepo - Arse
project i have. On 3/17/07, Snepo - Arse [EMAIL PROTECTED] wrote: We make a Data Platform for Flash that removes the need for a database and middle ware: http://depot.snepo.com Not a CMS but you can handle all your data/permission management through AS and/or the Flash IDE so dynamic content

Re: [Flashcoders] is flash still alive?

2007-03-12 Thread Snepo - Arse
Absolutely. I can't speak for other markets but I do know that there is a huge demand for ActionScript skills in Australia. I run a small Flash agency and we have plenty of work to keep us busy and struggle to find enough quality resources. It's even to the point where our developers are

Re: [Flashcoders] Skewing MovieClip??

2007-02-28 Thread Snepo - Arse
Skewing isn't available but is possible. In order to skew a clip (skewClip) the clip needs to be nested inside another movie clip (containerClip). To skew - rotate both skewClip and containerClip in opposite directions and modify either the _xscale or _yscale of containerClip... the