Feb
11
2009
Can`t really get my head around this, I`ve used a code snippet from an Adobe RSS reader example to sort the namespace of an RSS feed:
if (rssXML.namespace("") != undefined)
{
default xml namespace = rssXML.namespace("");
}
Then tried to load an image using a URL from it with a listener for load completion:
var ldr:Loader = new Loader()
var url:String = item.enclosure.@url;
var urlReq:URLRequest = new URLRequest(url);
ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete)
ldr.load(urlReq);
contentHolder.addChild(ldr);>
public function onLoadComplete(event:Event):void
{
trace(event)
}
But this kept on throwing me an annoying error:
ReferenceError: Error #1069: Property namespace not found on flash.events.Event and there is no default value.
Only solution was commenting out the namespace bit. It might work with a different namespace declaration, but not with this, so beware
978 views | 2 comments | tags: #1069, actionscript 3.0, as3, Error, event, Flash and Flash Lite, namespace, rss | posted in Flash and Flash Lite
Dec
11
2007
If you ever want to use a custom mouse cursor in AS3 (for say dragging) with rollover/rollout events toggling it (so it will only change the cursor for certain movie-clips), bear this in mind:
When the user moves the mouse to the right with a certain (slowish) speed, the (original) hidden mouse cursor will go over the custom cursor, so it will fire the rollout event. Then when Flash updates the custom cursor position, the original mouse cursor won`t be over the custom one anymore, so it fires the rollout event, thus the cursor blinks quite noticeably. And no, the event.updateAfterEvent() won`t help either.
The workaround for this is to add the MouseEvent.MOUSE_MOVE listener to the stage and watch the event.target in the handler function and toggle the custom cursor using that, so you can specify that Flash shouldn`t do the toggling (= keep the custom cursor on) when the mouse goes over it.
So it isn`t necessarily a Flash Player bug, because this behavior makes sense (the mouse updates much more frequently than the .swf), but well annoying to figure out anyway.
2,135 views | 8 comments | tags: actionscript 3.0, as3, cursor, custom, Flash and Flash Lite, mouse | posted in Flash and Flash Lite