RE: [Flashcoders] Flash 8 OSX - Classpath woes

2007-05-07 Thread Nimrod Huberman
On pc, the X conflicts with the name of another class X appears when you declare and use variable of type A in class B and a variable of type B in class A. (To solve it you have add import A; before class B and import B; before class A, then to click check syntax button 2 or 3 time until the

Re: [Flashcoders] Re: getting XML response body when HTTP status is not 200

2007-05-07 Thread R�kos Attila
VK Another thought: AS3 seems to have a generic Socket class. Is there VK anything like this in AS2? Not as generic as in AS3, but there is XMLSocket class in AS2, which handles not only XML formatted data, but any textual content terminated by a zero byte. Thus it is not suitable for directly

Re: [Flashcoders] Re: getting XML response body when HTTP status is not 200

2007-05-07 Thread R�kos Attila
I see 3 possible solutions for your problem: 1. change the webservice to return status 200 on errors, too, and use something else for indicating errors instead of the HTTP status code 2. if the above one is not possible, then create a proxy which forwards your requests to the

[Flashcoders] Survey about web applications

2007-05-07 Thread Weyert de Boer
Just a little non-scientific survey about web applications. Please, be so kind a fill in this survery when you find the time. You can find the survey at: http://tinyurl.com/29ydgj Thanks! Weyert ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] getting XML response body when HTTP status is not 200

2007-05-07 Thread Matthias Dittgen
Where do you actually get your XML? I noticed some time ago, that it makes a difference, if I use the onLoad in my listener object and then use the XML object itself. Instead you could use onData(src:String) whenever you have a response of type 400 and parse your XML manually in this case. See

Re: [Flashcoders] Survey about web applications

2007-05-07 Thread Mark Winterhalder
On 5/7/07, Weyert de Boer [EMAIL PROTECTED] wrote: Just a little non-scientific survey about web applications. Please, be so kind a fill in this survery when you find the time. I think question #1 should be more specific -- is /watching/ videos on YouTube using it, or would I have to upload

[Flashcoders] specific filter

2007-05-07 Thread Prince Zain
Hi, Is there any filter that can change only the specific color in the given movieclip. Any help is greatly appreciated. Thax regards, Xian. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Flash 8 OSX - Classpath woes

2007-05-07 Thread Steven Sacks
The problem was that the class was conflicting with itself, not another class. X conflicts with the name of the same class as itself X. Don't know what it was or how it was possible. Clearing the ASO on both machines fixed it. Nimrod Huberman wrote: On pc, the X conflicts with the name of

[Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread Steven Sacks
Spiderman 3: So bad, I have to post OT on Flashcoders to warn my colleagues to avoid it at all costs. Never see Spiderman 3. Ever. Go your whole life without seeing it. It might be the worst movie ever made. Seriously. It was unbelievable how bad it was. Of the people who did not walk

[Flashcoders] Reference problem

2007-05-07 Thread Johan Nyberg
Hi, I have put my main code for the fla in a class that I call Main. The class loads fine, but I can't get a reference to it! It's undefined. This is the code on the first layer of the fla: var main:Object = new Main(); ..and this is the class' code: import mx.utils.Delegate; import

Re: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread james
Completely disagree. The packed out cinema I watched it in laughed, hissed (at an appropriate moment) and gave a round of applause at the end. It's different, not bad. Spiderman 3: So bad, I have to post OT on Flashcoders to warn my colleagues to avoid it at all costs. Never see

Re: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread Pieter Michels
I couldn't agree more. On 5/7/07, Steven Sacks [EMAIL PROTECTED] wrote: Spiderman 3: So bad, I have to post OT on Flashcoders to warn my colleagues to avoid it at all costs. Never see Spiderman 3. Ever. Go your whole life without seeing it. It might be the worst movie ever made. Seriously.

Re: [Flashcoders] flv playback from DVD

2007-05-07 Thread nik crosina
Hi Rich, Going a bit off topic, but have you ever had a kind of hick up every time an flv starts playback. I am having my Zinc created exe start with playing a intro video clip and it always starts with a little stutter or hick up. I guess this is some loading issue, but don't know what to do

Re: [Flashcoders] Reference problem

2007-05-07 Thread Shaun O'Connor
How are you instantantiating it? I just went... import Main; var main:Main = new Main; Seems to load fine... As expected I do get a problem with the XMLParser as I dont have it... More info? Shaun. On 07/05/2007, at 7:58 PM, Johan Nyberg wrote: import mx.utils.Delegate; import

Re: [Flashcoders] getting XML response body when HTTP status is not 200

2007-05-07 Thread David Holroyd
On Sat, Apr 28, 2007 at 10:41:02AM -0700, Vishal Kapur wrote: I am loading an XML response from a web service using XML.load(). The web service is defined such that when a request is made with parameters that are not in the bounds of the application, it will return an XML response with an

Re: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread hank williams
Before we get flamed for being OT, I just want to get this in. I think the movie was excellent, and I am, to put it mildly, an incredibly picky movie eater. But specifically. Two things stand out. 1. The evil spiderman is one of the funniest characters I have seen in a long time. e.g. To silly

RE: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread Parvaiz Patel
Nice story action line up together. I like Spiderman:3 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Monday, May 07, 2007 2:38 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] OT: Spiderman 3 === Worst movie ever

[Flashcoders] Question on removeEventListener and Delegate callback

2007-05-07 Thread Jiri Heitlager | dadata.org
I was wondering if I am doing something correctly when adding listeners to objects. My question is, if I remove the listener is the code below then the right way. Do I use the Proxy class (or mx.utils.Delegate) also when I remove the listener?? //adding a listener

Re: [Flashcoders] Question on removeEventListener and Delegate callback

2007-05-07 Thread R�kos Attila
I don't know what does your utils.Proxy.create() method do exactly, but mx.utils.Delegate.create() always returns a new Function instance, thus it cannot be used directly in removeEventListener() calls. Store the function reference passed to addEventListener and use it in removeEventListener(),

Re: [Flashcoders] Question on removeEventListener and Delegate callback

2007-05-07 Thread eka
Hello :) use a variable to register your virtual proxy function : var listener = utils.Proxy.create(this , onBlockContentDestoyed , 'text ' , url) ; this.currentDisplayObject.addEventListener('onContentCleared' , listener ) ; //removing it

