RE: [Flashcoders] AS3 Hi-Jinks : Call to a possibly undefined method

2005-10-21 Thread Francis Cheng
We're still working on the actual text of the error messages, and yes, that one could certainly be a little less cryptic. Have you seen the Error and Warning Codes appendix in the language reference? It includes descriptions for some of the more common error codes:

[Flashcoders] class instance and var getting overwritten

2005-10-21 Thread quinrou .
Hi all, I am having a very odd issue with a class I made. What happens is that one of a private variables declare in that class get overwritten when there's more than 1 instance of that class. It seems that this var someObject is common to all instances of the class. Which defites the purpose of

Re: [Flashcoders] What is Flex?

2005-10-21 Thread Andreas Rønning
Guns don't kill people, people kill people, right? The hammer/carpenter brush/painter car/driver analog is endlessly debatable. I belong to a school of thought that believes putting a gun in the hand of a person makes him a far more viable killer than one without the gun. I think people have a

Re: [Flashcoders] using prototypes -bad or good?

2005-10-21 Thread Stan Vassilev
As2 compiles classes down to prototypes. So feature-wise and speed-wise it's the same thing for the player. Prototype allows slightly better tuning of your code (when to put this when not, how to name the getter/setter etc.) but it has little practical benefit. You can still mix prototype

[Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Paul Steven
I have never really got around to learning AS2 and tend to program everything in AS1 - tutt tutt!! Anyway I was thinking it is about time I got with the times and was going to start working through the book I bought a while ago Essential Actionscript 2 by Colin Moock. I bought this a while ago

[Flashcoders] before onchange datagrid

2005-10-21 Thread Hans Wichman
Hi list, is there anyway to prevent a change in the rowselection of a datagrid? Or to detect the row that was selected before the row that is selected after the change event? Image i have 2 rows.. - click row 1, some textfields update - alter textfields - click row 2 now before the click on

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Meinte van't Kruis
Well actually there's some difference in learning AS2 with, say, flash mx 2004 and learning it with flash 8. Not that the language is any different, but the API of flash 8 can be a bit more overwhelming (it's API is more OOP orientated than that of 2004), so perhaps start going through the stuff

[Flashcoders] Change fonts on indiv combobox items

2005-10-21 Thread Mendelsohn, Michael
Hi list... In the MX'04 combobox component, is it possible to change font attributes of each of the items in its drop down list? I can't seem to figure out how to get to each item through code. Thanks, - Michael M. ___ Flashcoders mailing list

[Flashcoders] Flash Kitesurfing Game

2005-10-21 Thread Keith Salisbury
Anyone got any links? cheers keith ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Flash Profiler

2005-10-21 Thread Kevin Bachman
We are building a fairly expansive flash based application which utilizes Flash Comm Server and remoting as well as support for embedded media players outside of the flash app. We are deep enough into development to have begun initial QA testing and the initial cause for concern is memory usage

[Flashcoders] TextField - how to put caret into textfield?

2005-10-21 Thread Oleg Filipchuk
Hi list. maybe this is trivial question but I didn't google the way to do it. I need to create TextField and put the blinking caret into TextField without user clicking on TextField. var my_tf:TextField = this.createTextField ( '_tf', 0, 0, 0, 100, 20); my_tf.border = true; my_tf.type = 'input';

Re: [Flashcoders] TextField - how to put caret into textfield?

2005-10-21 Thread Peter O'Brien
Selection.setFocus('my_tf'); should be Selection.setFocus(my_tf); On 21 Oct 2005, at 13:38, Oleg Filipchuk wrote: Hi list. maybe this is trivial question but I didn't google the way to do it. I need to create TextField and put the blinking caret into TextField without user clicking on

RE: [Flashcoders] flash linux

2005-10-21 Thread zwetan
just a quick test under vmware: ubuntu 4.10: firefox 1.04: w/o image : WORKS w image : CRASH i wonder why you cannot for the sake reproduce this. i really wonder. ... files: http://onupdate.de/ should crash OSX-browsers (at least 10.4) too. I'm just saying if you want improvement in

[Flashcoders] Creating a compiled component or compiled clip?

