ActionScript 3.0 :: Get Error 1013 The Private Attribute May Be Used Only On Class Property Definitions
Jan 6, 2011
I keep getting this error in my class file main.as this is a translator application. I was able to get the animations working at one point but now I am stuck with this error and I don't understand it.
main.as:
package
{
import flash.display.Sprite;
import flash.events.KeyboardEvent;
import flash.net.URLLoader;
[code].....
View 1 Replies
Similar Posts:
Apr 7, 2011
This error is just making me wanna commit where have i gone wrong? Help would be awesomepackage classes
[Code]...
View 5 Replies
Apr 5, 2012
Here's my code:
[URL]
The errors are one line 123 and 128.I've googled the error, but I still can't fix it, it's got me baffled for an hour now! I've tried adding curly brace's but still same error. I left line 123 and 128 like this
function _update(e:Event):void
{
_helicopter.update(_mouseDown);
}
function onEnterFrame(e:Event):void
{'
But I'm getting an error stating that _update is not defined
View 2 Replies
Jan 11, 2012
I keep getting this error :1150 The protected attribute can only be used on class property definitions.
panel1.addEventListener(MouseEvent.CLICK, onClickPanel);
panel2.addEventListener(MouseEvent.CLICK, onClickPanel);
panel3.addEventListener(MouseEvent.CLICK, onClickPanel);
panel4.addEventListener(MouseEvent.CLICK, onClickPanel);
panel5.addEventListener(MouseEvent.CLICK, onClickPanel);
[Code]...
View 4 Replies
May 8, 2010
I'm customizing a floating panel that I found on gotoAndLearn.
View 2 Replies
Feb 7, 2012
I've been trying out a platform game and am focusing on the shooting aspect of it from a tutorial through youtube, the person doing the tutorial never explains the errors they fix between videos. I received an Error 1013 and I just can't figure it out, even looking at other codes.Line 29 is the issue.
ActionScript Code:[code]..........
View 6 Replies
Sep 7, 2011
In Actionscript 2 I find that I cannot have a "private function set" without returning the error "A member attribute was used incorrectly." If I change it to "public function set" I'm fine but that defeats the goal of trying to protect the function from setting externally
View 2 Replies
May 22, 2010
I'm setting up functions in a document class file, then from there I am going to call that function from a movieclip in flash. For some reason, maybe I have things set up wrong, but it is throwing me errors such as below: Line 37 1013: The private attribute may be used only on class property definitions. What am I doing wrong here and is there something I am not understanding? Here is my .as code. modal.as > package
[Code]...
View 1 Replies
Jul 27, 2009
Using the code below I get an error message 1013: The private attribute may be used only on class property definitions.
View 4 Replies
Nov 26, 2006
Okay so you've got your private vars in your AS2 Class, you think they're all safe right? Wrong.
Doing a trace(MyClass.myvar); will spit out an error that the var is private and you can't touch it.
But a trace(MyClass["myvar"]); will work perfectly fine. You can use it normal, without any setters getters outside the class.
Is there a way to protect against this? I think this is a huge security flaw. I know it's simple OOP, but a private var in an object should have rules.
View 7 Replies
Mar 28, 2011
one thing i've never really understood about AS3 is that you can't have a private set method and a public get method together. from within my class i would like to assign values that would call a private set function:
[Code]...
is there no way to use the set keyword on a private function?
View 4 Replies
Feb 25, 2005
In my project I've defined a Point class to build Point objects. I also built a Polygon class with a (private) array property, Points. The polygon class contains a method getPoints() which return the current Points array. My objective is to built one or more Polygon objects and assign several Point objects to the Polygon's Points array. Let's say I've created two Polygon objects, plgPolygon01 and plgPolygon02. To both objects I insert three new Point objects into the Points array.
As I call the plgPolygon01.getPoints() method, i expect to get an array with three values. But when I do this, I get an array with six values. So I conclude: while I was inserting Point objects into the Points array of a Polygon object, this Points array seems to be public instead of private. Otherwise, I'd only get the Points I assigned to the first Polygon object and not all the Points assigned to polygons.
View 3 Replies
Dec 6, 2009
I'm accessing the classes from an externally loaded SWF so that I can "skin" SWF applications at runtime. Everything works fine but I'd like to make it as dynamic as possible and allow developers to access all the class definitions in a loaded SWF without having the FLA file or a list of their names.
[Code]....
View 9 Replies
Apr 29, 2007
This seems like it would be really easy but for some reason it's not working.
I have a class file, class DataSet, which right now only takes an XML file, parses it, and pushes the XML into an array:
The object is instantiated and an XML file is passed back to the object definition. If the XML file is successfully loaded, the class should then called the function parseXML() and put the data into the array.
But for some reason, parseXML() is never called. I have no idea why this isn't working, because the syntax checks out and I've seen millions of other files where functions call other functions.
Here's the class file:
[Code]....
View 5 Replies
Jun 2, 2009
I wrote two projects using the same 3D library but I modified it pretty heavily in one (to the extent that the inheritance is pretty different on one) - now I need to load one into the other and I'm getting some weird errors that look like the child swf is trying to use the same class definitions as the parent even though it should be in an entirely different namespace.
So - anyone have a tricky way of forcing the loaded swf to use the classes it's compiled with rather than the ones already defined in the parent swf (and vice versa) or do I need to refactor all my stuff?
View 2 Replies
Aug 26, 2011
So I know you can assign a base class to a library definition within the Movieclips library information field but If I have 30 items in the library and I change the Base class this becomes a pain in the ass, can this be done programmatically when I instantiate the library definition?
var new_shiz:MyItem1 = new MyItem1(); // Needs to have a generic base class of MyItem
View 2 Replies
May 14, 2007
I have an as3 component I made in CS3 and need to access the Component Definitions. Defining component parameters using the Inspectable Tag metod does not return success.
View 1 Replies
Mar 30, 2011
I have a flash file that passes some variables to a php script and creates a zip file of a group of jpg files. When I had all of the code in one php file everything worked fine. Now I wanted to separate out the script into two files. One php file that gets the variables and a class that would actually do the work of creating the file. However I am getting this error when I run it.
<br />
<b>Notice</b>: Undefined property: ZipTestClass::$FileName.zip in <b>F:Web Page mcwphoto43TestZipArrayipTestClass.php</b> on line <b>15</b><br />[code]...............
View 3 Replies
Oct 23, 2009
I'm attempting to compile a Flex application from an ANT script, inside of Eclipse (CFBuilder, based on Eclipse), and I've run into this error:
Could not load definitions from resource flexTasks.tasks. It could not be found.
I haven't been able to find anything that gives directions on where this file (flexTasks.tasks) should be copied to, if it's needed at all. Some places indicate that it should be part of the flexTasks.jar file. I've tried two different things:
Copy the jar file into the ant/plugins/lib folder (and restart my CF Builder instance)Specify the path to the jar in the classpath attribute, as suggested by the comment on this page Neither helps me get past this error.Here's my build script, for reference:
<project name="Tagging" default="compile-tagging" basedir=".">
<!-- setup flex compilation capability -->
<taskdef resource="flexTasks.tasks" />
<property name="flex.src" value="./src" />
[code]....
View 5 Replies
Jul 15, 2011
Working in a very large Flash application, previously in AS2/CS3 I would have a setup like the following:
root.swf-- modules---- code_a.swf---- code_b.swf-- views---- view_a.swf---- view_b.swfUsing _exclude.xml files, I could exclude the classes defined in code_a and code_b from the ouptut .swf of view_a and view_b. root.swf would be responsible for loading the code modules before view_a or view_b, ensuring that class definitions that view_a and view_b depended on existed.
The Problem:We've recently migrated to using Actionscript 3/CS5. *_exclude.xml files no longer exist. To get the same functionality as above, I've tried the following: My setup now looks something like:
root.swf-- modules---- class_a.as---- class_b.as-- views---- view_a.swf---- view_b.swfUse mxmlc to compile root.swf, view_a.swf and view_b.swf, passing it -externs option to specify classes that will be loaded externally (the two classes in modules).
This ensures that the class is excluded from the compiled swf.Use compc to compile class_a.as and class_b.as into classes.swf, using -directory=true to access library.swf for external loading.However,when I try running one of the two view files which depend on classes.swf, I get runtime errors telling me that a class definition is not present.
Current Workaround
I've devised a workaround which I'm currently not happy with as it's backwards to the modular approach that I was previously using:Rather than loading the code modules, I statically link all class definitions required by child movies intoroot.swf. When building root.swf, I use the -link-report option of mxmlc to provide a list of included classes. When building child swfs, I can the use -load-externs to ensure that class definitions that already exist will not be included in the compile output.
Is there a way that anyone is aware of to replicate the AS2/_exclude.xml solution that I had using AS3/CS5?
View 1 Replies
Jun 28, 2010
Ive been working on a project at the momment and ive been having an issue with accessing a MovieClip that has been created in another file called fileA and i want to access it from fileB the only Problem is that FileB Doesnt know it exists in FileA and it returns back this error
Code:
Error #1009: Cannot access a property or method of a null object reference.
Code below is in fileA
Code:
public var ChangeControlMc:MovieClip = new control();//This one is defined in FileA
My Code for FileB is as Follows
Code:
public var ChangeControlM:AntarcticaGame // this is Defined in fileB
trace("test level 1");
trace("called after super save()" + ChangeControlM);
[code]....
View 1 Replies
Oct 8, 2009
I'm having some trouble implementing a "virtual" camera for use in game development with Flash CS4 ActionScript 3.0.Basically, what I'm trying to accomplish is to have a camera that moves about the main stage so that my character can traverse the level which is much larger in size than the stage itself.I've been using Sham Bhangal's virtual camera script, and when I implemented it by sticking the code into the first frame of a movie clip, it worked great!
From there, I moved the code into a document class that i could instantiate and then drop onto the stage as a child.Finally, I wanted to have a main "builder" document class that would be added to the main stage as a child, and within THIS class I wanted an instance of the virtual camera. This is where I hit some obstacles.how to properly instantiate the virtual camera within the builder class which is then added to the main stage. I have a Stage reference that is being passed to the main builder, but I don't know where to go from here. To what do I add the virtual camera to as a child? To the Stage reference in the main builder class? To the main builder class itself?The main issue is that when I export my movie with the virtual camera added as a child to the Stage reference within the main builder class, it complains that I'm not allowed to access certain values.
Code: Error: Error #2071: The Stage class does not implement this property or method.
at Error$/throwError()
at flash.display::Stage/set x()
This happens when I try to access parent.x from within the virtual camera class. I assume this fails because "parent" from this perspective is the main builder class, but using the Stage reference produces this same error.I am, of course, willing to provide more detail if something I've written is confusing, and I will gladly provide a detailed fix for those seeking to use a similar solution in the future.
View 6 Replies
Jun 2, 2010
So I've been trying to move the stage's X and Y position and keep on getting this error:
Code:
Error: Error #2071: The Stage class does not implement this property or method.
at Error$/throwError()
at flash.display::Stage/set y()
at Main/scroll()
I am using a document class, here it is:
Code:
package
{
import flash.display.MovieClip;
import flash.events.Event;
import flash.events.MouseEvent;
[code]....
As for why I'm trying to move the stage, I have a movieclip which moves according to keyboard input and i want the stage/Background to always center on him.
View 6 Replies
Sep 28, 2009
I cannot get my buttons to work. Here is my new document class. http:[url].....And here are the errors I got for each mention of b1_mc, which is just a movie clip on the stage.
1120: Access of undefined property b1_mc
Since I have import flash.display.MovieClip; at the top of my class, why do I keep getting this error?
View 1 Replies
Sep 24, 2010
have an RSS feed, within Flex I have connected to the feed via HTTPService, the XML structure is as follows (not exact, but for the purpose of the question). I am able to walk down the xml and access the data within the title and link nodes with success but when I get the the description node and try to access the img and src attributes within it, I haven't had any success. Reading about parsing with e4x the example I get is:
var xList:XMLList = xData.channel.item.description.(attribute("src"));
or
var xList:XMLList = xData.channel.item.description.(@src);
[code]......
View 1 Replies
Aug 11, 2010
here is a snippet of my code in an as file
ActionScript Code:
class PoolBall extends MovieClip {
private var poolBall:MovieClip;
[code].....
View 4 Replies
Oct 31, 2008
i try to migrate from as2 to as3 and i have one problem When i attachMovie from library (addChild in as3) and i add custom property its work fine.Here is ex.
Code:
var i:int;
for (i=0; i<5; i++)[code]....
when i attach to that symbol custom class in the library.i got the error: #1056:Cannot create property...
View 6 Replies
Oct 13, 2009
i have created a Vehicle.as file and a Car.as file which are in the same project. The problem i am having is trying to use the properties in my Car.as from my Vehicle.as file.Vehicle.as
Code:
package
{
[code]......
View 14 Replies
Jun 4, 2011
I've heard it's considered best practice to keep all class properties private and to change them using getter and setter methods.
View 5 Replies
Jun 11, 2010
I try to serialize objects with their private attributes, in Flex.
The introspection API does not seem to allow it:
"The describeType() method returns only public members. The method does not return private members of the caller's superclass or any other class where the caller is not an instance."
Is there another way for an instance to know the name of its private members?
View 1 Replies