Re: [Flashcoders] test swf on slow machines

2011-04-27 Thread Vedanayagam G
Hi In flex mobile project how to execute sql update and insert query for play book tablet cos in simulator its working but not update and insert query working in playbook tablet.. any body do me a favour for this my query On Sun, Apr 10, 2011 at 6:13 AM, Anthony Pace

Re: [Flashcoders] test swf on slow machines

2011-04-27 Thread Vedanayagam G
Hi In flex mobile project how to execute sql update and insert query for play book tablet cos in simulator its working but not update and insert query working in playbook tablet.. any body do me a favour for this my query On Sun, Apr 10, 2011 at 6:27 PM, Paul Andrews p...@ipauland.com

Re: [Flashcoders] test swf on slow machines

2011-04-27 Thread Paul Andrews
On 27/04/2011 08:40, Vedanayagam G wrote: Hi In flex mobile project how to execute sql update and insert query for play book tablet cos in simulator its working but not update and insert query working in playbook tablet.. any body do me a favour for this my query You give so little

Re: [Flashcoders] test swf on slow machines

2011-04-27 Thread Vedanayagam G
Hi dear, In VMWare player(blacberry playbook tablet) how to access sqlite data base... it can be access in simulator but not working in player.. whats d solution for this.. any one do me a favour.. On Wed, Apr 27, 2011 at 1:24 PM, Paul Andrews p...@ipauland.com wrote: On

Re: [Flashcoders] test

2011-04-25 Thread John R. Sweeney Jr
Now I have a chocolate highŠ :) on 4/24/11 12:18 PM, Kerry Thompson at al...@cyberiantiger.biz wrote: Cor wrote: It is Easter, so hunting the bunny Eggxactly. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] test

2011-04-24 Thread Paul Andrews
Traffic seems to have abruptly stopped.. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] test

2011-04-24 Thread Cor
Got it. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Paul Andrews Sent: zondag 24 april 2011 15:46 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] test Traffic seems to have abruptly

Re: [Flashcoders] test

2011-04-24 Thread Paul Andrews
On 24/04/2011 14:48, Cor wrote: Got it. Thanks Cor. I guess the list is exceptionally quiet. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] test

2011-04-24 Thread Cor
: [Flashcoders] test On 24/04/2011 14:48, Cor wrote: Got it. Thanks Cor. I guess the list is exceptionally quiet. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] test

2011-04-24 Thread Kerry Thompson
Cor wrote: It is Easter, so hunting the bunny Eggxactly. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Henrik Andersson
Micky Hulse skriver: Basically, I needed a way to test if my class was assigned to the FLA as a Document Class, or, if it was assigned to movieclip/sprite in library (export for actionscript) and added to stage manually. You are missing two cases: The first one is if it was never added to

