[Flashcoders] Q: organizing packages and classes

2007-08-15 Thread Geografiek
Hi list, I have al class named 'FormatDecimalen' in a file named 'FormatDecimalen.as' The class is wrapped in an unnamed package. All is well when i call the class from a .fla-file. The .fla is in another location on my HD and points to the class path 'myHD/myProjects/nl/geografiek

Re: [Flashcoders] Q: organizing packages and classes

2007-08-15 Thread Geografiek
nl.geografiek.utilities.FormatDecimalen { If you're using AS3, in your FormatDecimalen.as file change the line: package { to read: package nl.geografiek.utilities { Hope that's helpful, Ian On 8/15/07, Geografiek [EMAIL PROTECTED] wrote: Hi list, I have al class named 'FormatDecimalen' in a file named

Re: [Flashcoders] Q: organizing packages and classes SOLVED

2007-08-15 Thread Geografiek
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our website at: http://www.geografiek.nl

[Flashcoders] CS3: unexpected type

2007-08-23 Thread Geografiek
become type 'xml'. But according to line 7 it is still an object. Why?? Thanks, Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone

Re: [Flashcoders] CS3: unexpected type

2007-08-23 Thread Geografiek
Sorry, typo The fla says 'var xmlData:XML'. Any other suggestions? Thanks, Willem Op 23-aug-2007, om 10:16 heeft Cedric Muller het volgende geschreven: and if you do: var xmlData:XML; ?? Cedric var xmlData:xml; =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based

Re: [Flashcoders] CS3: unexpected type

2007-08-23 Thread Geografiek
the table in the help panel for 'typeof': String:string Movie clip:movieclip Button:object Text field:object Number:number Boolean:boolean Object:object Function:function hth, Cedric =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem

Re: [Flashcoders] CS3: unexpected type

2007-08-24 Thread Geografiek
: and if you do: var xmlData:XML; ?? Cedric var xmlData:xml; =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31

[Flashcoders] creating variable names dynamically in AS3

2007-08-30 Thread Geografiek
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our website

Re: [Flashcoders] creating variable names dynamically in AS3

2007-08-31 Thread Geografiek
value:Type = new Type() ; // you can test the type of your object with a local variable in your loop var name:String = key + i ; map.put( key, value ) ; } trace( map.get( 'key2' ) ) ; trace( map.containsKey('key3') ) ; trace( map.isEmpty() ) ; // etc.. EKA+ :) 2007/8/30, Geografiek

Re: [Flashcoders] AS3 Events, Delegates and passing parameters

2007-09-03 Thread Geografiek
at the switch, though. What is a POO developer? Cordially, Kerry Thompson =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax

[Flashcoders] AS3: dynamically accessing parts of XML

2007-09-04 Thread Geografiek
FISHES FISHfishAndChips/FISH FISHgoldfish/FISH FISHherring/FISH FISHshark/FISH MAMMALwhale/MAMMAL /FISHES /ANIMALS =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design

Re: [Flashcoders] AS3: dynamically accessing parts of XML

2007-09-05 Thread Geografiek
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 http://www.figleaf.com http://training.figleaf.com =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek

Re: [Flashcoders] Print Rows DataGrid

2007-09-07 Thread Geografiek
DataGrid(all 70 rows)? peace, veiky =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein

Re: [Flashcoders] MultiLanguage

2008-01-21 Thread Geografiek
problems - especially with certain languages like chinese. Just looking for some guidance. Dave - Head Developer http://www.blurredistinction.com Adobe Community Expert http://www.adobe.com/communities/experts/ =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map

[Flashcoders] AS3: custom cursor

2008-02-13 Thread Geografiek
(event:MouseEvent):void { _customCursor.x = event.stageX+0; _customCursor.y = event.stageY-0; } thanks, Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30

Re: [Flashcoders] AS3: custom cursor

2008-02-13 Thread Geografiek
); } } } //redrawCursor is called by customCursor private function redrawCursor(event:MouseEvent):void { _customCursor.x = event.stageX+0; _customCursor.y = event.stageY-0; } thanks, Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based

Re: [Flashcoders] AS3: custom cursor

2008-02-13 Thread Geografiek
; _customCursor.y = event.stageY-0; } thanks, Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31

Re: [Flashcoders] Flip movie clip

2008-06-13 Thread Geografiek
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted

Re: [Flashcoders] Insert breakpoints and run debugger withoutFlashCS3?

