RE: [Flashcoders] Flashdevelop + Flex SDK - runtime error

2008-08-06 Thread Merrill, Jason
You get runtime errors showing in the Flash Debug player if you have it installed. Do you have it installed? if not, go to Adobe and get the Flash player 9 debug version. You should see runtime errors then. Jason Merrill Bank of America Enterprise Technology & Global Risk L&LD Instructional

Re: [Flashcoders] Flashdevelop + Flex SDK - runtime error

2008-08-06 Thread Leandro Ferreira
That's really great, thanks, but I still can't find a way to debug runtime errors. Any ideas? Leandro Ferreira On Wed, Aug 6, 2008 at 10:04 PM, Merrill, Jason < [EMAIL PROTECTED]> wrote: > Good article, I had no idea FlashDevelop had a Check Syntax On Save > feature - good to know! It's som

RE: [Flashcoders] Flashdevelop + Flex SDK - runtime error

2008-08-06 Thread Merrill, Jason
Good article, I had no idea FlashDevelop had a Check Syntax On Save feature - good to know! It's something I had always wished it, uh, had. Jason Merrill Bank of America Enterprise Technology & Global Risk L&LD Instructional Technology & Media Join the Bank of America Flash Platform Developer

Re: [Flashcoders] Flash Player 10 not workin on FD 3