RE: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Merrill, Jason
Basically, I needed a way to test if my class was assigned to the FLA as a Document Class, or, if it was assigned to movieclip/sprite in library (export for actionscript) and added to stage manually. This is one of those occasional questions where I would ask, even if you could do this, why

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Micky Hulse
Hi Henrik, thanks so much for the reply/feedback, I really appreciate it. On Thu, Apr 21, 2011 at 1:22 AM, Henrik Andersson he...@henke37.cjb.net wrote: The first one is if it was never added to any symbol. Ah, interesting. Good point. I am thinking that maybe I could check if typeof is

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Henrik Andersson
Micky Hulse skriver: After I posted my code, I changed this line: public class Test extends Sprite { ... to this: public class Test extends MovieClip { I assume that is how I would account for a timeline instance? Nope. Timeline instances can, but doesn't have to, be Sprites too. And the

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Micky Hulse
Hi Jason! Thanks so much for the constructive feedback, I really appreciate it. :) On Thu, Apr 21, 2011 at 5:49 AM, Merrill, Jason jason.merr...@bankofamerica.com wrote: This is one of those occasional questions where I would ask, even if you could do this, why would it really be necessary

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Micky Hulse
On Thu, Apr 21, 2011 at 9:50 AM, Micky Hulse mickyhulse.li...@gmail.com wrote: I assume that is how I would account for a timeline instance? Ah, I think I know what you mean now. I could do something like: public function Test($this:Object = null) { ... and use the passed-in value if one has

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Micky Hulse
On Thu, Apr 21, 2011 at 10:03 AM, Henrik Andersson he...@henke37.cjb.net wrote: Nope. Timeline instances can, but doesn't have to, be Sprites too. And the change is in fact useless for the purpose of detecting this scenario. Ah, interesting. Thanks for the clarification! I appreciate the help.

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-21 Thread Micky Hulse
On Thu, Apr 21, 2011 at 10:18 AM, Micky Hulse mickyhulse.li...@gmail.com wrote: I have updated my code to use the above concept. Is that what you mean? Sorry, here's the url: https://gist.github.com/933493 ___ Flashcoders mailing list

[Flashcoders] Test if class is attached to document or symbol?

2011-04-20 Thread Micky Hulse
Hi, I was just curious if there is a neat way to test if a class has been attached as a document class or if it has been attached to an object (i.e. library symbol). I am trying to kick the dust my AS3 braincells here... For some reason I can't think of a good way to do this. My goal: 1.

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-20 Thread Mattheis, Erik (MIN-WSW)
Put a function in your document class and check if the function is defined? try { myDocumentClassFunction(); // must be your document class catch { // must not be your document class } On 4/20/11 7:31 PM, Micky Hulse mickyhulse.li...@gmail.com wrote: Hi, I was just curious if

Re: [Flashcoders] Test if class is attached to document or symbol?

2011-04-20 Thread Micky Hulse
Hi Erik, thanks so much for your help, I really appreciate it. :) On Wed, Apr 20, 2011 at 6:48 PM, Mattheis, Erik (MIN-WSW) ematth...@webershandwick.com wrote: Put a function in your document class and check if the function is defined? Hmm, sorry, I might not have explained things too well. I

Re: [Flashcoders] test swf on slow machines

2011-04-10 Thread Paul Andrews
I would think that very few people have such slow machines and while they are out there do they really form part of your target audience? What exactly are you doing to exercise the machines heavily? Last year I worked on a project that involved animating 150+ avatars on screen together (with

[Flashcoders] test swf on slow machines

2011-04-09 Thread Anthony Pace
How do you do your testing? Do you still have slow machines to test everything on? do you virtualize it and assign a slow processor speed and fewer resources? or do you have another method? I used to test apps on an old Compaq p3 633 mhz (if it ran well there than I could trust it would

Re: [Flashcoders] test

2011-01-12 Thread Glen Pike
- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mendelsohn, Michael Sent: Tuesday, January 11, 2011 12:37 PM To: Flash Coders List Subject: RE: [Flashcoders] test Good one Kerry! That's because we don't have Flash is dead threads

Re: [Flashcoders] test

2011-01-12 Thread tom rhodes
[mailto: flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mendelsohn, Michael Sent: Tuesday, January 11, 2011 12:37 PM To: Flash Coders List Subject: RE: [Flashcoders] test Good one Kerry! That's because we don't have Flash is dead threads

Re: [Flashcoders] test

2011-01-12 Thread Cédric Muller
:D I like the talking monkey concept ;) ahahah. ok i promised a client 3d dancing and talking monkeys integrated with facebook and twitter, i've got a facebook account but i'm a bit stuck with the rest On 12 January 2011 10:08, Glen Pike g...@engineeredarts.co.uk wrote: No,

Re: [Flashcoders] test

2011-01-12 Thread Glen Pike
___ -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto: flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mendelsohn, Michael Sent: Tuesday, January 11, 2011 12:37 PM To: Flash Coders List Subject: RE: [Flashcoders] test Good one Kerry! That's because

Re: [Flashcoders] test

2011-01-12 Thread Geografiek
I'm afraid that's not the case. Willem van den Goorbergh On 11 jan 2011, at 19:06, Merrill, Jason wrote: snipPerhaps we're all gurus now. :)\snip Jason Merrill Instructional Technology Architect Bank of America Global Learning =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch,

Re: [Flashcoders] test

2011-01-12 Thread John R. Sweeney Jr
I just finished a 2 month revamp of a simulation game that's been out for 10 years. Really had to dust off the Director skills for that one. It was actually fun, because I still like some of the methodologies and approaches of Director. Maybe it was just nice to do something different for a couple

Re: [Flashcoders] test

2011-01-11 Thread Glen Pike
Yes, but very quiet. On 11/01/2011 16:11, Mendelsohn, Michael wrote: Test: is the list alive? - MM ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] test

2011-01-11 Thread Kerry Thompson
Michael Mendelsohn wrote: Test: is the list alive? Nope. I didn't get this e-mail :-^| Cordially, Kerry Thompson ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] test

2011-01-11 Thread Eric E. Dolecki
Indeed it is :-) Hello. Hello. Hello. Google Voice: (508) 656-0622 Twitter: eric_dolecki XBoxLive: edolecki PSN: eric_dolecki http://blog.ericd.net On Tue, Jan 11, 2011 at 11:11 AM, Mendelsohn, Michael michael.mendels...@fmglobal.com wrote: Test: is the list

Re: [Flashcoders] test

2011-01-11 Thread Mike Duguid
yes On Tue, Jan 11, 2011 at 4:11 PM, Mendelsohn, Michael michael.mendels...@fmglobal.com wrote: Test: is the list alive? - MM ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] test

2011-01-11 Thread Anthony Pace
ha!... that's funny ;^{o On 1/11/2011 11:26 AM, Kerry Thompson wrote: Michael Mendelsohn wrote: Test: is the list alive? Nope. I didn't get this e-mail :-^| Cordially, Kerry Thompson ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] test

