Actionscript 3 :: Created A Singleton Class That Handles Project Texts?
Dec 15, 2010I have created a Singleton class that handles my project texts. What is the appropriate name of a Singleton class like this?
[Code]...
I have created a Singleton class that handles my project texts. What is the appropriate name of a Singleton class like this?
[Code]...
How I can change frame of dynamically created swfloader in Flash Builder 4.5?
View 1 RepliesI am trying to build a menu. I have created few texts and converted into buttons, which goto some url on click. Now, I have to add "fire burning" animation to these texts on mouseover. I have a movie clip of burning fire. I want to reuse the same movie clip. Also, when the animation plays, I want text to be visible on top of flames.
Can I reuse one mc or should I create multiple clips (or instances)? How to bring the text to foreground? Guidelines and if possible,
Maven 2.2.1 unzipped,M2_HOME set and repository altered to point to different drive location in settings.xml Flex 4.0:
Installed Created a multi-modular webapp project using flexmojo:
mvn archetype:generate
-DarchetypeRepository=http://repository.sonatype.org/content/groups/flexgroup
-DarchetypeGroupId=org.sonatype.flexmojos
-DarchetypeArtifactId=flexmojos-archetypes-modular-webapp
-DarchetypeVersion=RELEASE
with following options
groupId=com.test
artifactId=test
version=1.0-snapshot
[code]....
Parent pom has swc, swf, war as modules.
Dependency is war->swf->swc.
With parent artifactId of swf, swc, war set to swf, swc, test respectively.On executing mvn on test folder(for that matter clean or anything) I get this following error.
G:Projects est>mvn -e
+ Error stacktraces are turned on.
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/com/test/swc/1.0-snapshot/swc-1.0-snapshot.pom
[code]....
Looks like its trying to download the project from maven's central repository instead of building it.
How does one actually go about writing a file out to a directory from inside a class or is there an actual class that handles that like in other languages?
View 14 RepliesI have a Main class loading 2 SWF (loader and viewer, also with document classes). They need to share a double buffer with content, of course, filled by loader and showed by viewer I was thinking to use the LocalConnection class but after a suggestion from PatrickS now I'm evaluating the possibility of a Singleton Class. I've never used this pattern in AS and must confess I'm rather biased against it.
But in this particular case I guess it'll be useful. By the way, a little bit surprised reading in the gskinner blog 2 implementations examples. So, knowing this subject is an endless war like the Mac vs PC one Take into account:
1. AIR desktop application running 24x7 during some months in a high-end Windows PC. No user interaction
2. High performance code is a must because content loaded are full HD images My other concern is about memory leaks
In the Singleton design pattern you can throw a runtime error if the instance has already been created. But this doesn't work when your singleton class extends another class and has to call super() in its constructor, because (for some reason) you cannot call super() if you've already called throw(), or in fact, you cannot compile code that has a potential call to throw() (for example, in an IF statement) that comes BEFORE that call to super().
View 4 RepliesI have a doubt,.... How would you create a Singleton class in Flex...
Is there any convention like the class name should eb Singleton or it should extend any other class.
How many Singleton class can a project have?
Can anyone say the real time usage of a Singleton class?
I am planning to keep my components label texts in a Singleton class... Is it a good approach.
I'm trying to load swf from 127.0.0.1 into my main.swf with Flash Pro
Both swfs have Singlenton class
How to make it that loaded swf use Singlenton of main.swf ?
I did
ActionScript Code:
var lc:LoaderContext = new LoaderContext();
lc.applicationDomain = ApplicationDomain.currentDomain;
myLoader.load( new URLRequest("http/127.0.0.1/loaded.swf"),lc);
anyway I have 2 different Singlenton classes one comes with loaded.swf another in main.swf and variables not shared
is any way I can merge this values?
I know singleton class is not supporting in Flex.Because it does not access private constructor. But i want to make a class is singleton class.
View 2 RepliesI know actionscript does not allowed private contstructor at any time and But if i want to write a sinlgleton class in action script So how to implement it in actionscript.
Can anyone provide an sample example of a singleton pattern in actionscript?
I know actionscript does not allowed private contstructor at any time and But if i want to write a sinlgleton class in action script So how to implement it in actionscript.
Can anyone provide an sample example of a singleton pattern in actionscript?
I came in to flash on ActionScript 3 and when I was starting out just over a year ago I realised how much of a bother finding keyCodes was and changing controls was just as long as had to look up the new one I wanted to use. My solution was to (eventually) write a class that handles all of my key presses and event listeners attached to that stuff. instead of using keyCodes, the functions use strings for their arguments making it easier to see what keys you want to do what. Initially the class only worked for letters and numbers but I managed to make it easily customisable and includes the arrow keys, numpad numbers, space, enter, shift and control keys.
The reason why I wrote this thread was because: I plan on making it a public class (available to anyone who wnats to use it) and b) to see if there were any specific functions that people think may be useful. So far there are the standard key-down and onRelease type functions as well as a function that only returns true once for the duration that a key is down - difference between pressing and holding.
I have a ManagerClass with a Singleton implementation inside, I get the instance by calling ManagerClass.getInstance().
Can I get that same instance by just having the class name as a string? I have tried something like:
var theInstance:* = getDefinitionByName("ManagerClass").getInstance as Class;
theInstance.doTrace(); // I get a 1009 error here
I WIh know how Can I use a singleton class to make only a one instance of a movieclip on the stage.I use this code to make my movieclip instance:
Code:
var mioOggetto:wwp = new wwp();
mioOggetto.y = stage.stageWidth /2 -200;[code].....
this is a working singleton class for Tooltips. I want to add a timer in order to delay the tooltips since the way they're instantly popping up is bothering me.
This is the fla:
Code:
//Import and Initialise the ToolTip class
import ToolTip;
ToolTip.show();
[Code]....
How can I access a timeline variable from a static class / singleton?
View 14 RepliesI am not able to understand, why a static class cannot replace a Singleton design pattern .
Cannot a static class, can be used to ensure, the class is never/once only, instantiated. Because that is the facility "static" key words provide , however it doesnot allow instantiation, but that is much similar to the limitation of instantiation once only.
I want my intro texts to get scaled to a certain position when clicked. So far this is what I have done,
Code:
var scaleTo:Number = 0.6;
var introTexts:Array = [...];
for(var i:int = 0;i<introTexts.length;i++){
introTexts[i].addEventListener(MouseEvent.CLICK, onintroClick);
} function onintroClick(evt:MouseEvent):void {
[Code] .....
Right now,this code doesn't do anything, I can trace out "click" but nothing happen. I tried out the first item from the array first to make sure the code is working. The x position I want is -15 and y is 300. I just test out something, the code is working when I move it out from the function.
I'm making a class that manages all of my updates with a single ENTER_FRAME. I think I should be getting the OnUpdate trace but it doesn't seem to work?[code]
View 2 Replies I just wanted to ask:
1) Is there a way to add swc files after the project is created
2) And is there a way to link some of assets in those swc to classes (for example link a ball asset to a class the implements its functionality. You can do that directly from flash pro CS5.5, but is there a way to do it in flash builder)
I have a user with a brand new image including Snow Leopard 10.6.6 and the Adobe CS5. When creating a project in Flash CS5 and then trying to view it in Safari & Firefox the plug-in crashes which then brings down the browser with it.I went and installed Flash CS3 (as this is what he is used to using) and the problem still persists.
View 1 RepliesI've been playing around with custom classes. My objective was to create a custom class (Testing) that would create a box when an instance of the class is created. I've tried three different approaches, however only (3) seems to be showing up. I'm just curious why (1) or (2) doesn't work?
Also is there a better approach than (3)? Since at the moment it's been created on _root. I hope the box can only be accessible through the instance. Since I'd like to incorporate the whole idea of public, private, encapsulation, etc.
[Code]...
I have my main class for my project. And lets say that this project requires me to split a string into sub elements.I have a class already made that does this... stringSplitter.asI would I include this class ?Is it as simple as putting it in the same dir as the .fla and writing Code: Select allinclude "stringSplitter.as" within the main class ?
View 1 RepliesI cant "center" my project, like you can see its "fixed" (yellow lines) in the left side and I cant see "invisible" part of project... (area around the project). how can I move my project so I can see the not-project area around the project. (picture 2).
At the moment situation... (cant see that area around the project)
http://img19.imageshack.us/img19/1186/68553623.png
In actions script 3.0 I would like to retrieve the class of two instances and then compare them. Is there a way to know what class an instance is made of?
View 1 RepliesI am Dinesh and new to action scripts, I need to design a flash interface that have a dynamic text field and fetches lines from a external text file for e.g.
-59684578
-59879889
-65656566
This should display in the dynamic field with a loop and fast (less than a second) and there should be a start/stop and a reset button on the interface to control the same.
when I create a new flash project, I would like to put the source files in /src/ folder.When I try to add the base class to my project, flash can't find it.I've added the folder "src/" to source paths, in flash preferences.
View 2 RepliesI was reading about Flex- JavaScript communication via ExternalInterface.But I had a doubt, it said that the javascript code should be written in the HTML file of the application ? Now which is this HTML file ? Is it the index.template.html file per project or the HTML file created per MXML application ?
View 3 RepliesI have:
Code:
// a class
package
{
[Code].....
how to get the instance of AA that created this mc the_class.big_function( ) ;