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

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

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

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

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

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

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

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,

Re: [Flashcoders] test

2007-09-14 Thread Omar Fouad
Copy that! On 9/12/07, Surendar Reddy [EMAIL PROTECTED] wrote: Testing Mail please just ignore Surendar Reddy.K Software Developer [EMAIL PROTECTED] Ocimum Biosolutions ...enabling RD 6th Floor, Reliance Classic, Road No.1, Banjara Hills, Hyderabad - 500 034, A.P, India Business Phone:

Re: [Flashcoders] test

2007-09-12 Thread Surendar Reddy
Testing Mail please just ignore Surendar Reddy.K Software Developer [EMAIL PROTECTED] Ocimum Biosolutions ...enabling RD 6th Floor, Reliance Classic, Road No.1, Banjara Hills, Hyderabad - 500 034, A.P, India Business Phone: 55262700 | Mobile: 09849969760 | Fax: 556272505 BioIT Solutions |

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

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:

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... ___

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.

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

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

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

RE: [Flashcoders] test

2007-02-26 Thread Steven Sacks | BLITZ
: [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 centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your

RE: [Flashcoders] test

2007-02-24 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 if using ActionScript 2.0

2006-11-09 Thread Merrill, Jason
My limited understanding is all .swfs compile down to bytecode anyway, and it's the Flash player that contains the runtime and inteprets the AS 1.0 or 2.0 bytecode as the case may be, not the .swf, so I don't think that would work. Jason Merrill Bank of America Learning Organizational

Re: [Flashcoders] Test if using ActionScript 2.0

2006-11-09 Thread Wagner Amaral
Furthermore, I think I read somewhere (can't remember where) that all code made in AS2.0 is converted to AS1.0 at compile time (classes and methods are converted to prototype-style functions), so even the flash player has no clue wether the code was 1.0 or 2.0. side-note: my first post on the

RE: [Flashcoders] Test if using ActionScript 2.0

2006-11-09 Thread Mike Keesey
If you were using AS3.0 you could use the flash.display.LoaderInfo.actionScriptversion property. Wait--no, that only distinguishes 1.0 and 2.0 from 3.0. You could use the swfVersion property, though. Why exactly do you need to detect this? ― Mike Keesey -Original Message- From: [EMAIL

RE: [Flashcoders] Test CPU/performance/rendering

2006-05-24 Thread Robin Burrer
Hey Mick, Maybe it is better to give the user the option to select the processor speed rather than detecting it automatically. (that would be similar to picking your connection speed for a QuickTime movie). Some users may want to see all the effects even though they have a slow computer. If you

Re: [Flashcoders] Test CPU/performance/rendering

2006-05-24 Thread Mick G
Some good points Robin. I'd like to try automate the process as much as I can but will keep that in mind - it may be a better solution. Your timer would work for CPU speed, but I think I'd have to combine it with some rendering of some kind to test the capabilities of the graphics card also. eg.

RE: [Flashcoders] Test CPU/performance/rendering

2006-05-24 Thread Matthew Simpson
AFAIK the system.capabilities object is not capable of determining the highest FPS of the current viewer. Mostly it is for fairly vanilla info such as what FPlayer is running, OS, has Audio, has Video, etceteras. Which is not saying there is not a way to do so. If there is, peeps on this list

Re: [Flashcoders] Test - ignore

2006-04-27 Thread Jordan Snyder
Mine never show up unless someone replies...so, do you see it now? Cheers On 4/27/06, Merrill, Jason [EMAIL PROTECTED] wrote: Test - ignore my messages don't seem to be getting through. Jason Merrill | E-Learning Solutions | ICF International

RE: [Flashcoders] Test - ignore

2006-04-27 Thread Merrill, Jason
Mine never show up unless someone replies...so, do you see it now? Yeah, I saw your reply, but not my post. In my list subscription options on chattyfig.figleaf.com, I have Receive your own posts to the list? set to be Yes but I still don't see my own posts. Anyone know how to fix this? Jason

RE: [Flashcoders] Test - ignore

2006-04-27 Thread Dave Watts
Yeah, I saw your reply, but not my post. In my list subscription options on chattyfig.figleaf.com, I have Receive your own posts to the list? set to be Yes but I still don't see my own posts. Anyone know how to fix this? I suspect this may be a configuration issue with your mail server.

RE: [Flashcoders] Test - ignore

2006-04-27 Thread Merrill, Jason
-Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Dave Watts Sent: Thursday, April 27, 2006 4:41 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] Test - ignore Yeah, I saw your reply, but not my post. In my list subscription

Re: [Flashcoders] test

2006-04-04 Thread Steve Rachels
D- Dave Watts 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 Software Premier Authorized Adobe

RE: [Flashcoders] Test

2006-03-31 Thread Dave Watts
Out of curiosity Dave, do you know why the list(s) seems to go down so often? Seems like every 2-3 months now. Not complaining, just curious if you could fill us in. Thanks. The server is reaching its end of life. I plan to purchase a new server by the end of Q2. Dave Watts, CTO, Fig

Re: [Flashcoders] test

2006-03-14 Thread Éric Thibault
Is it online now? Dave Watts wrote: 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

RE: [Flashcoders] test

2006-03-14 Thread Kevin Aebig
test -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Éric Thibault Sent: March 14, 2006 2:10 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] test Is it online now? Dave Watts wrote: test Dave Watts, CTO, Fig Leaf Software http

RE: [Flashcoders] test

2006-03-14 Thread Dave Watts
Is it online now? Yes. 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 if an library item exist (without JSFL)

2006-01-27 Thread M S
oh, hehe, if you are not using components, use attachMovie() Peace, Mike On 1/27/06, M S [EMAIL PROTECTED] wrote: Hi, What are you trying to do? var testLinkageName:String = PimpDaddySmooth; var test = createObject(testLinkageName, test, 420); if (test == undefined) { trace(linkage