2011-01-11 Thread Henrik Andersson
Mendelsohn, Michael skriver: Test: is the list alive? No, it died, the funeral is on feb 29. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] test

2011-01-11 Thread Mendelsohn, Michael
Test: is the list alive? - MM ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] test

2011-01-11 Thread Mendelsohn, Michael
OK, I'm convinced. It seems odd that the list has been *that* quiet. Until this thread, I've gotten a grand total of 2 emails since the new year. That's even quieter than Direct-L. - MM ___ Flashcoders mailing list

RE: [Flashcoders] test

2011-01-11 Thread Mendelsohn, Michael
And along the same lines, what's going on with feeds.adobe.com? That's been down for weeks! - MM ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] test

2011-01-11 Thread Dave Watts
And along the same lines, what's going on with feeds.adobe.com?  That's been down for weeks! They're aware of the situation and are working on it. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business

Re: [Flashcoders] test

2011-01-11 Thread Kerry Thompson
Michael Mendelsohn wrote: Until this thread, I've gotten a grand total of 2 emails since the new year. That's even quieter than Direct-L. That's because we don't have Flash is dead threads. Cordially, Kerry Thompson ___ Flashcoders mailing list

RE: [Flashcoders] test

2011-01-11 Thread Mendelsohn, Michael
Good one Kerry! That's because we don't have Flash is dead threads. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] test

2011-01-11 Thread Anthony Pace
Well I just got back to work from 2 weeks of partying and actually getting some sleep; however, if you would prefer I help kick off the new year by asking some stupid questions, rather than Google the answers, I will gladly accommodate you. here ...it'll just be a sec... On 1/11/2011 12:25

RE: [Flashcoders] test

2011-01-11 Thread Merrill, Jason
...@chattyfig.figleaf.com] On Behalf Of Mendelsohn, Michael Sent: Tuesday, January 11, 2011 12:37 PM To: Flash Coders List Subject: RE: [Flashcoders] test Good one Kerry! That's because we don't have Flash is dead threads. ___ Flashcoders mailing list

