ActionScript 3.0 :: Better Alternative To " E.target.getQualifiedClassName=='ClassName' "
Dec 21, 2009
EDIT SORRY I obviously got that wrong in the title! below is the correction I am wondering if there is a better alternative to my current use of: "getQualifiedClassName(e.target)=='ClassName' " I use it in cases where I want to know what object is say clicked:
[Code]...
View 12 Replies
Similar Posts:
Oct 23, 2010
So what's the difference? Any advantage in using one form over another?
View 5 Replies
Jan 11, 2011
I'm running into an issue with a Library class not being able to get the correct getQualifiedClassName. Here is my setup. I have a lot of MovieClips on the stage with instances names like item0, item1, item2 and so on. What I need to do is extend some of those items and give them extra functionality so I opened the items Symbol properties dialog box that I wanted to add a custom Base class to and Checked Export For Actionscript. Kept the Class name the same as the stage instance name. as it needs a unique class name. Then for the BaseClass I added a path to my class that I wanted each item to have extra functionality. The base class was called StageItem which extends MovieClip
[Code]...
View 2 Replies
Sep 24, 2010
I want to set a variable(string) classname,i.e. var _className:String= "level" +2; So i wrote,
var _class:Class = getDefinitionByName(_className) as Class;
trace(_class);
View 3 Replies
Oct 26, 2011
I have a bunch of symbols defined inside of a .fla file which are exported for actionscript -- IE, given a class definition name. In this .fla file, there is one symbol that pretty much contains all of the other symbols. The definition names are basically used to locate each symbol so that I can wrap each symbol with appropriate functionality.Also, sometimes I want to create a new instance of the symbol, so that is nice. Anyway, here is an example of the code that finds children based on their class name, it works nicely:
Code:
public static function getChildByClass(target:DisplayObjectContainer, className:String):DisplayObject
[code].....
View 2 Replies
Sep 29, 2003
On the attached exercise, is it possible to stop further items being dragged onto a target when the target box is full?
View 1 Replies
Nov 28, 2011
What is the difference between target and currenttarget in flex?What is the difference between Target and Current Target in Flex especially in mouse events.
View 2 Replies
Aug 30, 2010
qi have a movieclip which is added to the stage:
var profileholder:profileHolder=new profileHolder ;
inside of profileholder is another movieclip(infoBtn) that acts as a button.when the mouse is over profileholder i want to do something with infoBtn like:
//profOver is the over state of profileholder
function profOver(e:Event) {
e.target.infoBtn.alpha=1;
}
this doesn't work and brings up this error:ReferenceError: Error #1069: Property infoBtn not found on flash.display.Loader and there is no default value.
at main_fla::MainTimeline/profOver()
i also tried:
function profOver(e:Event) {
var item:profileHolder=e.target as profileHolder;
item.infoBtn.alpha=1;
}
and get this error:TypeError: Error #1009: Cannot access a property or method of a null object reference.
View 1 Replies
Dec 17, 2010
[code]...
iphone safari can't see <a id="alternative" target="_blank" href="#">iphone can't see me</a>
But PC's safari,firefox can see the alternative.
View 2 Replies
Nov 7, 2006
I made a script which will tile dynamic mc in a way that after a number of clips (say 5) in a row, i would like the 6th mc to position on the next row below the first row, like this:
1 2 3 4 5
6 7 8 9 10
i was able to do it thru series of if-else if statements but the thing is that i was wondering if there's a better logic in doing this, i was thinking of using switch statement but is there a way to type "i>=9 && i<=20" into a case parameter? here is the code and i have also attached the fla if anyone would like to see:
Code:
if (i>=20 && i<=25) {
item._x = item._width+275;
yVal = (i-20)*(item._height+5);[code].....
View 2 Replies
Oct 25, 2007
I have created a Flash application for a "big" client which communicates heavily with the server. Flash app is initially loaded with a big XML file, which is retrieved by an aspx file. Then every 5 seconds, it calls a different aspx file to update. There are 3 asp files, which also sends back XMLs, that it calls periodically on top of the aspx file. Buttons on the app calls 4 different asp files with data being sent via querystring, but, uses the XML.sendAndLoad commands since we want the communication being done behind the scene.
During testing on development and live sites, we noticed no problems. We had sporadic complaints about the application being slow, but, they were so rare that we let it slide.
Now, it seems more frequent. I went back to the application and tried utilizing the built-in garbage collection by deleting all temporary variables, but, that didn't seem to improve much.
Given this scenario... is there anything I could try to improve the speed of server communications?
View 1 Replies
Sep 5, 2009
I have an application requiring exporting of Flash animations to run on an embedded media player. This accepts a number of video formats. The most reliable I have found so far is DivX. The player supports DivX versions 3.11, 4.x & 5.x. The export codec in CS3 is DivX 6.8.5 which is not compatible with the player.The player also supports MPEG2 but the quality is not very good. Other options are Xvid Mpeg4 video (doesn't work) and MS Mpeg4 video codec V2 & V3 (also not supported in CS3).I have tried downloading a variety of alternative second source file converters but frankly tied myself in knots. Any idea how I can get around this problem and get a DivX 5.x codec to work natively within CS3?
View 2 Replies
Sep 23, 2009
I'm having huge bug issues with LocalConnection that nobody seems to be able to find errors in my code/files. So... I'm looking for an alternative. I need a main swf file to load an external swf including the ability to have it move from one frame to another. If this isn't a possibility, I can also just have the main swf hide/reveal a div or just an image in the html.
View 9 Replies
Jun 27, 2009
I am an Adobe Flex developer and I am sick of Eclipse. Is there an alternative (free) IDE for Flex? I am aware of Tofino, but I can't get that to work on my MSVS Express editions, and I don't want to buy the whole thing.
View 5 Replies
Mar 24, 2011
Good alternative Flex IDE? I am interested in free editions mostly but I will also take under consideration the paid ones.
View 2 Replies
Dec 20, 2011
We have developed a magazine reader which is basically PHP application. Admin panel is built in PHP but when any user wants to read a particular magazine, it is handled by Flash i.e. we are embedding the .swf object with HTML in PHP page. But flash is not supported in iPad/iPhone. So we want to create this application in Xcode so that user can read the magazine in iPhone/iPad also. There is confusion how it can be accomplished.
View 1 Replies
Mar 17, 2004
I was reading through various source codes, trying to teach myself more and more AS as usual... and some things brought me to ask this question.let's say I place a movie clip on the stage, called gun. would:if (_root.gun) {} return a true statement, simply because a MC called gun exists on the stage?
View 1 Replies
Apr 16, 2007
Is there an alternative to attachMovie that I can use to put my movieclips on to the stage. Here is my problem, I have 2 frames total in my fla file, and in each frame I have buttons that when you click on them it attaches the corresponding image from the library. Problem is when you click to go to the next frame, the attached image stays.
I basically want it to stay attached only until you hit the next frame.
View 4 Replies
Mar 9, 2009
I'm looking for a lightweight alternative to the TileList component. I'm currently designing and developing an MPU Ad Creative that references an XML doc and pulls in four FLVs and their appropriate meta data. These videos will then be playable in the merch window, and there will be some opt-in data capture going on as well.
I've got a prototype going at the moment that grabs the XML and populates a TileList, and then uses ListEvent Listeners to add functionality to each of the ImageCells. All working fine, except that the file size is already at 47k without any of the data capture form fields in there. This is already over the TZ polite-load limit, and I've only added maybe 60% of the functionality. When I remove the TileList class, the swf shrinks down to 3k (a much nicer size ), and even after adding the remaining 40% I can't see this going much above 15k.
So, anyone know of anything I could use to replace TileList? I thought about creating my own class that holds all the information for each Video I need, but I thought I should check first to see if there are any other alternatives.
View 1 Replies
May 7, 2009
I need to have the ablity to create 3000+ sprites so they can be interact. In this case it is a bunch of booths at trade show. I have done a lot of experimentation about how to create/draw these in the quickest possible manner.I have used timers, loops, enter frame events and I am still not satisfied with speed.My new idea is to create a seperate swf before hand that has everything drawn out so this doesn't have to be done at runtime, the swf can just be downloaded. So my question is.... What would be the best way to develop a module that draws out everything into a swf file so that at runtime, I am not drawing anything, I am just uploading the file.
View 19 Replies
Mar 2, 2010
I would like to have a flash app on a website where:A user can input some values Those values are then sent to a server which has an executable fileThe exe is run with the user's settings and then sends some data back to the userThe data is displayed in the flash app.Is it doable with CGI or is there a better alternative to this?
View 2 Replies
Feb 13, 2012
I'm trying to use URLRequestMethod.GET to get some xml from our website.In ie7 the onComplete never fires so it gets stuck but it works great in every other browser. I know that to fix a similar problem with preloaders you change the onComplete to a ProgressEvent and check to see if bytesLoaded == bytesTotal.This doesn't seem to work for URLRequestMethod.GET because when bytesLoaded = bytesTotal it doesn't mean that you have your data. Is there another way to check to see when the data is finished?
View 7 Replies
Feb 26, 2008
Are there any alternatives to sitepal with the same or close the same quality of text to speech engine?
View 1 Replies
Nov 27, 2009
I'm making a Flash app in Flash 10 and ActionScript 2.0 and need support for calling an EXE with some params and minimizing/close the application.
Neither Adobe AIR nor Zinc don't seem to support some code I made and I'm looking for a very simple alternative? Does anyone know about any?
View 3 Replies
Dec 4, 2009
I've been using PTViewer but it is causing some issues with looking for the ptdefault.html everytime and I'm wondering what other options are out there?
View 2 Replies
Dec 17, 2009
is there any other framework that does the same as amfphp? I dont want to use amfphp because it hasnt been updated in years and looks like it's no longer under development, I have to use PHP so I'm looking for a PHP alternative.
View 2 Replies
Mar 16, 2010
Does anybody know of a tool that will allow me to create ASDoc style documentation with a Flash CS4/AS3 application? From what I hear ASDoc only works with Flex.
View 2 Replies
Sep 28, 2010
Do you know any free alternative for BlazeDS? It's working fine here, but we're looking for alternatives to check wich one is better.
View 3 Replies
Jan 6, 2011
I'm looking for an alternative way to position a bunch of objects.
Here is my code:
private var orderContainer:Sprite;
private var currentOrder:uint = 1;
private var orderArray:Array;
[Code].....
View 1 Replies
Feb 20, 2011
I want the content of a local text file to become available inside JavaScript. I've achieved that using HTML 5 FileReader API, but this works only in Mozilla Firefox and Chrome now. I know that it is possible to create a cross-broswer solution using Flash. Is there any open-source project that do that?
View 1 Replies