ActionScript 3.0 :: 1180: Call To A Possibly Undefined Method
Jun 18, 2010
This should be simple, but i can't get it.
A) on the timeline of my .fla file i have:
var pt:MovieClip = new RoadObstacle();
addChild(pt);
//
stop()
B) In my library I have an MC with a linkage of RoadObstacle.
C) I have an AS file called: RoadObstacle.as
It works as long as the .as file is right next to the .fla file. I move the .as into folder path com.screenscape.game - I update both the .as package path and the path for the library symbol in the .fla - then run it and i get:
1180: Call to a possibly undefined method RoadObstacle.
I'm following the Advanced After Effects for Flash tutorial, but run into some errors. I've pasted the Caurina map into the same folder as where my .fla is located. Description:1046: Type was not found or was not a compile-time constant: Over.1180: Call to a possibly undefined method Over.
My script Code: Select allimport caurina.transitions.*; btnTV.addEventListener(MouseEvent.ROLL_OVER, btnTV_ROLLOVER);
I'm trying to get a jpg image from the fatcloud swf - am getting the following error 1180: Call to a possibly undefined method createJPG.
Actionscript Code: public function createJPG (m:MovieClip, q:Number, fileName:String){ var jpgSource:BitmapData = new BitmapData (m.width, m.height); jpgSource.draw(m); var jpgEncoder:JPGEncoder = new JPGEncoder(q); var jpgStream:ByteArray = jpgEncoder.encode(jpgSource); [Code] .....
So im trying to gain access to flash vars but i kept getting this error: Line 27 1180: Call to a possibly undefined method LoaderInfo.
I have tried putting the below code in and outside of my class but it seems from what i have gathered that it thinks 'LoaderInfo' is another function which it is not.
I'm trying to add an event listener to the end of a motion tween in AS.
I've created a tween, highlighted the frames, right clicked and copied the tween as AS and pasted it into the movie clip (I think there's a better way to do this, but I'm not sure what it is...)
When I try to add the listener to the end of that code, I get the error. Here's my code.
I get this error message a lot and I normally know how to resolve them. However, not this one! I call a function from within a class function (and the called function is within the class .as file.) My question is: does Actionscript allow you to call a function within a function cuz it sure appears not!My code: looks like this
ActionScript Code: package asdata{ //<import list suppressed >
I have witten one .as file and try to user in my .fla file detail given bellow.
StaticTest.as class StaticTest { static var massage:String="Static Veriable";
[code]....
Note:- priviousely it was showing me three Arror which is given bellow but after adding the "StaticTest.as" file in my publish setting ActionScript version settings added .as file in classpath it is not showing me the error but also not showing the value.
1046: Type was not found or was not a compile-time constant: StaticTest. 1180: Call to a possibly undefined method StaticTest. 1120: Access of undefined property StaticTest.
I have produced a game in AS3 which has a an IM style chat function, i have all the classes set out and the code for the chat in the time time, when i run the program i get the error "1180: Call to a possibly undefined method addFrameScript."
im followin a tut on how to smake this simple game with classes but iv hardly used classes...but seems like this is the only error im getting 1180: Call to a possibly undefined Method StartGame
I have a menu, and the menu has a few movie clips acting as my buttons. When I click on the button I want to bring what ever area of the site that button is linked to, to the front of the others that are on the stage.I have my movie clips that are my sections to the website all on their own layers. Do they need to be on the same layer to be able to index their childIndex?This is the code I have, but I can't seem to get it working.
i have tried to create a sakura petal falling using flash AS3 along with flash my codes always get error message "1180: Call to a possibly undefined method Sakura1." line 16, could anyone tell me why is that happen?
I am trying to script an external text loader in CS4 and am getting the same error message every time. I have loaded an external font into my library and renamed it font2. the error is on Frame 1, Line 2 var myFont= newfont2Here is the script
var myFont= new font2 () myTextField_txt.embedFonts=true; myTextField_txt.antiAliasType=AnitAliasType.ADVANCED;
var class:Class = getDefinitionByName("Box") as Class; var box:MovieClip = new class()
*Box is a class that exists inside my library (A movieclip that is exported for actionscript) I have this code in two places: My document class and some other random class. It works in the document class. It fails to work in the other class (I get the error in the title) Both classes extend MovieClip (if that makes any difference) So what's going on here? Do you know the problem with what I'm doing?