Re: [Flashcoders] test

2011-01-11 Thread John R. Sweeney Jr
Well you woke ME up. :) on 1/11/11 10:11 AM, Mendelsohn, Michael at michael.mendels...@fmglobal.com wrote: Test: is the list alive? - MM John R. Sweeney Jr. Interactive Multimedia Developer OnDemand Interactive Inc 945 Washington Blvd. Hoffman Estates, IL 60169 Office/Fax: 847.310.5959

Re: [Flashcoders] test

2011-01-11 Thread John R. Sweeney Jr
Sorry I can't hear youŠ ;) on 1/11/11 10:59 AM, Anthony Pace at anthony.p...@utoronto.ca wrote: ha!... that's funny ;^{o John R. Sweeney Jr. Interactive Multimedia Developer OnDemand Interactive Inc 945 Washington Blvd. Hoffman Estates, IL 60169 Office/Fax: 847.310.5959 Cellular:

Re: [Flashcoders] test

2011-01-11 Thread John R. Sweeney Jr
I didn't Direct-L was functioning anymore. on 1/11/11 11:21 AM, Mendelsohn, Michael at michael.mendels...@fmglobal.com wrote: OK, I'm convinced. It seems odd that the list has been *that* quiet. Until this thread, I've gotten a grand total of 2 emails since the new year. That's even

Re: [Flashcoders] test

2011-01-11 Thread John R. Sweeney Jr
That could be a scary truth. :( on 1/11/11 12:06 PM, Merrill, Jason at jason.merr...@bankofamerica.com wrote: Or, could just be that the global economy still sucks and fewer of us have jobs. John R. Sweeney Jr. Interactive Multimedia Developer OnDemand Interactive Inc 945 Washington Blvd.

Re: [Flashcoders] test

2011-01-11 Thread Kerry Thompson
John R. Sweeney Jr wrote: I didn't Direct-L was functioning anymore. It's still there, for masochists and nostalgia buffs :-^| Cordially, Kerry Thompson ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] test

2011-01-11 Thread Dave Watts
And along the same lines, what's going on with feeds.adobe.com?  That's been down for weeks! They're aware of the situation and are working on it. Aaaand it's back! At least, that's what the Adobe folks told me. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

Re: [Flashcoders] test

2011-01-11 Thread Latcho
Learning ___ -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mendelsohn, Michael Sent: Tuesday, January 11, 2011 12:37 PM To: Flash Coders List Subject: RE: [Flashcoders] test Good one

[Flashcoders] test

2010-08-27 Thread Keith Reinfeld
Am I bouncing? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] test

2010-08-27 Thread Dave Watts
Am I bouncing? I can't see whether you are or not. But your email isn't bouncing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber

RE: [Flashcoders] test

2010-08-27 Thread Keith Reinfeld
...@chattyfig.figleaf.com] On Behalf Of Dave Watts Sent: Friday, August 27, 2010 11:44 AM To: Flash Coders List Subject: Re: [Flashcoders] test Am I bouncing? I can't see whether you are or not. But your email isn't bouncing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: [Flashcoders] test

2010-08-27 Thread John R. Sweeney Jr
We can't see you, so we're NOT sure. :) on 8/27/10 11:39 AM, Keith Reinfeld at keithreinf...@comcast.net wrote: Am I bouncing? John R. Sweeney Jr. Interactive Multimedia Developer OnDemand Interactive Inc 945 Washington Blvd. Hoffman Estates, IL 60169 Office/Fax: 847.310.5959 Cellular:

Re: [Flashcoders] test