2008-06-16 Thread Geografiek
I'm afraid so, it seems to be multipying even ;-) Willem Op 16-jun-2008, om 10:40 heeft Ali Drongo het volgende geschreven: Do you think it'll send every time there's a flashcoders post? On 16 Jun 2008, at 09:35, Ian Thomas wrote: I'm guessing it's an away/vacation message. Ian 2008/6/16

Re: [Flashcoders] custom map image geocoding service?

2008-06-17 Thread Geografiek
://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail

[Flashcoders] tree component

2008-07-01 Thread Geografiek
. Does such a tree component exist?I tried the tree components from Astra-flash (Yahoo), Jumpeye and Flashloaded with no success. Thanks, Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can

Re: [Flashcoders] Warning: 3596: Duplicate variable definition.

2008-07-01 Thread Geografiek
mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone

Re: [Flashcoders] Warning: 3596: Duplicate variable definition.

2008-07-01 Thread Geografiek
to 'type'. (maybe only for primitive data types?) Because in your case somehow you need to type the var, but don't know yet the actual type the * comes in handy. my 2ct Willem Op 1-jul-2008, om 12:41 heeft Kerry Thompson het volgende geschreven: Geografiek wrote: It's a wildcard I think

Re: [Flashcoders] tree component

2008-07-01 Thread Geografiek
) === ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell

Re: [Flashcoders] Error #1009 and gotoAndStop()

2008-07-14 Thread Geografiek
- the script runs before frame in the animation has been reached, but how it fix? Thanks Pavel =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6

[Flashcoders] fonts and stylesheets in AS3

2008-07-23 Thread Geografiek
() method go?) - why is the way text in TextArea components is formatted so different from formatting TextFields (e.g. myTextArea.setStyle(embedFonts, true) versus myTfld.embedFonts = true; and many more .. =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map

Re: [Flashcoders] SOLVED++: fonts and stylesheets in AS3

2008-07-23 Thread Geografiek
apply a stylesheet to a V3 TextArea now. Must be peanuts for most of you. cheers Willem van den Goorbergh Op 23-jul-2008, om 12:53 heeft Geografiek het volgende geschreven: Hi list, I try to format a font in a TextField with the following code: //@@ instantiate verdanaBold

Re: [Flashcoders] Runtime font embedding in Flash CS3...

2008-08-18 Thread Geografiek
/ http://developer.yahoo.com/flash/articles/runtime-fonts-as3.html Please note that this is for the flash IDE and not flex. Cheers M =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31

Re: [Flashcoders] isseu with a custom function in AS2

2009-04-03 Thread Geografiek
; } } // // ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart

Re: [Flashcoders] OT - Running windows with bootcamp

2009-05-07 Thread Geografiek
no copies in any media. We appreciate your cooperation. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based

Re: [Flashcoders] Link reference issue

2009-08-03 Thread Geografiek
DeSaulniers Design Drumm http://designdrumm.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map

Re: [Flashcoders] Extra information in classes

2009-09-08 Thread Geografiek
Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378

Re: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-11 Thread Geografiek
://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-24 Thread Geografiek
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-28 Thread Geografiek
in the future, grinning: Didnt I warn you long time ago? regards, Willem van den Goorbergh On 26-sep-2009, at 7:27, Chris Velevitch wrote: On Thu, Sep 24, 2009 at 18:20, Geografiek geograf...@geografiek.nl wrote: I have a .fla with symbols in the library and a docClass.as going with it. When I

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-29 Thread Geografiek
- flash interprets more than one blank line as a line of script regards Margo On 9/28/2009 9:29 AM, Geografiek wrote: Hi Chris, Thanks. I'm on CS4. The line WARNING: Actions on button or MovieClip instances are not supported in ActionScript 3.0. All scripts on object instances

Re: [Flashcoders] add properties to Event object

2009-10-27 Thread Geografiek
! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30

Re: [Flashcoders] TextField with image...

2009-12-20 Thread Geografiek
://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail

Re: [Flashcoders] Rotation

2010-01-26 Thread Geografiek
://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail

Re: [Flashcoders] I Must Be Asking This Question Wrong...

2010-02-02 Thread Geografiek
://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail

Re: [Flashcoders] Runtime Font embedding

2010-02-11 Thread Geografiek
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our website at: http://www.geografiek.nl

Re: [Flashcoders] Runtime Font embedding

2010-02-19 Thread Geografiek
='NameOfFont', unicodeRange='Range1Start-Range1End,, RangeNStart-RangeNEnd')] - jon On Feb 11, 2010, at 6:35 AM, Geografiek wrote: Hi Glen, I don't think it's possible to embed a range of characters through AS3. It's all or nothing I'm afraid/ Willem van den Goorbergh