RE: [Flashcoders] specific filter

2007-05-07 Thread Robert Hadsell
The Color Transform class that became available in Flash 8 might be a good approach for changing at least some components of a move clip (changing color and/or alpha property). -- Bob Hadsell From: Prince Zain [EMAIL PROTECTED] Reply-To: flashcoders@chattyfig.figleaf.com To:

[Flashcoders] flv playback, event not firing

2007-05-07 Thread nik crosina
Hi, I am having a big problem with an event not firing unless the video is encoded with flix pro (of which i only have the demo) the code is below and i can't seem to find anything wrong with it, or is there? should i use the 'FLVPlayback' component? What woudl teh code be in that case?

[Flashcoders] OT -- job opening

2007-05-07 Thread LMSpam
Intertech Media in Stamford, CT is looking for intermediate level Flash programmers. Fluency in AS2 and Flash 8 is required. Familiarity w/ AS3 and Flex Builder is a huge plus. We are looking for someone who can work on site in Stamford. If you'd like to send a resume, or have questions,

Re: [Flashcoders] Question on removeEventListener and Delegatecallback

2007-05-07 Thread eka
Hello :) VEGAS is full open.. with a MPL licence you can do commercial project with VEGAS, no problemo :) The AS3 version of VEGAS is in alpha version for the moment.. i have implements a VEGAS implementation in AS3 but i think do a big refactoring this summer over the AS3 version :) For the

RE: [Flashcoders] Question on removeEventListener and Delegatecallback