2010-08-27 Thread John R. Sweeney Jr
Same thing happened to me about 2 weeks ago, with out any warning. :( on 8/27/10 11:47 AM, Keith Reinfeld at keithreinf...@comcast.net wrote: Okay. Flashcoders disabled my account due to excessive bounces. I am just trying to track down the cause. John R. Sweeney Jr. Interactive Multimedia

[Flashcoders] test

2010-08-03 Thread Newsletter Bag
test sorry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Test

2010-05-14 Thread Elia Morlin
Are my messages coming through? Thanks ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Test

2010-05-14 Thread Nathan Mynarcik
Yup --Original Message-- From: Elia Morlin Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] Test Sent: May 14, 2010 4:58 PM Are my messages coming through? Thanks

Re: [Flashcoders] Test

2010-05-14 Thread Kerry Thompson
Your previous messages have, but this one didn't. On Fri, May 14, 2010 at 4:58 PM, Elia Morlin elia.li...@gmail.com wrote: Are my messages coming through? Thanks ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Test

2010-05-14 Thread Merrill, Jason
Are my messages coming through? No. Jason Merrill Instructional Technology Architect Bank of America Global Learning Join the Bank of America Flash Platform Community and visit our Instructional Technology Design Blog (note: these are for Bank of America employees only)

Re: [Flashcoders] Test

2010-05-14 Thread Kerry Thompson
Elia Morlin wrote: Are my messages coming through? Aside from wiseacre comments from the likes of Jason and me, there's an option you may not know about. Click on http://chattyfig.figleaf.com/mailman/listinfo/flashcoders. Towards the bottom of the page, you will see a button labeled

[Flashcoders] Test Movie vs. Publish

2010-03-18 Thread David Benman
Is there any difference between Test Movie and Publish in terms of the swf compilation? It seems Publish compiles a tad faster on the Mac though I've had issues before where a published swf had issues and the test movie version didn't. David Benman Interactive Developer d...@dbenman.com

Re: [Flashcoders] test message

2009-06-15 Thread Juan Pablo Califano
It works, I guess ... 2009/6/15 Dave Watts dwa...@figleaf.com testing ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore,

[Flashcoders] test message

2009-06-14 Thread Dave Watts
testing ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit

[Flashcoders] test message

2009-06-14 Thread Dave Watts
testing ... -- Dave Watts, CTO, Fig Leaf Software ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Test

2009-01-18 Thread Newsletter Here
Test, sorry. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] test

2008-10-06 Thread laurent
sorry, here a present for testing if I receive your mails... http://vimeo.com/1831024 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] test

2008-06-11 Thread Dave Watts
This is a test of the mailman upgrade. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location.

Re: [Flashcoders] test

2007-09-14 Thread Omar Fouad
for any damage caused by any virus transmitted by this email. - Original Message - From: Durairaj [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, September 11, 2007 4:08 PM Subject: [Flashcoders] test This is for test ignore please

Re: [Flashcoders] test

2007-09-12 Thread Surendar Reddy
- From: Durairaj [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, September 11, 2007 4:08 PM Subject: [Flashcoders] test This is for test ignore please ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

[Flashcoders] Test list...

2007-09-06 Thread Javier Tello
... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training

Re: [Flashcoders] Test list...

2007-09-06 Thread Omar Fouad
test On 9/6/07, Javier Tello [EMAIL PROTECTED] wrote: ... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

[Flashcoders] Test

2007-09-03 Thread Omar Fouad
please Reply to test.. I think the list is down. um not receiving any mail for a while -- Omar M. Fouad - Digital Emotions http://www.omarfouad.net This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential

[Flashcoders] Test message

2007-08-30 Thread Dave Watts
test Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/

[Flashcoders] test

2007-08-30 Thread Thuy
Ignore me plz -- Thuy Nguyen Web Developer Angus Journal 816.383.5228 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

[Flashcoders] Test message

2007-08-30 Thread Dave Watts
test Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/

[Flashcoders] Test

2007-08-06 Thread Omar Fouad
Testing... -- Omar M. Fouad - Digital Emotions http://www.omarfouad.net This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed

[Flashcoders] test

2007-08-06 Thread jean philippe
test ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training

[Flashcoders] test

2007-08-03 Thread Omar Fouad
test -- Omar M. Fouad - Digital Emotions http://www.omarfouad.net +2010 - 2346633 - +2012 - 261 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Test

2007-08-03 Thread Dave Watts
test Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/

Re: [Flashcoders] Test

2007-08-03 Thread Steven Sacks
Ok looks like Flashcoders is having some troubles! haha I'm getting emails in random order from the past few days. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] test mail

2007-07-12 Thread Ravi Marella
Thanks and Regards ___ Ravikiran Marella ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] test email please ignore.

2007-07-06 Thread Ashvin Savani
Best Regards, Ashvin Savani - arckid Founder CTO - Avinashi.com Adobe Community Expert We Never Give Up! ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] test (sorry)