Re: [Flashcoders] Finding and Removing a Sprite

2010-02-23 Thread Geografiek
/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit

Re: [Flashcoders] Finding and Removing a Sprite

2010-02-23 Thread Geografiek
] On Behalf Of Geografiek [geograf...@geografiek.nl] Sent: Tuesday, February 23, 2010 8:45 AM To: Flash Coders List Subject: Re: [Flashcoders] Finding and Removing a Sprite Hi Theodore, When you say 'addChild(mySprite)' mySprite *is* the child of something: the instance you call addChild on (addChild

Re: [Flashcoders] Finding and Removing a Sprite

2010-02-23 Thread Geografiek
a reference with static type flash.display:DisplayObject From: flashcoders-boun...@chattyfig.figleaf.com [flashcoders- boun...@chattyfig.figleaf.com] On Behalf Of Geografiek [geograf...@geografiek.nl] Sent: Tuesday, February 23, 2010 8:45 AM To: Flash Coders

Re: [Flashcoders] Finding and Removing a Sprite: PART II

2010-02-23 Thread Geografiek
? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh

Re: [Flashcoders] removeChild Question

2010-02-24 Thread Geografiek
. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can

Re: [Flashcoders] removeChild Question

2010-02-24 Thread Geografiek
/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our

Re: [Flashcoders] removeChild Question

2010-02-24 Thread Geografiek
did just 'addChild(my_obj)' (that is within myVar) you can say 'removeChild(my_obj)' (of course also within myVar) HTH Willem On 24-feb-2010, at 15:24, Susan Day wrote: On Wed, Feb 24, 2010 at 9:44 AM, Geografiek geograf...@geografiek.nlwrote: Well, You could at least give a hint

Re: [Flashcoders] finding x of sprite

2010-02-25 Thread Geografiek
? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30

[Flashcoders] (no subject)

2010-02-26 Thread Geografiek
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our website at: http

Re: [Flashcoders] (no subject)

2010-03-01 Thread Geografiek
clicked on. The theoretical problem remains: myArray knows it contains item1 but does item1 have a way of knowing it is part of myArray? thanks Willem van den Goorbergh On 26-feb-2010, at 18:39, Paul Andrews wrote: Geografiek wrote: Hi list, Suppose I have an associative array like

Re: [Flashcoders] (no subject)

2010-03-02 Thread Geografiek
Thanks all, I was afraid of that Henrik. Up the MVC path then (br feel like Little Thumbling in the fairy tale ;-)) cheers Willem van den Goorbergh On 1-mrt-2010, at 19:41, Henrik Andersson wrote: Geografiek wrote: The theoretical problem remains: myArray knows it contains item1

Re: [Flashcoders] addEventListener Problem

2010-03-02 Thread Geografiek
/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX

Re: [Flashcoders] addEventListener Problem

2010-03-02 Thread Geografiek
is correct AS3. HTH Willem On 2-mrt-2010, at 14:28, Susan Day wrote: On Tue, Mar 2, 2010 at 9:15 AM, Geografiek geograf...@geografiek.nl wrote: Hi Susan, In DisplayPicLoaded you add displayObject as a child of container. So in navToURL you can reference it as e.currentTarget.displayObject Half

Re: [Flashcoders] OOP Books (OT)

2010-03-08 Thread Geografiek
books for learning OOP? TIA, Susan ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design

Re: [Flashcoders] Accessing Symbol inside of loaded SWF

2010-03-09 Thread Geografiek
, Geografiek geograf...@geografiek.nl wrote: Hi Fahim, Can be anything. To give you something to proceed we really need more information. What are you doing exactly? (what is the code you use to tell the symbol to do an action) What would you expect to happen? What is actually happening

Re: [Flashcoders] Accessing Symbol inside of loaded SWF

2010-03-09 Thread Geografiek
if I do not want to reference it from inside that event Listener but a another movie clip who would be later its parent? On Tue, Mar 9, 2010 at 4:24 PM, Geografiek geograf...@geografiek.nl wrote: No you can't reference something that is not ther yet. You need to add an eventlistener

Re: [Flashcoders] Accessing Symbol inside of loaded SWF

2010-03-09 Thread Geografiek
So, what's your problem? On 9-mrt-2010, at 15:33, Fahim Akhter wrote: testVar.ball.myStripeToReColor.transform can be written as testVar.someMovieClip.myStripeToReColor.transform On Tue, Mar 9, 2010 at 7:11 PM, Geografiek geograf...@geografiek.nl wrote: Fahim, I think testVar already

