[Flashcoders] [WORK-AROUND] ScrollPane malfunction in IE but not Firefox

2006-12-16 Thread Dennis Landi
As reported previously, IE (but never Firefox) will incorrectly begin firing its onComplete event handler before it has fully loaded and initialized its internal "spContentHolder" movieclip. If I hit F5 to reload the SWF from the browsers cache the scrollpane will load correctly (from the cache).

Re: [Flashcoders] AS3 with Flash Authoring 9

2006-12-16 Thread greg h
Daniel, AS3 requires Flash Player 9. Is that dependency ok for your application? As of the latest FP penetration stats (Sept '06), FP9 is only at around 36% (of the known universe). Some have reported successfully deploying on external facing sites with the express install very easily upgradin

[Flashcoders] using flash mxp components in Flex2

2006-12-16 Thread Gregory N
Hi all, Does someone have any experience using flash components (mxp, downloaded from Adobe Exchange) in Flex 2? Or is there any (other) way to utilize them? I have a strong feeling that there's no problem ( as all goes as SWF), but just curious... -- Best regards, GregoryN ===

[Flashcoders] mouseup outside the browser?

2006-12-16 Thread Alan Watts
hi all, Is there a way to detect a mouseup outside the browser window in AS3? Or are mouse events trapped to the stage? thanks! Alan ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.

[Flashcoders] Microsoft Expression ...

2006-12-16 Thread Stephen Ford
Anyone tried any of the Expression apps yet, specifically Blend and Web ?Any thoughts ? I guess the Expression suite will be competing with the Apollo platform once it's released.Yes / No.___ Flashcoders@chattyfig.figleaf.com To change your subscriptio

Re: [Flashcoders] Actionscript 3 Books

2006-12-16 Thread Michael Tuminello
actionscript cookbook is out. moock's as3 book is partially available as pdf through safari rough cuts. MT On Dec 15, 2006, at 4:44 PM, slangeberg wrote: They probably are more concerned with your knowledge of 'compiling AS3'. If you know AS2, then you're good to go! I figured out AS3 when

RE: [Flashcoders] Outlook and Flash

2006-12-16 Thread Byron Binkley
Jason - Depending on your constraints for the runtime / player of the application you could use Proto to host the Flash files as sort of an integration and scaffolding layer, then use VBA to integrate w/ office apps. Here's two links if you want to check that out: 1. Proto flash integration: http

[Flashcoders] AS3 with Flash Authoring 9

2006-12-16 Thread ITSCO
Hello, I am getting ready to launch officially a major project of e-learning programs with a lot of interactive graphics and animation. I have already started the project with AS 2 code. I am wondering whether it would be a good idea and worthwhile direction to migrate now into AS 3, u

[Flashcoders] FLVPlayback question...

2006-12-16 Thread Alon Zouaretz
hey, I had the same problem and manage to get around it with adding a 0.1sdelay to the function that load the video, so its not being called once the component [or the movieclip that holds it] is attached but once its already on the stage. hth a On 12/15/06, Josh Santangelo <[EMAIL PROTECTED]>

RE: [Flashcoders] 2D arrays

2006-12-16 Thread Ruslan Shestopal
Hi there! var arr = new Array(); arr[1] =[] <--- ad this. arr[1][1] = "whatsup"; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dc Sent: Saturday, December 16, 2006 12:04 PM To: Flashcoders mailing list Subject: [Flashcoders] 2D a

[Flashcoders] Mid level Flasher needed.

2006-12-16 Thread Kurt Dommermuth
Hi all, I just posted a job on Craigslist Maryland. You can get an idea of what I'm looking for there: http://baltimore.craigslist.org/art/249738732.html. I have some pretty damn cool gigs (some boring too I guess) that I need help on. I've got more work than I can handle and my family is

Re: [Flashcoders] 2D arrays

2006-12-16 Thread Ian Thomas
David, Flash handles arrays such as a[x][x] as arrays of arrays. So what you'd be setting up is something that looks like this: var a:Array=[ [1,2,3],[4,5,6]]; which you could create as above, or to adjust the code to look more like yours: var a:Array=new Array(); a[0]=new Array();

[Flashcoders] 2D arrays

2006-12-16 Thread dc
hi list - i thought that flash supported 2d arrays of the [x][y] syntax persuasion. can someone give me some pointers what I'm doing wrong? maybe you cant create arrays this way, you can only access them? function artest() { var arr = new Array(); arr[1][1] = "whatsup"; a

RE: [Flashcoders] to apply the property to the all the dynamic textboxes in my file.

2006-12-16 Thread Arindam Dhar
good code man, efficient usage of "instanceof " operator... Jason Lutes <[EMAIL PROTECTED]> wrote: Not super efficient, but definitely readable and functionally comprehensive: // Assigns common property values to all dynamic text fields within a specified timeline. function setCommonTextFieldP