Re: [Flashcoders] Particle Playground, Flash 10 General Purpose Comuting with Pixel Bender

2009-03-26 Thread allandt bik-elliott (thefieldcomic.com)
i'm using rc2 which i think is the latest a On Wed, Mar 25, 2009 at 2:04 PM, mike cann mike.c...@gmail.com wrote: I personally havent done any haXe yet. Have you got the latest version of FD running? 2009/3/24 allandt bik-elliott (thefieldcomic.com) alla...@gmail.com can anyone

[Flashcoders] First lesson

2009-03-26 Thread laurent
Hi, I have the awesome opportunity to give my first flash lesson to young multimedia students in few weeks. I will start with timeline animation, motion tweens and shape tweens to then move to programing tweens and maybe explain a bit of OOP with a simple particle class. I'm looking for

Re: [Flashcoders] First lesson

2009-03-26 Thread Paul Andrews
- Original Message - From: laurent laur...@logiquefloue.org To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Thursday, March 26, 2009 2:28 PM Subject: [Flashcoders] First lesson Hi, I have the awesome opportunity to give my first flash lesson to young multimedia

Re: [Flashcoders] First lesson

2009-03-26 Thread Brian Mays
When I taught Flash students they were always content with letting Flash's nasty default shape tweens do whatever they pleased. Getting them into shape hints was always something that went over well, IF they could wrap their minds around it. Brian Mays On 3/26/09 9:28 AM, laurent

Re: [Flashcoders] First lesson

2009-03-26 Thread laurent
Paul Andrews a écrit : - Original Message - From: laurent laur...@logiquefloue.org To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Thursday, March 26, 2009 2:28 PM Subject: [Flashcoders] First lesson Hi, I have the awesome opportunity to give my first flash lesson to

Re: [Flashcoders] First lesson

2009-03-26 Thread laurent
Brian Mays a écrit : When I taught Flash students they were always content with letting Flash's nasty default shape tweens do whatever they pleased. Yes...I don't like it either. Getting them into shape hints was always something that went over well, IF they could wrap their minds around

Re: [Flashcoders] Tween AS3 issue with Firefox

2009-03-26 Thread Zeh Fernando
That's my guess too, but in that case it would have made sense for him to give us the password to see whatever he wanted us to see. My curiosity was caught, but it's difficult to help when someone is asking for help on something so vague. On Wed, Mar 25, 2009 at 10:15 PM, Muzak

RE: [Flashcoders] Tween AS3 issue with Firefox

2009-03-26 Thread Paul Venton
Can't see a tween either, however the site looks a pretty desolate after a page refresh! Might want to check the SWFs loadInfo (bytesLoaded against bytesTotal). -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On

Re: [Flashcoders] Tween AS3 issue with Firefox

2009-03-26 Thread Muzak
My curiosity was caught, but it's difficult to help when someone is asking for help on something so vague. My thoughts exactly. - Original Message - From: Zeh Fernando z...@zehfernando.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Thursday, March 26, 2009 5:26 PM

Re: [Flashcoders] Tween AS3 issue with Firefox

2009-03-26 Thread Taka Kojima
It's especially great when you take the time to respond to somebody and they don't even read your response, or if they do, they don't respond back. On Thu, Mar 26, 2009 at 10:46 AM, Muzak p.ginnebe...@telenet.be wrote: My curiosity was caught, but it's difficult to help when someone is asking

Re: [Flashcoders] First lesson

2009-03-26 Thread laurent
Shape tweening is dead? :) L laurent a écrit : Brian Mays a écrit : When I taught Flash students they were always content with letting Flash's nasty default shape tweens do whatever they pleased. Yes...I don't like it either. Getting them into shape hints was always something that went

[Flashcoders] timeline methods fail on embedded swf

2009-03-26 Thread Eric Costello
Hello flashcoders, Consider the following as3 file, built for flash 10 with mxmlc; it embeds a swf built with Flash CS4 which contains a simple motion tween: package { import flash.display.* public class Test extends MovieClip {

[Flashcoders] Re: timeline methods fail on embedded swf

2009-03-26 Thread Eric Costello
Apologies, I messed up my code in the original email (used new element instead of the correct new embed). Corrected code here: package { import flash.display.* public class Test extends MovieClip { [Embed(source=embed.swf)] public var embed:Class;

Re: [Flashcoders] timeline methods fail on embedded swf

2009-03-26 Thread Taka Kojima
Not sure if this is the issue, but it sure does sound like it. Does embed.swf have a base class? The issue I ran into caused all of my timeline code to not execute, i.e. fail silently, which seems to be what is happening with you. The problem was that I couldn't import the external.swf's base

Re: [Flashcoders] timeline methods fail on embedded swf

2009-03-26 Thread Taka Kojima
nevermind, i didn't fully read your example, though it might be a related issue, it's probably not the same... Although, seeing as they have similar outcomes, maybe what I said will help you in further debugging the isssue. On Thu, Mar 26, 2009 at 12:05 PM, Taka Kojima t...@gigafied.com wrote:

RE: [Flashcoders] Re: timeline methods fail on embedded swf

2009-03-26 Thread Cor
@Eric, I try to follow this, but it throws an error: TypeError: Error #1007: Instantiation attempted on a non-constructor. at Test() What am I doing wrong? -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On

[Flashcoders] Using replace function to replace all occurences not just one?

2009-03-26 Thread TS
I want to replace all occurrences of the with [LT] not just one var removed:String = hell/HELLO; var pattern:RegExp = //; removed = removed.replace(pattern, [LT]); Can someone point me in the right direction? Thanks, T ___

[Flashcoders] RE: Using replace function to replace all occurences not just one?

2009-03-26 Thread TS
Nevermind Apparently there are flags like adding the g for global. :) Thanks var pattern:RegExp = //g; -Original Message- From: TS [mailto:sunnrun...@gmail.com] Sent: Thursday, March 26, 2009 3:33 PM To: 'Flash Coders List' Subject: Using replace function to replace all occurences not