2007-07-03 Thread Steven Sacks
Thanks for your understanding. Glad it's working. Steven Sacks Flash Maestro Los Angeles, CA -- blog: http://www.stevensacks.net gaia: http://www.gaiaflashframework.com Tony Trapp wrote: Hey Steven no biggie test away if need be. Tony... ___

[Flashcoders] test (sorry)

2007-07-02 Thread Steven Sacks
Just testing this new email account for Flashcoders. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier

Re: [Flashcoders] test (sorry)

2007-07-02 Thread Tony Trapp
Hey Steven no biggie test away if need be. Tony... - Original Message - From: Steven Sacks [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, July 03, 2007 1:01 AM Subject: [Flashcoders] test (sorry) Just testing this new email account for Flashcoders

[Flashcoders] test - please ignore

2007-05-30 Thread Nils Millahn
Having some trouble getting messages through - please ignore. thx - Nils. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

[Flashcoders] test

2007-05-14 Thread Gustavo Duenas
test Gustavo Duenas Creative Director LEFT AND RIGHT SOLUTIONS LLC 1225 W. Beaver St. Suite 119 Jacksonville, Fl. 32204 904 . 2650330 www.leftandrightsolutions.com ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

[Flashcoders] TEST

2007-04-18 Thread Steven Sacks
Test message ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training

Re: [Flashcoders] Test

2007-03-25 Thread Omar Fouad
] On Behalf Of Danny Kodicek Sent: Friday, March 23, 2007 6:02 AM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Test Is this delivered??? 'ello D ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

RE: [Flashcoders] Test

2007-03-24 Thread Steven Sacks | BLITZ
@chattyfig.figleaf.com Subject: RE: [Flashcoders] Test Is this delivered??? 'ello D ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought

[Flashcoders] Test

2007-03-23 Thread Omar Fouad
Is this delivered??? -- Omar Fouad - Digital Emotions... Love is always patient and kind. It is never jealous. Love is never boastful nor conceited It is never rude or selfish. It does not take offense and is not resentful. Love takes no pleasure in other people's sins...but delights in the

RE: [Flashcoders] Test

2007-03-23 Thread Danny Kodicek
Is this delivered??? 'ello D ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe

Re: [Flashcoders] Test

2007-03-23 Thread Pedro Taranto
yes --Pedro Taranto Omar Fouad escreveu: Is this delivered??? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

[Flashcoders] test

2007-03-09 Thread Dennis Landi
test ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training

Re: [Flashcoders] test

2007-03-09 Thread Omar Fouad
Test Again On 3/9/07, Dennis Landi [EMAIL PROTECTED] wrote: test ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

Re: [Flashcoders] TEST

2007-03-02 Thread Michael Stuhr
Glen Pike schrieb: Now who wants to discuss which editor is the best? :) no, let's talk about OS's *gg micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] test

2007-02-28 Thread nelson ramirez
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Watts Sent: Sunday, February 25, 2007 11:11 AM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] test Test again ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software

RE: [Flashcoders] test

2007-02-27 Thread Dave Watts
Test yet again ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit

Re: [Flashcoders] test

2007-02-27 Thread nelson ramirez
Of Dave Watts Sent: Sunday, February 25, 2007 11:11 AM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] test Test again ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training

  1   2   >