ActionScript
Tag details
Welcome to the 'ActionScript' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'ActionScript'.
Look up
"ActionScript"
at The Free Dictionary
Latest blogosphere posts tagged “ActionScript”
-
swapping a nestied swf inside a movie clip
kirupaForum —
Authority: 158
Hi... Ive nested a swf file within a movie clip on my main timeline... I want to have a button within the nested swf that unloads itself from the movie clip and loads a different swf file in its place... Can anyone help?? i have a new swf loading into the movie clip but its over the previous swf thats still ...3 hours ago -
Saving an Array of Objects to MYSQL Database, and Retrieving It
kirupaForum —
Authority: 158
How do i save an array of objects, like this: [{n:1,bb:4},{n:2,bb:4,r:1},{n:6,bb:7},...] to a database? I was thinking i would have to convert it to string, but if i do that, when i retrieve it from the database, how am i going to use it?3 hours ago -
AS3 help: High Scores
kirupaForum —
Authority: 158
Im trying to make a high score list/leaderboard for my game, but really dont know how to do so. I can save a score locally, but I dont know jack about how to use php or MySQL to my advantage. Are there any good tutorials out there for this kind of thing? Ive looked around, but all I could find were as2 tutorials. Any ...5 hours ago -
How to check for sequential clicks?
kirupaForum —
Authority: 158
What I want to do is have a menu where the user navigates by clicking buttons in a sequential order. For example, if the user clicks button 1, then 2, then 3, they are taken to page 1. If they click button 2, then 3, then 1 they are taken to page 3, etc. Im really just not sure where to start or what terms i could ...6 hours ago -
Having the first object snap back when a second object is placed in the same place
kirupaForum —
Authority: 158
So I have two circles and a square on stage, myCircle1, myCircle2, and mySquare. You can drag the two circles, if you drop either one outside the square itll snap back to where it originally was, if its touching the box itll snap to the center of the square. I want it so when the second circle (either one) snaps to ...6 hours ago -
Interactive Flash Map (Touring DJ)
kirupaForum —
Authority: 158
Hey there, wondering if anyone has seen anything like the attached picture available on the net (pay or free). The map system has inputted tour dates and info so following fans can keep track of the DJs location and gigs... screen cap: http://french-express.com/tour.jpg Anyone know of such a scripted system? thanks9 hours ago -
Controlling a MCs timeline
kirupaForum —
Authority: 158
Hey everyone, Im wondering if its possible to control a movieclips timeline a bit more than the simple play, stop functions. I was hoping by pressing a button, it would make the MCs playhead not just jump to frame 20, but play to it. So if the movieclips timeline is on frame 60, I press a button and it scrubs all ...10 hours ago -
Box2d Contactlistener
kirupaForum —
Authority: 158
Hey guys, im currently working on a game involving Box2d. I have got a physics world working up to the point in which contactlisteners are required for several different objects, and I was wondering if someone could either point me in the direction of some good source material or tutorials involving contactlisteners ...10 hours ago -
Scrollbar for a Sprite?
kirupaForum —
Authority: 158
Hello, Im currently having trouble on integrating a scrollbar that I downloaded from Warm Forest Flash . I built a XML gallery that is going out of the boundary of height of 466 pixels. The thumbnails that are out of the boundary are still visible. On top of that, I tried to add the scrollbar to the sprites inside ...10 hours ago -
removing MC
kirupaForum —
Authority: 158
Hi, I´m trying to write a code that says, when mc is out of this area between 75 and 475 x and between 20 and 320 y flash will remove the mc this should work no? blueCircle.onRelease = function() { if(bluecircle1._x 475 && bluecircle1._y 320 ){ bluecircle1.removeMovieClip(); } else { ...11 hours ago -
Issue when loading XML in as2 class
kirupaForum —
Authority: 158
Hi i am developing a AS2 class that loads a XML but i cant call a function from inside the onLoad function. Heres the code: Code: // CONSTRUCTOR public function Curso(target:MovieClip, path:String){ // set vars this.path = ...11 hours ago -
help
kirupaForum —
Authority: 158
Hello everyone: i tried to figure out the XML url from fla action script file but i couldnt make it if any one can help me Please here is the code : Code: function setFeatureData ( _node, _val ) { featureData = com. dcx . utils . HyperXML . getNodesByAttribute ( _node, _val, "id" ) [ 0 ] ; ...12 hours ago -
Kirupa XML Gallery with Thumbnails
kirupaForum —
Authority: 158
Hi, My name is Felipe, Im from Brazil (sorry for the bad english.. XD) and I need some help with this gallery that I found here ( http://www.kirupa.com/developer/mx2004/thumbnails.htm ). How can I add links from the XML file to My large image? I tried inside the functions prevImage, nextImage e first Image the code ...12 hours ago -
Tweening the scale of TextFields "jerky"
kirupaForum —
Authority: 158
I have a simple TextField on the stage, though it doesnt matter if I add it dynamically via code, the results are still the same when it is being tweened up. If you tween the size via scaleX and scaleY , it will be "jerky", and now and then the number of lines will change and the text will rearrange slightly, but ...12 hours ago -
extending a class 2 times :D
kirupaForum —
Authority: 158
i have class A, then class B which entends class A, then class C which entends class B. now in class A there are couple of empty methods currently defined as protected. in class B these methods are also empty //i dont know how to make this exactly, they should obvioulsy be here as well because... -> then in class C ...13 hours ago -
Caurina error
kirupaForum —
Authority: 158
Im trying to use Caurina Transitions in Flash Cs4, As3, but get the error message: 5007: An ActionScript file must have at least one externally visible definition. Im simply using this code as test: Code: import caurina.transitions.*; Tweener.addTween (box,{x:10,time:1 }); What can be wrong?14 hours ago -
mouse event and event target
kirupaForum —
Authority: 158
i have these 2 functions and both are the same: as you can see disabledAction receives e.target as a paremeter from another function (click function actually). is there a way to somehow call disabledAction from rollOverHandler ? (so that the code doesnt repeat) Code: function ...16 hours ago -
Dynamically modify a movieclip
kirupaForum —
Authority: 158
hi , :megaman: i m working on a game where player has to demolate a bulding by placing bombs at diff places .. i want to know how break a movieclip into multiple parts dynamically ... like in the game demolition city ... i want the movieclip to be brocken into parts when detonated and then apply physics to the so ...16 hours ago -
Ctrl+Scroll detection?
kirupaForum —
Authority: 158
Hey everyone, have a question. Is it possible to detect whether the user used or is using ctrl+scroll to enlarge the screen? I was looking at an example of a mouse avoiding game, which could easily be cheated on using ctrl+scroll, so that the passages were larger etc. Is there any way to detect this inside Flash, ...18 hours ago -
Flash XML Thumbnails loading so slowly!! Please help
kirupaForum —
Authority: 158
Hi, I have been having a problem with slow thumbnail loading on my website. I am not sure why because I have continually reduced the thumbnail sizes and they are very small. The thumbnails are pointed to via an XML file. Any help would be immensely appreciated!!! Here is my code: Code: stop(); import ...18 hours ago

