I have had a fully functional flash remoting page with Flash MX 2004.
I recently upgraded to Flash 8 (behind the times I know)
When I modified the Flash slightly the page stopped working.
Flash 8 could not locate my NetServices.as file or NetDebug file when I test
my movie.
The error message I get is as follows:
include file NetServices.as: File not found.
#include "NetServices.as"
include file NetDebug.as: File not found.
#include "NetDebug.as"
Following the advice else where in these forums I have changed the
#include "NetServices.as"
to
import mx.remoting.*;
and
#include "NetDebug.as"
to
import mx.remoting.debug.*;
however both generate a syntax error when I try to test the movie.
Any suggestions would be appreciated.
samagination79 - 03 Apr 2007 02:53 GMT
If you're getting a syntax error trying to use import, check out the publish settings in your movie and make sure the actionscript is set to 2.0 and not 1.0 (under the flash tab)
chill pill - 04 Apr 2007 17:38 GMT
Call me a dummy :embarrassment; that was exactly the issue and I'd been looking
for something more complicated :embarrassment;.
However I am now having some problems converting what had been a fully
functional action script file called DataGlue.as into a compatible format.
Any suggestions where I can go to find advice about converting across?