2005-10-21 Thread Judah Frangipane
We have created a calculator component for reuse but I am not sure if we should create it as a compiled clip or component due to the way it was built. On the stage we have a movieclip and inside of it it has multiple textinputs, buttons, radio groups and graphs. We didn't use a bounding box

[Flashcoders] Job Offers

2005-10-21 Thread Judah Frangipane
We have several full-time positions open for experienced flash developers and software engineers to work on high profile, exciting and challenging projects. These are on-site positions and we are not currently looking for contractors. These projects are both creatively and technically innovative

[Flashcoders] TransitionManager documentation?

2005-10-21 Thread Helen Triolo
Trying again: is it anywhere documented what each of the parameters are, and what values they can be set to, for this statement (copied from http://www.macromedia.com/devnet/flash/articles/tweening_09.html)? And how to use the addTransition method of TransitionManager?

RE: [Flashcoders] using prototypes -bad or good?

2005-10-21 Thread zwetan
What is really the opinion on using prototypes now when as2 is being used? Prototypes can be used, but should it be used? Why it should not be used ? what valid reason ? I got a friend who like doing prototypes and then making an Extension of it. So in the fla-file you can #include

[Flashcoders] Passing param to cuePoint object

2005-10-21 Thread Stephen Hueners
Given the potential utility of cupoints in general the supplied documentation seems ummlite. To import cuepoint information from an XML file structured as: listitem title=Introduction name=unit1_320_20.flv start=0 len=-1 thumb=chap1.jpg qPoint qName=q1_1 qTime=:44 qText=Caption to show

RE: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Paul Steven
Thanks for all the replies. I will get cracking on learning AS2 then before AS4 arrives:) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Merrill, Jason Sent: 21 October 2005 14:58 To: Flashcoders mailing list Subject: RE: [Flashcoders] Learn AS2 or AS3?

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Judah Frangipane
This may be a little late to this conversation but I'd have to disagree. I would learn AS3 and skip AS2. You can only learn and experiment with AS3 in Flex Builder 2 (as far as i know) since Flash Authoring (the next version of Flash) is not out yet. Looking at the specs and transitions from

RE: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Pedro Furtado
Not really, if you use AS2 in all it's strictness and to it's full extent, classes and properly it's not a big change in the logic itself, only a little change in the syntax. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Judah Frangipane Sent:

Re: [Flashcoders] Passing param to cuePoint object

2005-10-21 Thread Josh Gormley
Hi Steve, I'm actually just starting out my research into how to use Flash 8's embedded cuepoints to handle closed captioning. Needless to say, documentation is rather weak right now. Below is my working code for displaying the captions that I embedded in the FLV file using the Flash 8

RE: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Paul Steven
Hmm now I am confused:) Well as I work in the Flash IDE 100% mainly on games and CDROMs etc and the next version of Flash supporting AS3 is a long way off, I think I will go for the AS2 anyway. May as well read the book after reading it and as someone else pointed out, there are no books for AS3

RE: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Mark Lapasa
Having read over AS2.0 and AS3.0 migration... http://livedocs.macromedia.com/labs/1/flex/langref/migration.html ... it feels very disconcerning for those like myself who have invested a fair amount of time in AS2.0 only to find out that to take advantage of Flash Player 8.5+, one has to make

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Stan Vassilev
- you do not have a timeline in AS3+flex2 Just to avoid confusion AS3 still fully supports the timeline, and if you load clips with frames that were compiled in Authoring you can still use goto, stop and all other timeline methods, properties and events. It's Flex which avoids the timeline,

Re: [Flashcoders] Spline 3D Atom Menu thing?

