[Flashcoders] downgrading code from FlashPlayer v8 to v6

2006-04-19 Thread Luca Candela
Hi folks, do you know If there is a list of thing to check when you downgrades from v8 to v6? Is there any valid reason to do it, or is it better to convince the client to use v8? Give me some argument in favor of the upgrade, please! -- When everyone is against you, it means that you are

[Flashcoders] What's wrong with my events?

2006-03-29 Thread Luca Candela
Hi all, I've a movie setup like this main.fla var control:MoveMe = new MoveMe(this, 10, 10); var oViewListener:Object = new Object(); myMenu.addEventListener(mex, oViewListener); oViewListener.mex = function(oEvent:Object):Void { trace(oEvent.evsource); trace(oEvent.msgtxt); }; and a

[Flashcoders] sliding panels menu anyone?

2006-03-21 Thread Luca Candela
Anyone knows where to find a brief tutorial or some idea on how to replicate the sliding panel menu in this website? http://www.deejay.it/default.jsp?s=home ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Classpath?

2006-02-24 Thread Luca Candela
Can someone explain to me how exactly the claspath works in flash? I'm confused, because when I add the directories to the option dialog of Flash, the compiler seem to ignore where those classes are. What am I doing wrong? ___

[Flashcoders] André Michelle classes documentat ion?

2006-02-24 Thread Luca Candela
Hi people, anyone knows if there's any kind of documentation about the classes of the game package from the André Michelle site? -- MATTEO 25:11 Più tardi arrivarono anche le altre vergini e incominciarono a dire: Signore, signore, aprici! ___

[Flashcoders] Again on the ropes

2006-02-24 Thread Luca Candela
Hi folks, I have my cables up and running now, but I still have some problems: I'm using the Andre Michelle classes (this guy is an amazing programmer, by the way) but I haven't found a convenient way to make connections only between ports specified by me. How can I do it? Do I have to modify the

[Flashcoders] Robust Drawing Classes?

2006-02-22 Thread Luca Candela
Hi, does anyone knows if there are nice a well built drawing classes (for free) to use in Flash 8? The drawing api in flash is a pain the ass, too much work to do anything... I would be happy with boxes, cirlces, n-gons... the more, the better! -- MATTEO 25:11 Più tardi arrivarono anche le altre

Re: [Flashcoders] Robust Drawing Classes?

2006-02-22 Thread Luca Candela
On 2/22/06, Janis Radins [EMAIL PROTECTED] wrote: I'm pretty close to make it to version 1.0 of my drawing classes atm, untill that happens you can contact me offlist if youre interested in earlyer versions I can't say no to a proposal like this! Seriously, I would be more than happy to

Re: [Flashcoders] Robust Drawing Classes?

2006-02-22 Thread Luca Candela
sorry, this was intended as a pm... I hit the wrong button! On 2/22/06, Luca Candela [EMAIL PROTECTED] wrote: On 2/22/06, Janis Radins [EMAIL PROTECTED] wrote: I'm pretty close to make it to version 1.0 of my drawing classes atm, untill that happens you can contact me offlist if youre

[Flashcoders] Simulating a rope

2006-02-20 Thread Luca Candela
Hi to all, how do I simulate a rope in ActionScript? I've seen something like that somewhere, but I'm not able to figure out what it was. Anyone knows about it? -- MATTEO 25:11 Più tardi arrivarono anche le altre vergini e incominciarono a dire: Signore, signore, aprici!

[Flashcoders] Issues while accessing a variable in a movieclip from external class

2006-02-16 Thread Luca Candela
I'm writing a little application to run a course, and the engine creates the navigation menu putting labels in the button etc... So, as far as I change things like a dynamic text that's on the stage with something like mybutton.itemText.text =

[Flashcoders] dispatching events at creation time?

2006-02-16 Thread Luca Candela
-- class tryOut { public var addEventListener:Function; public var removeEventListener:Function; private var dispatchEvent:Function; function tryOut() { mx.events.EventDispatcher.initialize(this); trace(I am Here 1);

Re: [Flashcoders] dispatching events at creation time?

2006-02-16 Thread Luca Candela
I resolved this issue with a callback to a function defined outside the class that sends the Event. anyone can tell me anything about my other problem of the day? On 2/16/06, John Giotta [EMAIL PROTECTED] wrote: You can dispatch a Event at creation time, but no listener can listen to this