Re: [Flashcoders] Accessing Symbol inside of loaded SWF

2010-03-09 Thread Geografiek
on that? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30

Re: [Flashcoders] Accessing Symbol inside of loaded SWF

2010-03-09 Thread Geografiek
. Then had to update the question there too. I apologize for that. Hmm what if I do not want to reference it from inside that event Listener but a another movie clip who would be later its parent? On Tue, Mar 9, 2010 at 4:24 PM, Geografiek geograf...@geografiek.nl wrote: No you can't reference

Re: [Flashcoders] Accessing Symbol inside of loaded SWF

2010-03-09 Thread Geografiek
; testVar.ball.myStripeToReColor.transform = someTransformation The last line does not work. On Tue, Mar 9, 2010 at 5:41 PM, Geografiek geograf...@geografiek.nl wrote: Oké, now I understand, In that case you have to make sure that the user can click only when the ball is loaded. I guess you have an eventListener

Re: [Flashcoders] Passing Call To Child

2010-03-10 Thread Geografiek
/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31) 30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit

Re: [Flashcoders] Passing Call To Child

2010-03-10 Thread Geografiek
Yes I sent that to the wish list, to make AS4 fairer. ;-) Did you try the quotes? Willem On 10-mrt-2010, at 15:58, Susan Day wrote: On Wed, Mar 10, 2010 at 10:38 AM, Geografiek geograf...@geografiek.nlwrote: Hi Susan, The error means that 'e.currentTarget.getChildByName(aChild).text

Re: [Flashcoders] Counting xml attributes

2010-03-26 Thread Geografiek
through xml and count how many times an attribute has a given value? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch

Re: [Flashcoders] text to array

2010-12-30 Thread Geografiek
/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX

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

[Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
is: + this.layers.gemeenteNaam.title); trace(this.classes.class1.keyText is: + this.classes.class1.keyText); } } This traces: source is: null note is: null subTitle is: null copyright is: Geografiek, 2011 mapType is: chorochromaat classes is: [object Object] key is: [object Object] layers is: [object Object

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Geografiek Sent: woensdag 16 februari 2011 12:44 To: Flash Coders List Subject: [Flashcoders] checking for properties AS3 Hi list, I posted this question a week ago on flash tiger, but never

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
Goorbergh On 16 feb 2011, at 13:10, Jens Struwe wrote: Having an example XML could be pretty useful. And, actually, I don't understand the problem. What should be the output? Please hand over all necessary info required to be able to help you. Am 16.02.2011 12:43, schrieb Geografiek: Hi

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
] nl gemeentenamen Best, Jens Am 16.02.2011 13:29, schrieb Geografiek: Hi Jens, What I basically want is to transform the xml structure into an object structure. xml: map id=gemRegioIndeling subTitle/subTitle classes class1

[Flashcoders] AlivePDF + high resolution

2011-03-02 Thread Geografiek
to implement one of the previously mentioned Flex solutions in Flash anyway. Thanks, Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell

Re: [Flashcoders] currency issue

2011-03-02 Thread Geografiek
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our website

Re: [Flashcoders] Simple encapsulation question

2011-03-16 Thread Geografiek
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is een in Utrecht gevestigd kartografisch bureau Willem van den Goorbergh is telefonisch bereikbaar

Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Geografiek
. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted

Re: [Flashcoders] using this in AS3 classes?

2011-06-08 Thread Geografiek
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our website

[Flashcoders] as3 component screen redraw

2011-06-08 Thread Geografiek
, the upper image is what some thin client users see =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail

Re: [Flashcoders] as3 component screen redraw

2011-06-08 Thread Geografiek
rendering system that the components are using. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is een in Utrecht gevestigd

Re: [Flashcoders] sneaky AIR

2011-06-09 Thread Geografiek
) to uninstall. HTH Willem van den Goorbergh =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 or by fax: (+31)302719687 snail mail

Re: [Flashcoders] can't get e.target.data

2011-10-10 Thread Geografiek
@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek

Re: [Flashcoders] swf 2 pdf on the fly

2011-10-28 Thread Geografiek
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 snail mail: Hooghiemstraplein 89

Re: [Flashcoders] alivePDF

2011-10-31 Thread Geografiek
://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is a Dutch, Utrecht-based map and chart design company. Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell phone: (+31)6-26372378 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT Visit our

Re: [Flashcoders] Image grid with zoom effect

2011-12-27 Thread Geografiek
. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Geografiek is een in Utrecht gevestigd kartografisch bureau Willem van den Goorbergh is telefonisch bereikbaar onder nummer 030