2005-10-21 Thread JesterXL
Awesome, works great, thanks a ton! - Original Message - From: design [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, October 20, 2005 5:25 PM Subject: Re: [Flashcoders] Spline 3D Atom Menu thing? This should get you started: xc = 0;

RE: [Flashcoders] Spline 3D Atom Menu thing?

2005-10-21 Thread Tom Lee
Keith Peters of Bit-101.com wrote a great tutorial based on Jared Tarbell's work at Levitated.net. Here's the tutorial: http://www.bit-101.com/tutorials/nodes.doc Hope that helps, -tom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Rønning

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread ryanm
AS1 and AS2 and AS3 all compile to Flash Player byte-code. The VM could not care less how you created the byte-code. You could define your own language and write your own compiler to generate an swf. Sort of true, but misleading. AS1(2) bytecode runs in the old VM, and AS3 bytecode runs in

Re: [Flashcoders] Undefined and null in Flex2

2005-10-21 Thread Spike
Hi Robert, Gordon Smith from Macromedia posted this to another list a while ago. I am reproducing it with his permission. Hopefully it will clarify things a bit: Note, that this applies only to AS 3, not to AS 2 *** 'undefined' is

Re: [Flashcoders] Flash Profiler

2005-10-21 Thread David Rorex
On 10/21/05, Kevin Bachman [EMAIL PROTECTED] wrote: We are building a fairly expansive flash based application which utilizes Flash Comm Server and remoting as well as support for embedded media players outside of the flash app. We are deep enough into development to have begun initial QA

Re: [Flashcoders] Undefined and null in Flex2

2005-10-21 Thread Darron J. Schall
Spike wrote: Since Object is the only type that can store undefined, if you try to set a var of another type to undefined, it will be coerced into something different. For example, setting a Number to undefined will coerce it to NaN. The complete list, by the way, is on the Wiki here:

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Spike
I've spent a fair bit of time this week helping people who are trying to get their Flex 1.5 apps working in Flex 2. Some of those apps worked with only a tiny tweak here and there and others will pretty much require a total rewrite. What I'm finding is that there is enough difference between what

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Spike
Strictly speaking the VMs care an awful lot about what they get, but you can use any tool you like to create a swf that conforms to what the VM requires. Creating an ActionScript compiler that generated java bytecode is certainly possible, but would have the same problems. You'd have to make sure

RE: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread zwetan
- you do not have a timeline in AS3+flex2 Just to avoid confusion AS3 still fully supports the timeline, and if you load clips with frames that were compiled in Authoring you can still use goto, stop and all other timeline methods, properties and events. It's Flex which avoids the

RE: [Flashcoders] Flash Profiler

2005-10-21 Thread Tom Lee
Same here. I recently did a pretty thorough search for a swf profiler... The best solution I could come up with was good ol' fashioned unit testing. If you know the common memory wasters in Flash and you've developed following object oriented design principles you should be able to narrow down

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Stan Vassilev
If you have 2 VMs supporting 2 different byte-codes (AS2 and AS3) then you really have 2 products and only the branding (Macromedia Flash) makes them similar. The renderer both VM use is still the same (there are no two renderers), also each VM has separate API but both share a lot of code

Re: [Flashcoders] Encoding On2 with cuepoints metadata

2005-10-21 Thread erixtekila
Maybe Flix takes the cuepoints of the source Quicktime movie (they call it tracks) ? For everyone record : No actual tool take Quicktime cuepoints to export them in the on2 flv stream. Cheers --- erixtekila http://blog.v-i-a.net/ ___

[Flashcoders] Re: FlashVars in AS3

2005-10-21 Thread John Giotta
package { import flash.util.trace; import flash.display.Sprite; import flash.display.SWFLoaderInfo; public class FlashVarsTest extends Sprite { public function FlashVarsTest () { var FlashVar_arguments:Object =

Re: [Flashcoders] FAME on OS X

2005-10-21 Thread Michael Bianco
I use Xcode with Actionscript plugin instead. Works much better for me, you can integrate building with MTASC and SWFMILL also. On 10/21/05, Alain Rousseau [EMAIL PROTECTED] wrote: Then you should check on http://potapenko.com/flashout/ to see if you have installed Flashout the right way.

Re : [Flashcoders] FAME on OS X

2005-10-21 Thread CARABUS mobile+
I got the same problem as you under osX.4 Le 21/10/05 17:37, « Sam » [EMAIL PROTECTED] a écrit : Any one have success setting up FAME on OS X? I have everything working except Flashout is having trouble with the classpath to Flash's classes ___

Re: [Flashcoders] FAME on OS X

2005-10-21 Thread Sam
Yeah, I gave up on Eclipse and started using Xcode. Do you have any links or reference or links to integrating MTASC and SWFMILL using Xcode? On Oct 21, 2005, at 5:01 PM, Michael Bianco wrote: I use Xcode with Actionscript plugin instead. Works much better for me, you can integrate building

[Flashcoders] Flex 2 file sizes: what should be expected in final release?

2005-10-21 Thread Tom Lee
Hi everyone, I'm trying Flex for the first time in the form of the Flex 2 alpha preview. So awesome. The file sizes are on the large side though. Over 200KB for a hello world app with a VDividedBox. I read that the output file sizes are larger than the final release will create. How does

[Flashcoders] OS Flash breeze presentation

2005-10-21 Thread Chad Mefferd
Anybody doing the OS Flash Breeze presentation right now? It sounds like Arabic being spoken into a tin can at a Charlie Brown teacher's convention. Anyone logged in w/ a membership that can address this to the moderators? It was fine until he adjusted the mic at someone's request. Chad

[Flashcoders] Ferienabwesenheit von Marcel Vogt

2005-10-21 Thread marcel
Liebe Geschäftspartner und liebe Freunde Zurzeit und bis zum 2. November bin ich nicht direkt erreichbar. In dringenden Fällen wenden Sie sich bitte an Bruno Vogt (079 205 68 68) oder versuchen mich unter 079 22 22 655 zu kontaktieren. Ich werde mich unmittelbar nach meiner Rückkehr melden.

[Flashcoders] Not getting my own posts

2005-10-21 Thread Eric E. Dolecki
Even though the list is set to send me my own posts, I am not getting them... e.dolecki ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Ferienabwesenheit von Marcel Vogt

2005-10-21 Thread marcel
Liebe Geschäftspartner und liebe Freunde Zurzeit und bis zum 2. November bin ich nicht direkt erreichbar. In dringenden Fällen wenden Sie sich bitte an Bruno Vogt (079 205 68 68) oder versuchen mich unter 079 22 22 655 zu kontaktieren. Ich werde mich unmittelbar nach meiner Rückkehr melden.

[Flashcoders] testing 1 2 3

2005-10-21 Thread Eric E. Dolecki
will I see my own post? e.d. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] FAME on OS X

2005-10-21 Thread Michael Bianco
I wrote up some stuff on my blog: http://developer.mabwebdesign.com/blog/?p=6 I have alot of additions to make Actionscript integrated more tightly with Xcode. I have a updated Flash 8 keyword definition file with value placeholders like obj-c almost ready to release, and a OS Flash Help viewer

Re: [Flashcoders] Not getting my own posts

2005-10-21 Thread Josh Gormley
GMail users do not (by default, at least) receive emails from themselves. You may be able to configure this, but I'm not sure (I don't use GMail). Josh On Oct 21, 2005, at 5:01 PM, Eric E. Dolecki wrote: Even though the list is set to send me my own posts, I am not getting them...

Re: [Flashcoders] Not getting my own posts

2005-10-21 Thread Spike
Really? I've been trying for months to find out how to stop GMail from showing me doubles of every message I send to a list. *goes off to look at GMail settings again* Spike On 10/21/05, Josh Gormley [EMAIL PROTECTED] wrote: GMail users do not (by default, at least) receive emails from

Re: [Flashcoders] got an app development question, about Model

2005-10-21 Thread JesterXL
ModelLocator.my_result = MyRemoting_result; - Original Message - From: Rich Rodecker [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, October 21, 2005 8:11 PM Subject: [Flashcoders] got an app development question, about Model Got a

RE: [Flashcoders] Undefined and null in Flex2

2005-10-21 Thread Robert Edgar
Thanks spike for taking the time to reply but... Calling it legacy seems to contradict the current AS3 docs.. For example I think it is getStyle that is documented to return undefined if the style property doesn't not exist, it then goes on to say that the undefined it returns is NOT the

Re: [Flashcoders] Undefined and null in Flex2

2005-10-21 Thread Spike
You're welcome, The reason I posted that particular item is that AFAIK Gordon is one of the engineers who actually writes the code for the player. If there's a disagreement between him and the documentation, my money's on him every time. Having said that, this stuff is all likely to change and

RE: [Flashcoders] Undefined and null in Flex2

2005-10-21 Thread Robert Edgar
Mike, Thanks... I should have checked the FAQ..RTFM Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Chambers Sent: Friday, October 21, 2005 4:45 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Undefined and null in Flex2 What is