RE: [Flashcoders] Keep getting Error #1009: Cannot access a property

2010-02-02 Thread Mattheis, Erik (MIN - WSW)
It means you're trying to manipulate an object represented by a variable with a null value. For instance, var mc:MovieClip; mc.x = 9; will generate that error as you've just defined that mc will be a movieclip and its initial value is null. var mc:MovieClip = new MovieClip(); mc.x = 9; Will

[Flashcoders] RE: Drop shadow behavior

2010-02-02 Thread Mattheis, Erik (MIN - WSW)
. PRWeek Global Agency Report Card 2009 - Gold Medal Winner The Holmes Report Global Agency of the Year PR News Agency of the Year -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mattheis, Erik (MIN - WSW

[Flashcoders] Drop shadow behavior

2010-02-01 Thread Mattheis, Erik (MIN - WSW)
I have a sprite with two children, a bitmap and a dynamic mask. I apply two filters two it - a BevelFilter when it's added_to_stage, and a DropShadowFilter later. When I add the drop shadowfilter, it only displays in what would be the rectangular hit area unless a) I don't add the bevel filter

[Flashcoders] Capturing TextEvent from image in textfield

2009-11-10 Thread Mattheis, Erik (MIN - WSW)
How do I send an event from a click on an image in a textfield? Clicking on the actual text fires the event, but it doesn't fire when clicking on an image from the library placed inline: pageText.displayValue.htmlText = 'pa href=event:a1bimg src=plus /Our world-class scientists/b/a/p';

RE: [Flashcoders] Capturing TextEvent from image in textfield

2009-11-10 Thread Mattheis, Erik (MIN - WSW)
in textfield http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html#event:link On Nov 10, 2009, at 7:47 PM, Mattheis, Erik (MIN - WSW) wrote: How do I send an event from a click on an image in a textfield? Clicking on the actual text fires the event, but it doesn't

[Flashcoders] is this the getURL bug?

2009-02-24 Thread Mattheis, Erik (MIN - WSW)
Suddenly a few weeks ago, getURL actions in several dozen swfs began to fail consistently when served from a particular server. The SWFs will work when viewed outside of HTML as well locally or on any other server. The content-length of the SWF is correct on the problematic server. Adding a

RE: [Flashcoders] is this the getURL bug?

2009-02-24 Thread Mattheis, Erik (MIN - WSW)
List Subject: Re: [Flashcoders] is this the getURL bug? Think I fixed it by using a URLRequest rather than getURL - AS3 though... I do remember this being a problem in IE before that. (Apologies if you are still on AS2). The other way maybe to try _self instead of _blank??? Mattheis, Erik (MIN

RE: [Flashcoders] is this the getURL bug?

2009-02-24 Thread Mattheis, Erik (MIN - WSW)
Sent: Tuesday, February 24, 2009 2:57 PM To: Flash Coders List Subject: Re: [Flashcoders] is this the getURL bug? Don't know if this helps, but it sounds like it might be similar to your problem?? http://www.sitepoint.com/forums/showthread.php?t=157581 Mattheis, Erik (MIN - WSW) wrote: Yes

RE: [Flashcoders] is this the getURL bug?

2009-02-24 Thread Mattheis, Erik (MIN - WSW)
An example: Illustration of getURL not working without a _blank parameter when served from a problematic server, but fine on another: http://weber10.ws-wr.com/em/swftest/test_badServer.html http://weber10.ws-wr.com/em/swftest/test_thisServer.html Also illustrated IE (6 and 7) leaving a window

RE: [Flashcoders] is this the getURL bug?

2009-02-24 Thread Mattheis, Erik (MIN - WSW)
/4a8 f27962bab6a0e Mattheis, Erik (MIN - WSW) wrote: Yes, that sounds similar although these movies had been working as expected for years and they still work everywhere except when served by one particular server. Unfortunately, the server they're stored on. It also is similar to this: http

RE: [Flashcoders] Advanced Rollover Physics/Math...

2009-02-12 Thread Mattheis, Erik (MIN - WSW)
Thinking of the position of imaginary vertical and horizontal lines between the elements may be a better approach. -- Erik Mattheis Senior Interactive Developer Weber Shandwick Digital Minneapolis ph: 952 346 6610 cell: 612 377 2272 -Original Message- From:

[Flashcoders] FLV runtime error

2008-01-02 Thread Mattheis, Erik (MIN - WSW)
I'm getting this error from FLVPlayback 3.0 - triggered by mouse over and outs when skinAutoHide is set to true: TypeError: Error #1009: Cannot access a property or method of a null object reference. at fl.video::UIManager/http://www.adobe.com/2007/flash/flvplayback/internal

RE: [Flashcoders] FLV runtime error

2008-01-02 Thread Mattheis, Erik (MIN - WSW)
swf - loadMovieNum('/flash/NavOne5000-9.swf',0); Erik J Mattheis Sr. Web Programmer Weber Shandwick Minneapolis, MN T: (952) 346 6610 | M: (612) 377 2272 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mattheis, Erik (MIN - WSW) Sent: Wednesday

<    1   2