Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Robert Tweed
Cedric Muller wrote: in the end, using 'this' or leaving it does make a difference, doesn't it ? I cannot decompile to test my sayings, but 'this' adds more bytecode to the file ?? I'm pretty sure it's just compiled into the same bytecode either way. There are a number of ways to test that,

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Ian Thomas
Unless someone has coded a very odd compiler*, for most compilers of most languages including 'this' won't make any difference to the compiled bytecode. Ian *But then, it _is_ Macromedia. You never know. ;-) On 10/31/05, Cedric Muller [EMAIL PROTECTED] wrote: in the end, using 'this' or

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Cedric Muller
so, people not using 'this' assume something not really achievable in terms of 'technology' ? ;) I cannot decompile to test my sayings, but 'this' adds more bytecode to the file ?? No, if you leave it off, it is added at compile time. Like I said, you can't call methods that aren't

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Cedric Muller
correction/confirmation: 'this' keyword is added everywhere it is needed during compile time. Cedric Muller wrote: in the end, using 'this' or leaving it does make a difference, doesn't it ? I cannot decompile to test my sayings, but 'this' adds more bytecode to the file ?? I'm pretty sure

[Flashcoders] Is Not a Number

2005-10-31 Thread Martin Klasson
Run this, once in flash player6-setting, and one time in 7/8, both compiled with as2. The Strong-typing of the parameter doesn't affect the result. But how come this is so indifferent results, was perhaps the output of flsahplayer6 wrong accordingly to ecma? trace(!isNaN(undefined)) / martin

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread Robert Tweed
Chris Velevitch wrote: I think the confusion occurs because you seem to be mixing up the distinction between declaration and reference. Another distinction, which isn't very clear in ActionScript, is the distinction between declaration and definition. The declaration is where you tell the

Re: [Flashcoders] Is Not a Number

2005-10-31 Thread Morten Barklund Shockwaved
Martin Klasson wrote: Run this, once in flash player6-setting, and one time in 7/8, both compiled with as2. The Strong-typing of the parameter doesn't affect the result. But how come this is so indifferent results, was perhaps the output of flsahplayer6 wrong accordingly to ecma?

Re: [Flashcoders] FLV's dropping frames on import for timeline playback.

