In a website I’m making for a client in AS3 the client has supplied a few AS2 components (video store, video gallery, image gallery, news, etc) which he wants including in the site.
The video gallery loads and runs perfectly without changing it.
The video store took me 4 days to integrate but i got it working.
Now for the problems:
1) The image gallery loads thumbnails okay. The result of clicking a thumbnails is different if run in Flash or on my server: In Flash clicking thumbs does not load a large image: Debugging shows it executes code correctly all the way up to calling MovieclipLoader.loadClip(), with correct parameters, but none of the MovieClipLoader onLoadXxxx callbacks are ever invoked. I tried implementing them all: onLoadInit(), onLoadProgress, onLoadStart(), onLoadComplete() and onLoadError() .. but none are ever called.
On my server the result is similar, but it will always load exactly one large image before failing.
2) The news scroller simply does not appear to receive mouse events – no onRollOver / onRollOut … no onRelease.
Anyone ever experience (and hopefully solve) either of these issues in their AS3 application loading AS2 swfs?
It does not appear to be anything in the AS3 website code that is causing the problem; I made a bare AS3 loader application that does nothing but load the AS2 modules and they fail just the same in that.



