ActionScript 3.0 :: Possible To Declare Two Classes In One File?
Oct 30, 2010
Can I declare 2 classes in the one AS3 file? I tried this without success
package {
public class ClassTest {
private var a:classTest2;
public function ClassTest() {
a=new ClassTest2();
[Code] ......
View 1 Replies
Similar Posts:
Nov 21, 2009
i am trying to tidy my code, but all my classes need to have sections in the root for their respective onload events. i would much rather they were in the classes for code neatness
View 1 Replies
Nov 21, 2009
How do i declare onload events in classes in as2?
i am trying to tidy my code, but all my classes need to have sections in the root for their respective onload events. i would much rather they were in the classes for code neatness
View 1 Replies
Jul 17, 2004
Can you declare multiple classes and then register each movieclip from the library to a different class? It isnt working for me.
I created two different classes and created two entire different movieClips and registered each movie clips to a different class.
However, I can only use on movieClip at a time, when I use the duplicateMovieClip... command to create copies of the movieclip, i find that only those movieclips, whose class i declared first, appear on stage.
View 1 Replies
May 6, 2011
I have an actionscript project which uses visual symbols from an SWC. I have a CheckoutButton which has the following class associated with it (compiled into the SWC in Flash CS3).
[Code]...
View 1 Replies
Oct 10, 2011
I created a dynamic TextField on stage as instance name is "tf". I have converted this TextField as a class, the name is "MyText" in their linkage options panel. And i have also create New as file in the same folder name is "MyText". So how to declare the TextField instance name in as file.
View 2 Replies
Mar 8, 2007
I am starting to learn coding the class... I tried to declare a movieclip variable in a class file. But it shows an error.[code]
View 3 Replies
Mar 5, 2010
I am trying to do is declare a variable in PHP and pass that variable to my flash file. Right now i am simply trying to do 1 easy variable, more will happen in the future but i need to figure this out first.I have used other forums and they say try this and that, but nothing i do seems to work. here is my code.
PHP Code:[code].....
View 8 Replies
Jul 7, 2009
I tried to import a class in a .as file and I had strange behaviors that I cannot explain. First of, I tried to get work a senocular class by importing it locally his script in the same directory of my main .as class.
package{
import flash.display.*;
import flash.net.*;
import flash.events.*;
import duplicateDisplayObject;
There was no error returned from the compiler saying not found but there was one telling my class is still undefined as when I try to make the class work. (possibly undefined method). So I did it with the old fashion I found in some demos, placing the .as file in a com/senocular/display/ folder:
package {
import flash.display.*;
import flash.net.*;
import flash.events.*;
import com.senocular.display.duplicateDisplayObject;
And then no errors. The compiler recognize the class and execute it.
View 5 Replies
Apr 19, 2011
I produce advertising banners with Flash CS4. I often have to comply to a max weight of 40K. Sometimes I use functionnalities that make Flash export actionscript classes to a frame in the swf which makes it exceed the 40k limit. Is there a way to make flash export those classes to a separate file instead of in a frame?
View 3 Replies
Mar 13, 2010
I'm using Flash Builder 4 (the version after Flex Builder 3, so very similar to Flex Builder 3) and have a bunch of actionscript classes that I frequently need to reference. I have them in a separate folder/package to keep things clean.
I know that it's possible to create a SWC from these actionscript files. My question is how do I do it in Flash Builder 4 or Flex Builder 3. Do I need other tools? My objective is just to use the SWC in the project and keep things clean instead of dragging around all these files.
View 2 Replies
Oct 18, 2010
I'm trying to compile AS files using the mxmlc but the particular class depends on other classes. My command is something like this: mxmlc -includes classA classB -source-path=. com.example.com.classC.
This gave me classC.swf but when I loaded it, it was still looking for classA.swf and classB.swf. Is there anyway I can have just one swf file?
View 1 Replies
May 4, 2011
Can I put two or more actionscript classes in one .as file like this:
[Code]...
It doesn't work in Flash Builder: "A file found in a source-path can not have more than one externally visible definition. classes:A;classes:B" If it possible, I'm going to ask next question. Can I place two or more packages with multiple classes in one .as file?
View 1 Replies
Dec 27, 2009
Is there a way I can load an xml-file in a separate as-file and use this for multiple classes? (Or, should I load the xml-file in every class I want to use it in)
for example i set up a basic xml structure
test.xml
Code:
<xml>
<first>use this data in the first class</first>
<second>use this data in the second class</second>
[Code].....
View 1 Replies
Dec 5, 2009
So, what exactly are the rules on several classes inside of one AS file?So far, the only way I have been able to do this is by putting the class outside of the package brackets with no namespace selected (which I believe means 'internal' by default, right?)[code]So, using this notation, I'm wondering if a few things are possible:
1. Putting several 'secret' classes in the same AS file?
2. Making these classes public via the "Main" class, the one that the AS file is actually made for?Both examples applied here. Are these the right ways to do this?:[code]
3. Since these classes are marked as internal, they should be available to classes which extend the Main class AND classes in the same package without any import statements, correct?
4. Does embedding classes like this affect performance in any way?
5. Will these embedded classes always be compiled even if they are never accessed or referenced, similar to Library items or other classes?
View 3 Replies
Dec 17, 2009
I have a flex application that loads swf files and displays them using the SWFLoader object.is there a way to provide different classes and functions for the swf application to use? [code]...
View 1 Replies
Oct 11, 2011
when I try to extract .fla and .as from .swf (from Sothink SWF Decompiler), the classes in the file .as are all numbers, like this:
aso#33082.onPress = function ()
{
or
[code]....
View 1 Replies
Nov 10, 2010
Basically I'm trying to make an air app which contains a variety of different pages - I was under the understanding that each page would have its own class file, with everything being instantiated for that page within the class file.
If that is the case, then how would I make the transition from class to class and also remove the previous class so it doesnt take up memory?
View 7 Replies
Feb 6, 2010
i have several custom classes which all contain Sprites.does the fact that each as file imports flash.display.Sprite increase file size?i would assume when compiling that flash is smart enough to just import each package once but i just want to make sure.an over simplified example (obviously in this example the over all effect is 0 but i am starting to have more and more custom classes so i want to know)say i have a simple class that extends sprite to include an index property.
public class NewSprite extends Sprite {
public var index:int
}
now if in my code i would like to have "Sprite"s and "NewSprite"s for my own benefit of keeping track of what needs an index but does it add to file size to import flash.graphics.Sprite twice or would i be better off just importing NewSprite.also if i add variables to a custom class but dont give them a value does it take up extra space - for instance if the above NewSprite had 99999 indices instead of 1 - i am assuming if each index has a value the NewSprite is much bigger, but if i leave each index null, does it still increase file size?
View 1 Replies
Feb 25, 2009
I'm working with an ActionScript Classes file for some MovieClip buttons to animate In and Out. Everything is working the way it should but I would like the button to stay indicated once clicked on and then animate out once a new button is selected. The way I set it up in the past isn't very efficient and the next project I'm working on is going to be a lot of buttons. Trying to learn something more efficient.
Here is the AS class code:
class ButtonClass extends MovieClip {
public function ButtonClass() {
this.onRollOver = this.Over;
this.onRollOut = this.Out;
} private function Over() {
this.gotoAndPlay("Over");
} private function Out() {
this.gotoAndPlay("Out");
}}
And then for the MC button in the FLA:
b1.btnMC.btnText.text = "PORTFOLIO";
b2.btnMC.btnText.text = "CONTACT";
View 1 Replies
May 18, 2011
I have a small framework that I would like to put out there. I would love to export these classes as a single file. I know there is a SWC format, but there is not much recent information on how to export build this and I have a feeling this format might be outdated.
View 1 Replies
Mar 3, 2010
for first time decided to start using Classes to add my code instead of adding it directly in Flash and I really thought I knew how to handle this since I have created some re-usable classes before where you target an object by passing parameter etc,I thought that if I had one function (method) in my class and I wanted to call it from my .fla file all I needed to do was to create an instance of the class and then call my method.[code]But this doesn't work I get a message that says that it is missing arguments.how to use my code directly on a class and what are the differences of doing this versus putting the code directly on my .fla file and if it's even a good practice to do this?
View 10 Replies
Dec 15, 2009
I'm trying to reorganize my code. I have a Paradox.as file, which is linked to a Paradox.fla file. When I referenced symbols placed on the timeline in my Paradox.as file, my animation code works. Then I decided to move the code lower down into the hierarchy. In my Paradox.as file, I create new instances of the Character class. The following is the folder hierarchy for the related files. * denotes a folder, and tab denotes its contents:
[Code].....
View 4 Replies
Jul 27, 2010
I have the following code on the main timeline. I have soundLoad_mc assigned to the SoundChgUrl class.soundLoad_mc.mp3URL = "climbing.mp3";soundLoad_mc.swfName = "journey.swf";The code below is from SoundChgUrl. The import to mp3URL works. The one to swfName does not - it throws "1119: Access of possibly undefined property swfName through a reference with static type classes:SoundChgUrl." This doesn't make sense to me.
package classes{ import flash.display.MovieClip; import flash.net.URLRequest; import flash.net.navigateToURL; import flash.events.Event; import flash.media.Sound; import
[code].....
View 2 Replies
Jul 31, 2011
i created a button on the stage and made it a movie clip and called it's instance name "play_btn" then i made a document class "main.as" and a second class "play button.as" what i want to do but can't figure out how is to access the instance name in the play button.as file like this...
[Code]...
View 9 Replies
Apr 15, 2010
I am currently coding a drag and drop style game where you drag a seed to a target and it plays an animation within the seed movieclip. I am using classes to import instances of the see onto the stage and the problem I am having is that the animation plays on top of everything on the stage in my .fla file. Is there a way to have the animation play under a layer on my main timeline? I've tried to find an answer to this problem but to no avail. I have attached my files
View 2 Replies
Jan 14, 2010
I'm building a 10 channel mixer/remixer in Flash. Users can select a "song" to load from an xml driven combo box at the top of the application. In the document class, there is a function that takes the selected item from the combo box and loads in an external swf, which just serves as a library for the 10 sounds of a particular song. I then have to extract each of these sounds by their class names ("Track1", "Track2", "Track3", etc...) and send them off to their respective "MixerChannel" objects. As you can see, the following code block in the "initHandler" is pretty long and redundant. Is there any other way/shortcuts I can use to reduce the code a bit?
[Code]....
View 4 Replies
Jul 29, 2011
I've got an object declared and instantiated in my Flex application's singular MXML file: public var CDN:CDNClass = new CDNClass; I would like to access this same CDN object (and its public methods and properties) in another class declared in a separate .as file as such:
[Code]...
But when I try to access the public method parsePlayList in the CDN object in a method in the class defined in the .as file, I get the following error: Access of undefined property CDN The reason I want to do this is to break up the logic of my application into multiple AS files and have minimal MXML files, probably only one.
View 2 Replies
Oct 29, 2009
i been trying to figure out a way to make sure my property values from my xml file are fitting sweetly into my classes.
using 'property is XClassType' pretty much tells me if its an array, boolean, number. But strings are a bit weird. Even though the property is declared public var some:String the below test doesn't trigger it being set to a String. Are Strings different than Boolean, Array, Number, etc.?
Code:
if (myTarget[i] is String) {
trace("prop is string");
myTarget[i]=String(mySource[i]);
}
View 4 Replies
Feb 15, 2008
Last few months I experienced lot pain of due to Flash Player 9 version 3 (I thought that 9 is version no.).
Last thing is new socket policy files and all the new security "improvements". We finally forced sockets to works, to:[URL]..
[Code]...
How I can wrap socket class and avoid <policy-file-request/>?
View 14 Replies