2007-05-07 Thread Ken Rogers
Thanks for the info. I will keep you posted on my progress via google code so you can show commercial work being done with VEGAS. Also let me know when you would like the AS3 version tested out in any way :) Keep up the super() work, Ken -Original Message- From: [EMAIL PROTECTED] on

[Flashcoders] is the Flash9/CS3 delivered to anyone yet?

2007-05-07 Thread dave matthews
hi all, Noticed Flash9/CS3 is offered as a separate download and/or upgrade($199) is on the Adobe site now. Has anyone purchased and received it yet, or is this just a preorder deal? thanks, Dave_Matthews _ Download Messenger.

[Flashcoders] 遊び足りない女性を 狙え!!

2007-05-07 Thread GW後
--- 綱子 23歳 東京 暇☆ヒマ☆ひっま〜〜 最近特に暇なんだな(T_T)彼氏欲しいな誰か立候補してください、 期待して待ってます。 http://pittarism.com/KT/ --- 紗良 23歳 東京 シャメ見たら興奮するよ。 前の彼氏にエッチなことを強要されて、 とってもエッチな女の子になってしましました、、。

Re: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread O. Fouad
Spiderman 3 Is just great. I kinda cried at the end :P. I also read that it had a great success all over the world. Than again u can't tell ppl not to watch the movie... :) On 5/7/07, Parvaiz Patel [EMAIL PROTECTED] wrote: Nice story action line up together. I like Spiderman:3

Re: [Flashcoders] Question on removeEventListener and Delegatecallback

2007-05-07 Thread eka
Hello :) i you want.. you can show the source code of my last opensource project AST'r : http://code.google.com/p/astr/ This project is a laboratory to implements application templates based on VEGAS :) This project can help you to use VEGAS in your commercial project ? :) EKA+ :) 2007/5/7,

[Flashcoders] ASO files, file times, and classes, oh my

2007-05-07 Thread Matt Samet
Hi, I have a project I'm working on that contains multiple class files. Every now and then someone is working on these files who is located in a different time zone. They check in their changes, I get them, and all hell breaks loose with Flash. It's always the same error: **Error**

RE: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread Merrill, Jason
Would you consider moving this to Flashlounge or some other list? Thank you. Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

RE: [Flashcoders] AST'r templates for Vegas

2007-05-07 Thread Ken Rogers
This is what I am using for my templates, thanks again. -Original Message- From: [EMAIL PROTECTED] on behalf of eka Sent: Mon 5/7/2007 10:54 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Question on removeEventListener and Delegatecallback Hello :) i you want..

[Flashcoders] Q: Flashdevelop vs Eclipse vs Flexbuilder for AS3 development

2007-05-07 Thread moveup
Is there any consensus on the BEST overall tool for AS3 development/ Is there a feature comparison chart somehwere? I'm hesitant to fork out the bucks for Flexbuilder and I am comfortable with Flashdevelop, but I'd like to really get into things like Papervision 3D(AS3) and perhaps even the

Re: [Flashcoders] flv playback from DVD