2008-08-06 Thread Omar Fouad
Ok folks, After some trials I realized that the thing works only if dispatched by a MouseEvent as in public function Main():void { var S:Sprite = new Sprite(); S.graphics.beginFill(0xFFff33, 1); S.graphics.drawRect(20, 20, 100, 150); S.graphics.endFill(); addChild(S); S.addEventListener(MouseEvent.

Re: [Flashcoders] Flashdevelop + Flex SDK - runtime error

2008-08-06 Thread Steven Sacks
http://www.stevensacks.net/2008/04/30/flashdevelop-flexbuilder-style-error-reporting-on-save/ Leandro Ferreira wrote: How do you guys debug your movies using FlashDevelop + Flex SDK? Leandro Ferreira ___ Flashcoders mailing list Flashcoders@chatty

Re: [Flashcoders] Loading and playing one SWF inside of another - stopping after first few frames

2008-08-06 Thread Glen Pike
Hi, If you load someothermovie.swf in the browser, does it still stop? Do you have scripts in someothermovie.swf that may cause problems? (if you are relying on _root etc. in your loaded movie, this might cause problems). I had a problem with a loaded movie timeline being a bit str

Re: [Flashcoders] Playing one SWF inside another when the inner swf has an audio layer with sync=Stream

2008-08-06 Thread matt stuehler
Cedric, Ian, Again, many thanks for your time, and looking into this for me. It looks like this did this trick... The audio file in the inner SWF was and .mp3, and had been imported into the library. I checked the export settings in the properties, and it "Compression" setting was "Default." S

Re: [Flashcoders] How to achieve blob magnification effect?

2008-08-06 Thread Zeh Fernando
Exactly. Just draw the graphics and use a displacement map filter to do it. Trying to do it all manually and with scale will be a huge pain and the distribution won't be the safe as a surface that changes in scale like the displacement map would do. The only trick is creating the grayscale dis

Re: [Flashcoders] How to achieve blob magnification effect?

2008-08-06 Thread sebastian
you could just use a bitmap distortion effect and draw the bars and numbers on the bitmap to make it easier on the code - though the quality of the numbers/bars may degrade as it distorts it. if you go for that solution, it would be very fast to code, just have the X position of the distortion

Re: [Flashcoders] Playing one SWF inside another when the inner swf has an audio layer with sync=Stream

2008-08-06 Thread Cedric Muller
Yep right :S and what if you put a 'stop' audio event (with the sound you want to stream) in a keyframe *previous* to the 'sync=Start' event ? In essence, if your sequence (timeline + audio sync) start at frame 3, you could put a keyframe at frame 2 with event 'stop' and the sound you want.

Re: [Flashcoders] Playing one SWF inside another when the inner swf has an audio layer with sync=Stream

2008-08-06 Thread Ian Thomas
Sounds a little bit like the inner movie hasn't fully loaded, but I'm not clear on why that would be. Is this across a network, or locally in your browser? Are both onLoadInit and onLoadComplete fired on the MovieClipLoader as expected? Are getBytesLoaded() and getBytesTotal() equal (and do the

Re: [Flashcoders] Playing one SWF inside another when the inner swf has an audio layer with sync=Stream

2008-08-06 Thread matt stuehler
Cedric, Many thanks for the suggestion. However, the audio track for the inner SWF is a voiceover, that must be in sync with the movie. It seems like "sync=Start" means that the audio starts playing, and continues regardless of which frame is showing in the timeline. With "Sync=Stream", the audi

Re: [Flashcoders] Playing one SWF inside another when the inner swf has an audio layer with sync=Stream

2008-08-06 Thread Cedric Muller
what if you set the audio track event to 'start' instead of 'stream' ? Cedric All, More information on a question I posted earlier... I'm trying to load a SWF and play it inside another SWF. Both SWFs are targeted to use Flash Player 8, and AS 2.0 So, in the parent, I've got code that looks

[Flashcoders] Playing one SWF inside another when the inner swf has an audio layer with sync=Stream

2008-08-06 Thread matt stuehler
All, More information on a question I posted earlier... I'm trying to load a SWF and play it inside another SWF. Both SWFs are targeted to use Flash Player 8, and AS 2.0 So, in the parent, I've got code that looks like this: var movie_mc:MovieClip = this.createEmptyMovieClip("movie_mc", this.

[Flashcoders] Loading and playing one SWF inside of another - stopping after first few frames

2008-08-06 Thread matt stuehler
All, I'm trying to load a SWF and play it inside another SWF. Both SWFs are targeted to use Flash Player 8, and AS 2.0 So, in the parent, I've got code that looks like this: var movie_mc:MovieClip = this.createEmptyMovieClip("movie_mc", this.getNextHighestDepth()); var mcLoader:MovieClipLoad

Re: [Flashcoders] How to achieve blob magnification effect?

2008-08-06 Thread eric e. dolecki
I believe you can just use a spherical displacement map. Here is a fun displacement map you can check out: http://labs.zeh.com.br/blog/?p=128 Regards, Eric On Wed, Aug 6, 2008 at 12:39 PM, Ali Drongo <[EMAIL PROTECTED]>wrote: > Hi there, I want to achieve the effect of seamless magnification a b

[Flashcoders] Flashdevelop + Flex SDK - runtime error

2008-08-06 Thread Leandro Ferreira
How do you guys debug your movies using FlashDevelop + Flex SDK? Leandro Ferreira ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] How to achieve blob magnification effect?

2008-08-06 Thread Ali Drongo
Hi there, I want to achieve the effect of seamless magnification a bit like the Mac OS dock but rather than having individual icons magnified I want to have a seamless magnification kind of like a blob as in this image: http://dl.getdropbox.com/u/65140/Picture1.png I think I could achieve

Re: [Flashcoders] Flash Player 10 not workin on FD 3

2008-08-06 Thread Omar Fouad
Yes I did everything Brimelow explained. In the project external Library of FD3 I put the Path of the swc file inside the sdk/../player/10/ directory. I have the same issue. This is frustrating me! On Wed, Aug 6, 2008 at 4:20 PM, Romuald Quantin <[EMAIL PROTECTED] > wrote: > Did you set everythi

RE: [Flashcoders] Flash Player 10 not workin on FD 3

2008-08-06 Thread Romuald Quantin
Did you set everything needed? Lee Brimelow has done a video, maybe it will help checking everything? http://www.gotoandlearn.com/player.php?id=73 Romu www.soundstep.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Omar Fouad Sent: 06 August 2008 13

Re: [Flashcoders] Flash Player 10 not workin on FD 3

2008-08-06 Thread jonathan howe
Did you at one point have the code inside Main draw without the rotationX change? If so, definitely sounds like the swc is not being recompiled each time, and that runtime is using the original definition of Main inside the swc. I didn't entirely understand what you meant when you said "pointing th

[Flashcoders] Flash Player 10 not workin on FD 3

2008-08-06 Thread Omar Fouad
Hi all, I've download the flex 3.0.1 sdk and uninstalled flashplayer 9 and installed the last version of flashplayer 10. I also downloaded and installed FD 2297 revision. Now when I create a new project in FD, set the flex sdk in both application settings and project settings beside pointing the p

Re: [Flashcoders] list working?

2008-08-06 Thread allandt bik-elliott (thefieldcomic.com)
just seen this On Wed, Aug 6, 2008 at 11:42 AM, Romuald Quantin < [EMAIL PROTECTED]> wrote: > Is that list working? > > > > I've posted an email hours ago, I still don't see it. And I don't receive > anymore emails from it? > > > > If a nice guy could send me a confirmation to romu >

Re: [Flashcoders] list working?

2008-08-06 Thread Ian Thomas
What list? Flashcoders? If so, yes, it's working. Ian On Wed, Aug 6, 2008 at 11:42 AM, Romuald Quantin <[EMAIL PROTECTED]> wrote: > Is that list working? > > > > I've posted an email hours ago, I still don't see it. And I don't receive > anymore emails from it? > > _

[Flashcoders] list working?

2008-08-06 Thread Romuald Quantin
Is that list working? I've posted an email hours ago, I still don't see it. And I don't receive anymore emails from it? If a nice guy could send me a confirmation to romu [EMAIL PROTECTED], it could be great. Romu www.soundstep.com

Re: [Flashcoders] Re: Running Projector from a DVD -What about Zinc 2.5

2008-08-06 Thread Ian Thomas
If you just want to install your app from the DVD to the user's hard drive, you could just use an installer program instead of a Flash wrapper like Zinc. If you're on Windows, try NSIS: http://nsis.sourceforge.net/Main_Page If you're on a Mac, the normal method is to allow users to drag a folder