Re: [Flashcoders] array out of scope when used with listener

2007-01-02 Thread T. Michael Keesey
On 1/2/07, Daniel Arcé <[EMAIL PROTECTED]> wrote: _global.PhotoAlbum = function(photos_arr:Array) { You don't appear to ever reference photos_arr in any of the code within the function. BTW, why not use a real class? You'd catch some errors easier. -- T. Michael Keesey The Dinosauricon: http:/

[Flashcoders] getters and setters and the "with" statement

2007-01-02 Thread Chris Velevitch
Is the "with" statement purpose to work with getters and setters (in AS2)? If it is, has this issue been raised with Adobe? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au ___ Flashcoders@ch

[Flashcoders] array out of scope when used with listener

2007-01-02 Thread Daniel Arcé
Hello Flash folk, Rather stumped here. Below is a pseudo class that displays an array of dynamically loaded jpegs. I need to arrange them next to each other, and since their widths are all different, I am using MovieClipLoader and the onLoadInit event to get the width and height of the jpeg only af

Re: [Flashcoders] missing method

2007-01-02 Thread Yehia Shouman
Does your Polygon class has a constuctor? On 1/3/07, Omar Fouad <[EMAIL PROTECTED]> wrote: u should set the class from static to dynamic in order to get acess to that method On 1/2/07, Matt Ganz <[EMAIL PROTECTED]> wrote: > > hi. > > i'm having a strange problem. i'm getting compile-time err

RE: [Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread Kalani Bright
Aloha Greg, Thanks for your help. I'm not really looking for the [Inspectable] tag. I'm not using components, and I'm not authoring in Flex. I'm only using the Flex IDE to construct my ActionScript classes to be used in Flash 9. I did used to use [inspectable] when working with components in A

RE: [Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread Kalani Bright
Thanks Jim, AsDoc isn't what I'm looking for but its a nice little easter egg to find. I wasn't aware of it. - For the mailing list, ASDoc is a command-line tool that is used to create HTML documentation from AS and MXML files. The HTML output looks very similar to the Flex 2 or ActionScript 3 Lan

Re: [Flashcoders] Tween.onMotionChanged question

2007-01-02 Thread Mauricio Furtado Massaia
or u can use another Tween Class ( mx.effects.Tween) . example : import mx.effects.Tween; import mx.transitions.easing. *; var q:MovieClip = this.createEmptyMovieClip( "quad_mc" , this.getNextHighestDepth() ); q.beginFill( 0x00, 100 ); q.lineTo( 100 , 0 ); q.lineTo( 100 , 100 ); q.lineTo(

RE: [Flashcoders] Adobe: December 2006 Flash Player PenetrationNumbers

2007-01-02 Thread Daniel Thompson
@greg: Thank you; most helpful. Unfortunately, not as soon as I'd hoped, but at least I know. And I'll definitely add Emmy's blog to my reader. @jd: No, I'm not the decision maker. There are issues surrounding: * Audio issues causing "Netscape" plugin to crash browser (resolved in r28) * C

Re: [Flashcoders] missing method

2007-01-02 Thread Omar Fouad
allright write the code again On 1/3/07, Matt Ganz <[EMAIL PROTECTED]> wrote: unfortunately, that didn't solve the problem. i can access other methods in the class and even add new trace statements (to ensure that the IDE is looking at the right version of the class and not some old CVS'd ve

Re: [Flashcoders] createTextField and embedding fonts

2007-01-02 Thread orangeflower
I ended up using Shared libraries but that wasn't the problem. I'm almost embarrassed to say... I had a movieclip where I was setting it's visibility to false and therefore wasn't seeing it. Wow... that was definitely a dumba$$ moment. I did however find that the shared library route was much

Re: [Flashcoders] missing method

2007-01-02 Thread Matt Ganz
unfortunately, that didn't solve the problem. i can access other methods in the class and even add new trace statements (to ensure that the IDE is looking at the right version of the class and not some old CVS'd version). bizarre, really. On 1/2/07, Omar Fouad <[EMAIL PROTECTED]> wrote: u sho

[Flashcoders] missing method

2007-01-02 Thread Omar Fouad
u should set the class to dynamic ___ 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 Con

Re: [Flashcoders] missing method

2007-01-02 Thread Omar Fouad
u should set the class from static to dynamic in order to get acess to that method On 1/2/07, Matt Ganz <[EMAIL PROTECTED]> wrote: hi. i'm having a strange problem. i'm getting compile-time errors when i try to access a public function in a class. i can successfully access other public methods

[Flashcoders] missing method

2007-01-02 Thread Matt Ganz
hi. i'm having a strange problem. i'm getting compile-time errors when i try to access a public function in a class. i can successfully access other public methods in this class from the same place in the codebase (verified thru traces), but not this one. i don't know if it's a weird CVS error o

Re: [Flashcoders] createTextField and embedding fonts

2007-01-02 Thread Glen Pike
Hi, Yes, you will probably need to use "runtime sharing" and load in the fonts contained in a different file. Glen The question I have is it possible to apply a TextFormat to a TextField using an embedded font that is NOT in the container swf's library? If not then that is my problem

[Flashcoders] createTextField and embedding fonts

2007-01-02 Thread orangeflower
All- I'm sorry to do this and I'm sure someone has an explanation here, but I'm at my wit's end. I have an empty swf that is loading another swf with all of my views, assets etc. I am creating a font symbol in the "view" swf's library to be used later by dynamic TextFields. The font symbol i

Re: [Flashcoders] Adobe: December 2006 Flash Player Penetration Numbers

2007-01-02 Thread John Dowdell
Daniel Thompson wrote: http://www.adobe.com/products/player_census/flashplayer/version_penetration. html Will this be updated for Q4 soon? Can I get a ballpark date? I'm trying to make a plan for migration and would like some Flash Player 9 trending in there. If there is any other data out there

Re: [Flashcoders] Adobe: December 2006 Flash Player Penetration Numbers

2007-01-02 Thread greg h
Daniel, The September numbers were released Nov 6. Extrapolating out, then the December numbers likely will be released the first week of February. I base this on posts by Emmy Huang, the Flash Player product manager. Here is the link for her post regarding the release of the September numbers

Re: [Flashcoders] FileReference + ASP + FlashPlayer9

2007-01-02 Thread Evan Bond
Nevermindgot one working. I'd still like to know if anyone has had similar issues uploading through flash player 9 with classic ASP? and if so, how they overcame it. Cheers, Evan On 1/2/07, Evan Bond <[EMAIL PROTECTED]> wrote: Scratch that...I just found out the server supports ASP.NET<

Re: [Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread T. Michael Keesey
[Inspectable] is for component parameters, not code hints. On 1/2/07, greg h <[EMAIL PROTECTED]> wrote: Kalani, For code hints, I believe you are looking for the [Inspectable] metadata tag. ___ Flashcoders@chattyfig.figleaf.com To change your subscri

Re: [Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread greg h
Kalani, For code hints, I believe you are looking for the [Inspectable] metadata tag. [Inspectable] is used by both Flash and Flex components. For Flash 8, the doc page on [Inspectable] is here: http://livedocs.macromedia.com/flash/8/main/3033.html For Flex 2, the doc page on [Inspectable]

[Flashcoders] Adobe: December 2006 Flash Player Penetration Numbers

2007-01-02 Thread Daniel Thompson
Hi, this is mostly for the Adobe folks on the list: I have been eyeing this page: http://www.adobe.com/products/player_census/flashplayer/version_penetration. html Will this be updated for Q4 soon? Can I get a ballpark date? I'm trying to make a plan for migration and would like some Flash Player

[Flashcoders] RGB/HSB/HSL conversion class?

2007-01-02 Thread Josh Santangelo
I'd think this would be easy to find, but I'm having trouble finding a class which handles conversion between RGB, HSB, and HSL color formats. This one works very well but doesn't do HSL: http://www.flashguru.co.uk/downloads/ColorConversion.as Such a thing has to exist somewhere yeah? thank

Re: [Flashcoders] FileReference + ASP + FlashPlayer9

2007-01-02 Thread Evan Bond
Scratch that...I just found out the server supports ASP.NET and we can make use of it Could you point me to a good Flash + .NET upload example script? Thanks, Evan On 1/2/07, Evan Bond <[EMAIL PROTECTED]> wrote: Yes, we are using classic ASP Unfortunately it is the only option we have as t

[Flashcoders] JOB - London - 6 month contract starting in March

2007-01-02 Thread Lucy Thomson
Hello all, I'm the senior flash developer at Digital Outlook (www.digital-outlook.com) and due to a brief lapse in sanity some months back, I'm soon to be taking 6 months maternity leave and we're looking for someone to cover for me. The guys I work with here are great we're situated right next

Re: [Flashcoders] FileReference + ASP + FlashPlayer9

2007-01-02 Thread Evan Bond
Yes, we are using classic ASP Unfortunately it is the only option we have as the server only supports classic ASP (no PHP, ASP.NET or CF) On 1/2/07, Merrill, Jason <[EMAIL PROTECTED]> wrote: We do it with Flash 9 and .ASP .NET and it works fine. Not sure about classic ASP - is that what yo

RE: [Flashcoders] FileReference + ASP + FlashPlayer9

2007-01-02 Thread Merrill, Jason
We do it with Flash 9 and .ASP .NET and it works fine. Not sure about classic ASP - is that what you refer to? Jason Merrill Bank of America Learning & Organizational Effectiveness ___ Flashcoders@chattyfig.figleaf.com To change your subscrip

RE: [Flashcoders] Multidimensional Object/Array Question

2007-01-02 Thread Merrill, Jason
>>Yeah, i don't touch AS2's xml api any more than I have to. I >>know there are other systems out there, but I find XPath does >>the job for me about 100% of the time. Here's a little tute I >>threw together for XPath: A little clarification I think is needed on that: 1) That's technically Xfa

Re: FW: [Flashcoders] Flash 8 Certification Study Tips?

2007-01-02 Thread JOR
Way to go Doug, congratulations! I was a bit bummed about the logo saying Designer as well. :( James O'Reilly — Consultant Adobe Certified Flash Expert http://www.jamesor.com Design • Code • Train Doug Coning wrote: Thank you to everyone for their assistance in helping me pass the Flash 8

FW: [Flashcoders] Flash 8 Certification Study Tips?

2007-01-02 Thread Doug Coning
Thank you to everyone for their assistance in helping me pass the Flash 8 Certification. I found your suggestions very helpful! I spent a day and a half studying through both Flash 8 Bible and Flash 8 ActionScript Bible. As an application developer who spends 95% of my time working with Componen

[Flashcoders] Q:Libextractor and flash

2007-01-02 Thread moveup
I'm putting together a proposal for a desktop app that would be able to dynamically extract metadata from desktop files and then save this to a database. Has anyone done anything similar? Is this feasible using flash and say, Zinc from Northcode? I was thinking it might be possible to integrate

RE: [Flashcoders] setInterval creates tooltip, then kills it

2007-01-02 Thread Mendelsohn, Michael
Actually, that was the mystery, because -- of course -- my tooltip text was *not* selectable, but the I-beam cursor showed up like an uninvited guest. Thanks for the tip! - MM > Is there any reason why you need your tooltip text to be selectable? Selectable text gives you the i-beam cursor wh

RE: [Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread Jim Robson
You might want to try the Flexcoders list: http://tech.groups.yahoo.com/group/flexcoders/ Meanwhile, if I understand your question correctly, you might want to look at ASDoc: http://labs.adobe.com/wiki/index.php/ASDoc -Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC

[Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread Kalani Bright
Aloha, I'm new to this list and looking forward to the support I can give and the help I can receive. Anyway, about a week ago I started programming in AS 3.0 in Flex Builder 2. Now I'm wondering about meta tags and so forth for code hinting. I would like to enable in the codeing process to p