2007-05-07 Thread Lists
Nik, I think this is on topic. I have not personally had this happen to me, and I have created many, many such apps because of the client-specified need to show the FBI warning at the immediate start of the app. Without looking at your app code, to see if there¹s anything obvious (and I doubt

Re: [Flashcoders] ASO files, file times, and classes, oh my

2007-05-07 Thread Stephen Downs
I've seen this before, but can't clearly understand the root cause. Most likely it is the cross-referencing bytecode compile bug that plagues Flash 8. Deleting ASO files does not work in many cases. I solve it by using my devilishly simple Compile class, as pointed out in the recent Flash

[Flashcoders] Class structure

2007-05-07 Thread Helmut Granda
I'm trying to figure out the best approach for my class structure. I have form valildation class that checks for different items (about 20 items), then I needed some items of the same class for a smaller form (only 4 items). I could extend the first class and use it with my smaller form but there

[Flashcoders] Flash keeps dropping one of my CSS classes

2007-05-07 Thread Marc Hoffman
I am using an internally-defined stylesheet in Flash with three styles and about five classes per style. This was working fine until recently when Flash stopped reading one of the classes and started applying the default class. It has nothing to do with the xml I'm feeding to the textfield,

RE: [Flashcoders] Class structure

2007-05-07 Thread Pete Miller
Sounds like the second class should be the base class. Extend the larger from the smaller. P. -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Monday, May 07, 2007 4:10 PM To: Flashcoders mailing list Subject:

Re: [Flashcoders] is the Flash9/CS3 delivered to anyone yet?

2007-05-07 Thread Helmut Granda
CS3 has been in the wild for couple weeks now. On 5/7/07, dave matthews [EMAIL PROTECTED] wrote: hi all, Noticed Flash9/CS3 is offered as a separate download and/or upgrade($199) is on the Adobe site now. Has anyone purchased and received it yet, or is this just a preorder deal? thanks,

RE: [Flashcoders] is the Flash9/CS3 delivered to anyone yet?

2007-05-07 Thread Hairy Dog Digital
Can't speak for the unbundled version, but the CS3 version bundled with the CS3 Suites is out and shipping. I received my Web Premium bundle just over a week ago. ...Rob -Original Message- From: dave matthews [mailto:[EMAIL PROTECTED] Sent: Monday, May 07, 2007 1:15 PM To:

Re: [Flashcoders] Class structure

2007-05-07 Thread Helmut Granda
That makes sense and was one of my ideas but lets say a few months from now I need 2 methods from class A and 2 methods from class B to make class C. Then I cant go back and restructure all my code to compensate for the update. So I was wondering if in these cases its best to separate each method

[Flashcoders] Dynamic buttons not showing

2007-05-07 Thread John Trentini
I dyamically create a number of 'labels' for my menu but, using the same procedure, I don't seem to able to generate the buttons. The trace outputs the correct property for the buttons: name, x and y but all I get is one button placed at 0, 0 even though I set its coordinates to match the

Re: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread Weyert de Boer
The special effects were quite nice. Something things could be better, but that is with most things. Some nice post production glitches in it ;) I think I even spotted some grain issues but for that I would have to rewatch it. Mr. Wannabe SFX guy ;) Weyert

[Flashcoders] Re: flv playback, event not firing

2007-05-07 Thread jason vancleave
I have noticed this on consistently on the the mac player v9 or higher as described here: http://www.kennybunch.com/blogarchives/62 i usually try the flv metadata injector first to make sure its not just corrupt metadata: http://www.buraks.com/flvmdi/

Re: [Flashcoders] Q: Flashdevelop vs Eclipse vs Flexbuilder for AS3 development

2007-05-07 Thread Glen Pike
Your brain is the best tool for AS3 Development. Stop posting best editor stuff. It gets boring after the first 3 times - RTFA. [EMAIL PROTECTED] wrote: Is there any consensus on the BEST overall tool for AS3 development/ Is there a feature comparison chart somehwere? I'm hesitant to fork

[Flashcoders] pause an onEnterFrame?

2007-05-07 Thread Count Schemula
Is there anyway to pause an onEnterFrame event? Right now I delete the onEnterFrame when an onRollOver event occurs, and reinitialize it when an onRollOut event occurs, but that causes all of my motion variables to get re-initiated, and thus makes the motion go through a huge jump. Is there a

Re: [Flashcoders] pause an onEnterFrame?

2007-05-07 Thread 阿本
flashcoders,你好 you can set like this: var flag=0; onEnterFrame=function() { if(flag==1) { } else if(flag!=1) { } } I think this can do you want things! [EMAIL PROTECTED] 2007-05-08 - Original Message - From: Count Schemula To: flashcoders list Sent:

Re: [Flashcoders] pause an onEnterFrame?

2007-05-07 Thread Snepo - Arse
or just onEnterFrame = function() { if(paused) return; } On 08/05/2007, at 3:15 PM, 阿本 wrote: flashcoders,你好 you can set like this: var flag=0; onEnterFrame=function() { if(flag==1) { } else if(flag!=1) { } } I think this can do you want