Re: [Flashcoders] Rectangle doesnt have scaleX/Y?

2008-05-28 Thread Viktor Hesselbom
Hi Matt, It's quite obvious that Rectangle doesn't have scaleX and scaleY. Why would you need it for the Rectangle class anyway? What use for it could you possible have? / Viktor H On Wed, 28 May 2008 16:43:04 +0200, Matt S. [EMAIL PROTECTED] wrote: So I tried to the do the following: var

Re: [Flashcoders] Firefox popup blocker and flash 9

2008-05-29 Thread Viktor Hesselbom
Hi Dan, Firefox blocks popups that aren't user-generated. Firefox's blocker only opens popups that tries to open on a onRelease event. So not automatic not onPress. Only onRelease / Viktor H On Fri, 30 May 2008 00:09:42 +0200, Dan Wade [EMAIL PROTECTED] wrote: Turning on popup blocker

Re: [Flashcoders] expanding pages with flash and javascript

2008-06-02 Thread Viktor Hesselbom
Well, I worked out some basics but it only seems to work when I export to Flash Player 6 (using Opera, might be different in other browsers). Anyway, here it is. The idea is to have a div called 'flashcontent' and changing it's height through the div's style property using javascript.

Re: [Flashcoders] expanding pages with flash and javascript

2008-06-02 Thread Viktor Hesselbom
Flash movie... Viktor Hesselbom wrote: Well, I worked out some basics but it only seems to work when I export to Flash Player 6 (using Opera, might be different in other browsers). Anyway, here it is. The idea is to have a div called 'flashcontent' and changing it's height through the div's

Re: [Flashcoders] Sound Spectrum having a HUGE bug

2008-06-03 Thread Viktor Hesselbom
Yep, that's a bug. And Adobe has been informed about it already. / Viktor H On Tue, 03 Jun 2008 12:28:37 +0200, Martin Klasson [EMAIL PROTECTED] wrote: Hello Flashcoders, To see the problem with the Spectrum, just open up firefox and have two tabs with the following links:

Re: [Flashcoders] AS3 - A simple questions

2008-06-05 Thread Viktor Hesselbom
I use event.target in the current application I'm developing. It's nice in MouseEvents for determing what is currently under the mouse and not what dispatches the event. On Thu, 05 Jun 2008 14:17:43 +0200, EECOLOR [EMAIL PROTECTED] wrote: I would recommend using event.currentTarget instead

Re: [Flashcoders] flex 3 Event.RESIZE

2008-06-05 Thread Viktor Hesselbom
Is that your actual code? Because if it is, I think I see the problem. You can't just write a reference to the constants. You have to actually use them to set the stage's align, quality etc. public function PbMain() : void { stage.align = StageAlign.TOP_LEFT; stage.quality =

Re: [Flashcoders] Creating a list from actionscript cue points in Flash video

2008-06-05 Thread Viktor Hesselbom
Congratulations on fixing it. ;) / Viktor H On Thu, 05 Jun 2008 18:08:46 +0200, Paul Jinks [EMAIL PROTECTED] wrote: Fixed it. I think all I had to do was set mainText.multiline = true; Cheers Paul On Thu, June 5, 2008 3:05 pm, Paul Jinks wrote: Aaaargh! There's a typo in my code

Re: [Flashcoders] AS3: How can I target an object from adot-sytax string?

2008-06-12 Thread Viktor Hesselbom
One dirty way would be like this: var sTarget:String = first.second.third.fourth; var aTarget:Array = sTarget.split(.); var mcTarget = this[ aTarget[0] ]; for (var i:int = 1; i aTarget.length; i += 1) { mcTarget = mcTarget[ aTarget[i] ]; } trace( mcTarget ); / Viktor H On Thu, 12 Jun

Re: [Flashcoders] Real Time Lip Sync

2008-06-13 Thread Viktor Hesselbom
Imagine it would be possible with ActionScript3's computeSpectrum? On Fri, 13 Jun 2008 02:03:34 +0200, Elia Morling [EMAIL PROTECTED] wrote: Okay, purely hypothetical. The sound file is approx 30-60 seconds long. How long would it take to pre-analyze that in Flash for a volumetric

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

2008-06-16 Thread Viktor Hesselbom
And everytime he replies back with his auto-replyer he gets a new message back to him and in continues in an evil loop. That's my guess, anyway. / Viktor H On Mon, 16 Jun 2008 10:48:56 +0200, Geografiek [EMAIL PROTECTED] wrote: I'm afraid so, it seems to be multipying even ;-) Willem

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

2008-06-16 Thread Viktor Hesselbom
Most likely it's because he has some sort of auto-responder and everytime he responds to this mail, he gets his responded email back to him (since maillists send to all registers) and the auto-responder responds again and it continues in a loop. / Viktor H On Mon, 16 Jun 2008 13:54:24

Re: [Flashcoders] Requesting Permission to Shoot Edelstar, Cap'n

2008-06-16 Thread Viktor Hesselbom
Permission granted! I'm no captain but I think that if he doesn't agree we'll start a mutiny! On Mon, 16 Jun 2008 15:24:45 +0200, Matt S. [EMAIL PROTECTED] wrote: Cuz he's filling my inbox with QUESTION MARKS!!! ___ Flashcoders mailing list

[Flashcoders] Exclude classes

2008-06-17 Thread Viktor Hesselbom
Hi, Does anyone know if there's a way to exclude certain built-in classes? E.g. if I'm not going to be using the BlurFilter class is there anyway for it not to be compiled with the .swf-file? I'm using Flash CS3+AS3 and the reason for this is that I want to keep the filesize as low as