2005-10-31 Thread Mark Burvill
Putting videos directly on the timeline (if I'm right in thinking that's what you're doing) is not really the way to go, it's notoriously unreliable for anything other than really small videos. Have you tried using one of the Media Display components? Matt Muller wrote: Hi, I have a 360 of

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Robert Tweed
Ian Thomas wrote: Unless someone has coded a very odd compiler*, ... *But then, it _is_ Macromedia. You never know. ;-) Yes, it _is_ Macromedia :-) For a very odd compiler, look no further than Lingo. - Robert ___ Flashcoders mailing list

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Andreas Rønning
ryanm wrote: I cannot decompile to test my sayings, but 'this' adds more bytecode to the file ?? No, if you leave it off, it is added at compile time. Like I said, you can't call methods that aren't members of an object; all functions must be members of some object. AS1/2 allows you to

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Cedric Muller
this is logical: you assign handleXML function to 'xmlDoc.onLoad' handler which means that 'handleXML' belongs to xmlDoc from now on ... In such cases, I do the following: class ParseXML{ private var xmlDoc:XML; private function handleXML(){ trace(owner); } function

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Andreas Rønning
Why? haha, sorry, but to me it looks like you just added var owner = this just to avoid putting trace(this) for no reason other than avoiding to use this. What's the specific reason you did that? I'm guessing you're smarter than me :) - Andreas Cedric Muller wrote: this is logical: you

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Robert Tweed
Andreas Rønning wrote: 2. What the hell is going on with this here class ParseXML{ private var xmlDoc:XML; private function handleXML(){ trace(this); } function ParseXML(url:String){ xmlDoc = new XML(); xmlDoc.ignoreWhite = true; xmlDoc.onLoad =

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Cedric Muller
I am not smarter than you, oh no! Delegate's smarter than us, and AS3 is King!! (problem solved in the future) I am simply declaring a variable in the class which refers to the class itself. This frees me from the scope trap (using this with 'onLoad') : public function handleXML () {

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Andreas Rønning
Morten Barklund Shockwaved wrote: Andreas Rønning wrote: class ParseXML{private var xmlDoc:XML;private function handleXML(){trace(this);}function ParseXML(url:String){xmlDoc = new XML(); xmlDoc.ignoreWhite = true;xmlDoc.onLoad = handleXML;

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Ian Thomas
On 10/31/05, Morten Barklund Shockwaved [EMAIL PROTECTED] wrote: It is amazing how we can turn back to this first-grade example of understanding scoping in ActionScript almost daily. True - but this highlights a flaw in the language rather than a flaw in the questioner... if the same

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Morten Barklund Shockwaved
Andreas Rønning wrote: [snip] *Yawn* here we go again, another new guy trying to understand this OBVIOUS concept that we've been through so many times already. I can't believe he's bothering us with this again! [snip] Sorry, I was in a bad mood due to other circumstances, had just

[Flashcoders] bidimensional array in as

2005-10-31 Thread cornel
hi maybe a silly question, but here i go anyway: how would you write something like this in actionscript: int matrix[3][3]; for(i=0;i3;i++) for(j=0;j3;j++) matrix[i][j]=0; i've done something like this in my code, mtasc doesnt complained, but the program doesnt work, and i have a feeling

Re: [Flashcoders] Scope Issues was :Newbie AS3 question

2005-10-31 Thread Ian Thomas
Now it's not buried at the end of a thread - Dave (Watts), or any other list admin - would it be possible (and desirable) to add a link to the FAQ in the list signature? Then we might actually remember to update it, and newcomers might know where to find it? Cheers, Ian On 10/31/05, Martin Wood

Re: [Flashcoders] map GIS of italy

2005-10-31 Thread Diego Guidi
what you search? A browsable map (viamichelin, mappe.libero.it etc...) or GIS data ? In second case the only data available at high detail are teleatlas and navteq cartography, but are very loud and price is high. Look at services like msn virtual earth and google maps (but from now italy is not

Re: [Flashcoders] bidimensional array in as

2005-10-31 Thread Jon Bradley
On Oct 31, 2005, at 7:22 AM, cornel wrote: hi maybe a silly question, but here i go anyway: how would you write something like this in actionscript: int matrix[3][3]; for(i=0;i3;i++) for(j=0;j3;j++) matrix[i][j]=0; i've done something like this in my code, mtasc doesnt complained, but

Re: [Flashcoders] bidimensional array in as

2005-10-31 Thread Zeh Fernando
int matrix[3][3]; for(i=0;i3;i++) for(j=0;j3;j++) matrix[i][j]=0; You have to create the initial array and then create any sub array. Kinda like: matrix = []; for(i=0;i3;i++) { matrix[i] = []; for(j=0;j3;j++) { matrix[i][j] = 0; } }

Re: [Flashcoders] Newbie AS3 question

2005-10-31 Thread Jon Bradley
Ok. Since I was the 'ass' that started this junk by asking why this was needed, maybe I can be the 'ass' that will end it. This thread started with Andreas asking about addChild. Fair enough. I asked about a specific example that used this on a method which was a member of the same class

[Flashcoders] Profiling the clients CPU

2005-10-31 Thread Alias
Hi guys, I'm working on a project which involves reducing the amount of work done, based on the client's CPU speed. I'm wondering - does anyone have a tried tested method of doing this? I'm thinking something along the lines of: startTime = getTimer(); //do something timeconsuming - loop 100

Re: [Flashcoders] Profiling the clients CPU

2005-10-31 Thread Martin Wood
maybe it would be best to do the profiling using the code that is being performed, otherwise your results may be unreliable. i dont know if thats possible in your case, but you could start from the bottom and work up. run a few loops of the doSomethingEasy() and see how fast its running, if

AW: [Flashcoders] Profiling the clients CPU

2005-10-31 Thread Lars Heinrich
I used this in my last projects... var result : Number = 0; for(var i : Number = 0; i 3; i++) { var t : Number = getTimer(); while(getTimer() - t 50) { var r : Number = random(10); mc._x = r; mc._y = r; mc._xscale

RE: [Flashcoders] Flash and ASP/MSSQL

2005-10-31 Thread Dominic Fee
Hi Amanda This link may be of great use: Cheers Dom http://www.cybergrain.com/tech/demos/flashhtml/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Amanda Kuek Sent: 30 October 2005 04:39 To: Flashcoders mailing list Subject: [Flashcoders] Flash and

Re: [Flashcoders] bidimensional array in as

2005-10-31 Thread Gregory
You must create empty arrays first, like this: // bidimensional array in AS var matrix2:Array = []; for(i=0;i3;i++){ matrix2[i] = []; for(j=0;j3;j++){ matrix2[i][j]=0; } } trace(matrix2); -- original message -- On Oct 31, 2005, at 7:22 AM, cornel wrote: hi

Re: [Flashcoders] bidimensional array in as

2005-10-31 Thread Jon Bradley
On Oct 31, 2005, at 9:24 AM, Gregory wrote: You must create empty arrays first, like this: // bidimensional array in AS var matrix2:Array = []; for(i=0;i3;i++){ matrix2[i] = []; for(j=0;j3;j++){ matrix2[i][j]=0; } } trace(matrix2); Yea, I'm a dufus. I

[Flashcoders] Database based flash application

2005-10-31 Thread Danny Kirkwood
My other basic issue is for an application which displays approx 50 boxes each of which i currently have formed using movie symbols, can be fully rotated in 45 degree increments have 6 options of contents (this would leave each box having 2 varients (8 for position, 6 for content), or 48

[Flashcoders] JavaDoc in as2

2005-10-31 Thread Martin Klasson
Hi People. I have been reading about the JavaDoc, and that is really what I will implement into my documentation-routine. But now when I know all the tags and so on, I don't know what is a general good way to use for params and how to really actually turn javadoc into a good use within the

RE: [Flashcoders] Simple serial reading application

2005-10-31 Thread Pedro Furtado
Try Zinc v2 for PPC. ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Danny Kirkwood Sent: segunda-feira, 31 de Outubro de 2005 14:50 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Simple serial reading application I am a beginner

Re: [Flashcoders] JavaDoc in as2

2005-10-31 Thread Doug Miller
http://java.sun.com/j2se/javadoc/writingdoccomments/ On Mon, 31 Oct 2005, Martin Klasson ([EMAIL PROTECTED]) wrote: Hi People. I have been reading about the JavaDoc, and that is really what I will implement into my documentation-routine. But now when I know all the tags and so

[Flashcoders] Right-Click Pauses Movie

2005-10-31 Thread DP
Hey Gang! I've got a time dependent Flash file. When the user right-clicks on the movie, the movie pauses. I do understand it is possible to disable the menu, however , does anyone know if it is possible for the Flash movie not to pause when a right-click is registered? Thanks! David

RE: [Flashcoders] Simple serial reading application

2005-10-31 Thread Scott Hyndman
This is a strange thing to want to do in Flash. Is using Flash a requirement? Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Pedro Furtado Sent: Mon 10/31/2005 10:34 AM To: 'Flashcoders mailing list' Cc: Subject:RE: [Flashcoders] Simple serial reading

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread Ian Thomas
Nope. my_win, the variable, is still declared (to the compiler) as a MovieClip. It only knows about it as type MovieClip. The object it 'points to' happens to be of type MyCustomForm, which is an object that inherits from MovieClip. It does all the things that MovieClip does, just does more

RE: [Flashcoders] Flash vs Flex

2005-10-31 Thread Kevin Aebig
Amen brother... Testify! !K -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: October 27, 2005 10:47 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Flash vs Flex Admittingly, something needs to be done. Hopefully either Blaze

[Flashcoders] DHTML and Flash Player 8 Bugs Fixed?

2005-10-31 Thread Helmut Granda
Hello all, I received an email stating that the Layering problem between Flash Content and DHTML (for example drop down menues) has been fixed in flash player 8. And that this is a bug in flash player 7. I dont know if this is true, so I was trying to get some insight from some one that can

Re: [Flashcoders] JavaDoc in as2

2005-10-31 Thread JOR
Doug Miller wrote: http://java.sun.com/j2se/javadoc/writingdoccomments/ On Mon, 31 Oct 2005, Martin Klasson ([EMAIL PROTECTED]) wrote: Hi People. I have been reading about the JavaDoc, and that is really what I will implement into my documentation-routine. But now when I know

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread JesterXL
You don't ever actually change anything in AS2 though; you can't. My example is just showing you are telling the compiler that you are changing it's type; I know full well it's type never changes. You can use Number, int, String, parseInt, and parseFloat; but only 2 of those can be used as

[Flashcoders] blog presentation flash

2005-10-31 Thread dc
I need to do a product site which is viewed in flash, but want to use a blogging system to manage the content updates. seems like wordpress has well documented DB apis etc to pull the post content out of; has anyone seen other blogging systems that someone has written a flash presentation layer

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread JesterXL
To clarify, it changes to the type as far as the compiler is concerned, but at runtime, yes, it's just a MovieClip. - Original Message - From: Ian Thomas [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Monday, October 31, 2005 10:44 AM Subject: Re:

RE: [Flashcoders] Simple serial reading application

2005-10-31 Thread Danny Kirkwood
dosn`t have to be flash, but we have a shell everything i need setup in flash im not very good with other softwares- just thought there may be some backdoor way to read com ports to flash. what software would you reccomend scott ? The application is for reading some kind of tag - displaying

Re: Re: [Flashcoders] JavaDoc in as2

2005-10-31 Thread Doug Miller
http://www.as2doc.com/ I believe there are other applications out there that will do it as well. Anyone know if there are any eclipse plugins that will generate docs for as2, that would be nice! Get your own 800 number Voicemail, fax, email,

Re: [Flashcoders] blog presentation flash

2005-10-31 Thread John Dowdell
dc wrote: I need to do a product site which is viewed in flash, but want to use a blogging system to manage the content updates. Do you need to update just text? or also images? or also display structure (columns, layout etc)? or also database structure (new catalog items, etc)? Knowing the

[Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-10-31 Thread Helmut Granda
I believe I hickjaked a thread. Sorry about that here is the new thread: Hello all, I received an email stating that the Layering problem between Flash Content and DHTML (for example drop down menues) has been fixed in flash player 8. And that this is a bug in flash player 7. I dont know if

[Flashcoders] Right-Click Pauses Movie

2005-10-31 Thread DP
Hey Gang! I've got a time dependent Flash file. When the user right-clicks on the movie, the movie pauses. Just to clarify, I do not want to uncheck the play item, I want to ensure that the flash movie keeps playing when a right-click is registered. I do understand it is possible to

Re: [Flashcoders] How do I make a new post?

2005-10-31 Thread DP
Hahahah. Thanks man! Now I know I am a complete idiot. Thanks for your patience. On Oct 31, 2005, at 9:31 AM, Helmut Granda wrote: You just did. DP wrote: Hey! I think I might be really dumb by asking this How do I make a new topic in this group? I've tried posting a new topic twice.

Re: [Flashcoders] blog presentation flash

2005-10-31 Thread Mike Duguid
probably worth checking out mosxml, a version of mambo that outputs xml and has a basic flash skin in the download http://www.ciadd.co.uk/mosxml/index.php?option=contenttask=viewid=41 On 10/31/05, dc [EMAIL PROTECTED] wrote: I need to do a product site which is viewed in flash, but want to use

Re: [Flashcoders] DHTML and Flash Player 8 Bugs Fixed?

2005-10-31 Thread John Dowdell
EMAIL TIP: Try hitting New Message in your emailer when starting a new discussion, rather than hitting Reply, to avoid becoming invisible in emailers which thread conversations. (Right now your post is found in the archive as a reply to Right-Click Pauses Movie!) The references field in your

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread Ian Thomas
No - it _doesn't_ change the type of the variable from the compiler's PoV, that's my point. :-) I've probably been explaining really badly. The statement: var my_var:A; defines a thing which can point to objects of type A. This thing can only _ever_ hold references to objects of type A and

[Flashcoders] Updating MS Outlook calendar from Flash app

2005-10-31 Thread James Johnson
Is it possible to create a calendar application in Flash which allows the user to click on an event and to have that event automatically added to their MS Outlook calendar? I know that Microsoft has done a lot to tighten up security in Outlook, and a lot of things that used to be possible are

Re: [Flashcoders] How do I make a new post?

2005-10-31 Thread John Dowdell
Summary: The New button in your emailer helps get attention for a new thread better than the Reply button does. DP wrote: How do I make a new topic in this group? I've tried posting a new topic twice. You just did so here... you can check it in the archive too:

RE: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread Adams, Matt
Has the bug been fixed in 8? Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, October 31, 2005 11:01 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Strict Datatyping Question To clarify, it changes to the type

Re: [Flashcoders] How do I make a new post?

2005-10-31 Thread DP
John, I really feel like an idiot, but this is not the first time. Thank you for you instructions and patience, and your reply. I also can't cook rice to save my life! David On Oct 31, 2005, at 10:02 AM, John Dowdell wrote: Summary: The New button in your emailer helps get attention for a

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread Ian Thomas
Matt, See all the previous mails. It's not a bug, so won't have been fixed. It's the way that the language is supposed to work. Ian On 10/31/05, Adams, Matt [EMAIL PROTECTED] wrote: Has the bug been fixed in 8? Matt ___ Flashcoders mailing list

Re: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-10-31 Thread John Dowdell
So this becomes Does anyone know of WMODE support in various browsers for Linux? If so, then I just tried some quick searches with mixed results -- I found many incidental mentions, but no document which seems to answer Which Linux browsers can buffer plugins offscreen? The Flash Release

[Flashcoders] Why does Mask, mask dynamic text?

2005-10-31 Thread Noyes, Jeff
Is there a way around this? I'm applying a mask on top of a dynamically loaded .swf. The Mask is removing all dynamic text - why? -Original Message- From: Bolo Michelin [mailto:[EMAIL PROTECTED] Sent: Thursday, October 06, 2005 8:28 AM To: Flashcoders mailing list Subject: Re: SV:

Re: [Flashcoders] JavaDoc in as2

2005-10-31 Thread Ron Wheeler
Doxygen and the eclox plug-in. Ron Doug Miller wrote: http://www.as2doc.com/ I believe there are other applications out there that will do it as well. Anyone know if there are any eclipse plugins that will generate docs for as2, that would be nice!

Re: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-10-31 Thread Helmut Granda
Thanks for all your help, not only I learned how exactly indetify the problem but also how to post more accurate subjects to the list. I will try to get the source info for this problem and post it back to the list. ...helmut John Dowdell wrote: So this becomes Does anyone know of WMODE

Re: [Flashcoders] Why does Mask, mask dynamic text?

2005-10-31 Thread David Rorex
On 10/31/05, Noyes, Jeff [EMAIL PROTECTED] wrote: Is there a way around this? I'm applying a mask on top of a dynamically loaded .swf. The Mask is removing all dynamic text - why? 1. Try doing a dynamic mask, applied at runtime. I think there's a bug with applying masks in the authoring

Re: [Flashcoders] Simple serial reading application

2005-10-31 Thread Ron Wheeler
Try Google. I came up with this tutorial http://people.interaction-ivrea.it/h.barragan/flashserialinterface.html It does not describe how to write the server but that might come from the manufacturere of the device. Ron Danny Kirkwood wrote: dosn`t have to be flash, but we have a shell

Re: [Flashcoders] Bizare...AS3.0 packages have methods?

2005-10-31 Thread Spike
It's a method of the package. When you create an AS 3 class you can put methods inside the package {} block, but outside any class definitions. I'm not sure why it works that way, but that's the way it works. Spike On 10/31/05, Martin Wood [EMAIL PROTECTED] wrote: i think its just a function

Re: [Flashcoders] Bizare...AS3.0 packages have methods?

2005-10-31 Thread JesterXL
Another one that looks even weird is flash.util.getTimer. Adding camel case makes it weird, but in usage it's not so bad. If you do: import flash.util.trace; You can then just do: trace(normal); In your classes. - Original Message - From: Martin Wood [EMAIL PROTECTED] To:

Re: [Flashcoders] blog presentation flash

2005-10-31 Thread Judah Frangipane
Hi dc, I started a Flash UI for drupal project a while ago. After my research I figured you could do a Flash front end to display data but it would be difficult to do the data entry. So the option would be a mixed site with Flash to display content and HTML to create it. I came to the conclusion

Re: [Flashcoders] map GIS of italy

2005-10-31 Thread Liam Morley
Is this flash- or actionscript-related? The only thing I can recommend as far as flash and maps is http://www.neave.com/lab/flash_earth/ Liam On 10/31/05, Marco Sottana [EMAIL PROTECTED] wrote: where i can find a map of italy i wish coordinates in a database.. i like www.mappy.com

Re: [Flashcoders] Bizare...AS3.0 packages have methods?

2005-10-31 Thread Alias
Yeah - if I had £1 for every time I said - hmmm, I wish I could redirect all the traces to a different function (like a screen logger) without changing my code too much... I have at least £10. :) Alias On 10/31/05, Stan Vassilev [EMAIL PROTECTED] wrote: Well that's one thing I always wanted to

[Flashcoders] How to get value of passed array element

2005-10-31 Thread Miles Thompson
I have a text field of references, like so ... A HREF='asfunction:_root.addStory, _root.arrStorys[0]' bBULLETIN:SPECULATION HOUNDS SEAMARK/b/A A HREF='asfunction:_root.addStory, _root.arrStorys[1]' bHEADLINES OCTOBER 31, 2005/b/A A HREF='asfunction:_root.addStory, _root.arrStorys[2]' bFORBES

Re: [Flashcoders] Metadata injection

2005-10-31 Thread Alex McCabe
Hi Simon, I think you'll need to look into the file format specification for this. Try the H263VideoPacket tag near the end. I'd suggest using a tool that can convert an existing tagged FLV into a XML document so you can have a look at what's going on. You might be able to alter the XML and

RE: [Flashcoders] Why does Mask, mask dynamic text?

2005-10-31 Thread Noyes, Jeff
So you have to set the mask through actionscript - that's the only way? -Original Message- From: JesterXL [mailto:[EMAIL PROTECTED] Sent: Monday, October 31, 2005 1:54 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Why does Mask, mask dynamic text? Not true; if you use

[Flashcoders] Flash Org Chart: Anyone seen an example?

2005-10-31 Thread Noyes, Jeff
I need to find an example of a Flash Org Chart - preferably one that's built off of an XML file. Has anyone seen anything like this? -Original Message- From: JesterXL [mailto:[EMAIL PROTECTED] Sent: Monday, October 31, 2005 1:54 PM To: Flashcoders mailing list Subject: Re: [Flashcoders]

Re: [Flashcoders] Why does Mask, mask dynamic text?

2005-10-31 Thread JesterXL
Embedding a font works, but for smaller fonts, even in Flash Player 7, it's all blurry. Flash Player 8 looks pretty good. Both solutions, however, add a ton of CPU RAM overhead because embedded fonts use anti-aliasing to make them look nice so slow down animations and use more ram. However,

RE: [Flashcoders] Bizare...AS3.0 packages have methods?

2005-10-31 Thread Mark Lapasa
:/ Something like trace should be globalized (but somehow could be overrided). I guess I can't have everything. In MM's anti-method-globalization approach, it seems like a whole bunch of handy methods like... trace() fscommand() getTimer() LoadVars.send() ...got kicked out of the global house

[Flashcoders] casting to a boolean

2005-10-31 Thread Matt Ganz
hi. i had a similar problem casting a string to a boolean last week but someone showed me the correct way to do it. unfortunately, it's not working in my latest exercise. when i trace out the value i always get false even when i change it to true. what happened to my conditional? ( i'm publishing

Re: [Flashcoders] Making a function var global

2005-10-31 Thread DP
Hey man. You could create a variable outside of the function, declare it to be global, and then assign it like you have below. DP On Oct 31, 2005, at 2:26 PM, jleonard wrote: I'm using the line below inside a function to create a var using the xml's node name tag. But outside

[Flashcoders] Fwd: casting to a boolean -- SOLVED.

2005-10-31 Thread Matt Ganz
apparently the problem was with the encoding of the text file. it was originally encoded as Western Roman and as soon as i encoded it as utf-8 it worked just fine. -- Forwarded message -- From: Matt Ganz [EMAIL PROTECTED] Date: Oct 31, 2005 4:23 PM Subject: casting to a boolean

RE: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-10-31 Thread Scott Hyndman
Really neat...but may I suggest that you change the name? Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Judah Frangipane Sent: Mon 10/31/2005 3:14 PM To: Flashcoders mailing list Cc: Subject:Re: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed Hi

Re: [Flashcoders] Debugging wih FAMES?

2005-10-31 Thread Ron Wheeler
Flashout is the debugging part of Eclipse Brent Gore wrote: Here goes my first post to flashcoders. I recently began experimenting with the FAMES development setup. So far the IDE is really awesome, but is there anyway to debug? I've played with the debug settings in Eclipse but no luck.

Re: [Flashcoders] Bizare...AS3.0 packages have methods?

2005-10-31 Thread ryanm
The reason why all of this is of any concern to me is that I am attempting to write solid AS2.0 today that has the potential to be migrated to AS3.0 tommorow. The reason why I havn't gone head first into AS3.0 is that my present target audience is Flash Player 7. Easy to migrate (for the

Re: [Flashcoders] Strict Datatyping Question

2005-10-31 Thread Muzak
You might find the answer here: http://www.ecma-international.org/publications/standards/Ecma-262.htm Furthermore, in Flash 4, a colon was used to get/set a variable in a certain timeline. If I remember correcty, it looked something like this: phrases/introduction:String = blah; Where 'String'

Re: [Flashcoders] Flash and ASP/MSSQL

2005-10-31 Thread Amanda Kuek
Thanks James. It's a good idea, but I think for this project I'll go with the Javascript sets hidden form fields idea. But thanks for adding this idea to my spongey brain! On 31/10/05, JOR [EMAIL PROTECTED] wrote: I wouldn't hit the server until the location was considered final by the user.

Re: [Flashcoders] Flash and ASP/MSSQL

2005-10-31 Thread Amanda Kuek
Thanks a heap Dominic and Richard! You're right - that flash demo at http://www.cybergrain.com/tech/demos/flashhtml/ was of extremely great use. It's always nice to do something for the first time in Flash, that you didn't think was possible. Cheers again. On 01/11/05, Dominic Fee [EMAIL

Re: [Flashcoders] Debugging wih FAMES?

2005-10-31 Thread JesterXL
I used to use FAME because MTASC is extremely fast at compiling compared to Flash. However, MTASC is apparently not going to support AS3, thus the whole point of using FAME, for me anyway, is dead. While Flashout has some nicely formatted traces, and ASDT has some neat templates, it doesn't

Re: [Flashcoders] Debugging wih FAMES?

2005-10-31 Thread Mike Britton
Learning FlexBuilder 2 can coincide with your FAMES learning because it all happens in the same IDE (Eclipse). I don't recommend switching entirely unless you don't plan to release anything until Flex 2 comes out (Jan?). Flex is simply another way to develop apps on the Flash Platform. (It's

Re: [Flashcoders] Player 8.5 standalone on OSX?

2005-10-31 Thread Michael Bianco
I'd like the answer to this also... On 10/28/05, Jon Bradley [EMAIL PROTECTED] wrote: No answer from MM on their labs forums, or anywhere else for that matter. Anyone locate the standalone player for OS X yet? It aint in the FlexBuilder2 installer or in the plug-in installer. Only the PC

Re: [Flashcoders] Import Outlook contacts or MSN emails into Flash application

2005-10-31 Thread Ryan Matsikas
Im pretty sure outlook at export CSV file or something similiar.. Can't tell you for sure as I dont use either product.. On 10/31/05, Wouter Steidl [EMAIL PROTECTED] wrote: Hi there, Does anyone know if it is possible to import Outlook contacts or people from your MSN or AOL list into a

Re: [Flashcoders] map GIS of italy

2005-10-31 Thread Jason
Hi, Douglas... :) I was wondering if it is possible to see that in action or perhaps some screenshot if it is okay... :) Thanks... Jason - Original Message - From: douglas morrison [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Monday, October

[Flashcoders] ASDT data loss?

2005-10-31 Thread eric dolecki
Just curious if anyone else has lost data when using Eclipse with ASDT? e.dolecki ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] ASDT data loss?

2005-10-31 Thread eric dolecki
i had it clear my entire desktop. I didn't have it all in SVN at the time. Pretty freaking scary when it happens. On 10/31/05, JesterXL [EMAIL PROTECTED] wrote: I've had Eclipse 3.1 delete an entire project directory when I removed a project, and said No, please don't delete the project. It

Re: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-10-31 Thread Helmut Granda
Great work! By any chance Do you have a list of platforms you have tested this on? The main problem I have is with Linux. Thanks ...helmut Judah Frangipane wrote: Hi Saunder, It is possible. Until I send some example links you can look at these screenshots here:

[Flashcoders] EventDispatcher and JavaDoc

2005-10-31 Thread Martin Klasson
I have read through several JavaDocs-documents and am still not having any clue about how to write down that a method uses dispatchEvent. class A{ public function addToQueue(){ // code.. // dispatchEvent(...) } } Is there any @anything for