I am getting odd compiler errors in my .fla. I'm not using any Webservices,
RemoteObject classes, or HTTPServices at all. I don't know why the compiler
would complain:
1046: Type was not found or was not a compile-time constant: WebService.
1046: Type was not found or was not a compile-time constant: RemoteObject.
1046: Type was not found or was not a compile-time constant: HTTPService.
Only the description shows and it doesn't say where the error originates from.
I have not used any of these objects in the history of this .fla. The .fla is
a simple animation on the root timeline of some movie clips. I have deleted ASO
files but still no luck. The document class looks like this:
package com.venice.view.network.atom
{
import flash.display.MovieClip;
import flash.events.MouseEvent;
/**
* ...
* @author Jason Merrill
*/
public class AtomMenu extends MovieClip
{
public var viewProfileButton:MovieClip;
public var viewNetworkButton:MovieClip;
public var peekNetworkButton:MovieClip;
public function AtomMenu()
{
stop();
createListeners();
}
private function createListeners():void
{
viewProfileButton.addEventListener(MouseEvent.MOUSE_DOWN,
onViewProfileMouseDown);
viewNetworkButton.addEventListener(MouseEvent.MOUSE_DOWN,
onViewNetworkMouseDown);
peekNetworkButton.addEventListener(MouseEvent.MOUSE_DOWN, onPeekMouseDown);
}
private function onViewProfileMouseDown(event:MouseEvent):void
{
gotoAndPlay("transitionOut");
}
private function onViewNetworkMouseDown(event:MouseEvent):void
{
gotoAndPlay("transitionOut");
}
private function onPeekMouseDown(event:MouseEvent):void
{
gotoAndPlay("transitionOut");
}
}
}
??? Any ideas?
Jason Merrill
Bank of America
Enterprise Technology & Global Risk L&LD
Instructional Technology & Media
Join the Bank of America Flash Platform Developer Community
<blocked::http://sharepoint.bankofamerica.com/sites/tlc/flash/default.aspx>
Are you a Bank of America associate interested in innovative learning ideas and
technologies?
Check out our internal Innovative Learning Blog
<blocked::http://sharepoint.bankofamerica.com/sites/ddc/rd/blog/default.aspx>
& subscribe
<blocked::http://sharepoint.bankofamerica.com/sites/ddc/rd/blog/_layouts/SubNew.aspx?List=\{41BD3FC9-BB07-4763-B3AB-A6C7C99C5B8D\}&Source=http://sharepoint.bankofamerica.com/sites/ddc/rd/blog/Lists/Posts/Archive.aspx>
.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders