Basic AS - Mouse Release...
Hey,
On my animation, i want it to stop at frame 89
so i put the code
Code:
stop();
in the frame.
I then want it to play frame 90 when the mouse is clicked, but i am having difficulty doing this. What is the ActionScript i need for this?
Thanx, Stuart
DevShed > Flash Help
Posted on: April 8th, 2005, 06:22 PM
View Complete Forum Thread with Replies
Sponsored Links:
On Release Help (Basic)
Hey, I haven't really used AS3 before, so I'm already stuck. I need to know how to do an on release. I used to do it in AS2 by adding the AS to the button like
on(release){
gotoAndPlay("whatever");
}
But all I get now is the "actions cannot be applied to that" message when I try to add the code to the button. What's the most basic way of achieving this with AS3?
Thanks very much.
View Replies !
View Related
Basic On Release Again Question
I have a dynamic button array the has script
on (release) {
_root.releaseIt(navId);
_root.selectSubMenu(this.navId);
}
my question is :
this button selects the subMenu but only once
(there is another button on my stage allows user to hide subMenu)
I would like to be able to "reselect" the subMenu or "release again" from this same button - how do I do that?
thanks -
P.
View Replies !
View Related
Basic Actionscript On(release)
basically i'm retarded, and this is probably really simple.
i'm making a photo gallery.. and each picture slides on and off the screen. so i have movies with each photo that slide on (stop) slide off (stop).
so in scene 1, frame 1, "movie_01" starts, then i need it so when you click the next button it slides off.. then goes to frame 2 of scene 1.
the two on(release)'s work fine on their own.. but i don't know how to say after going to *this* do *that*
Code:
on (release) {
movie_01.gotoAndPlay(13);
}
on (release) {
gotoAndPlay(2);
}
all help is appreciated!
View Replies !
View Related
Basic Help Needed - Button On Release
Hey, I haven't really used ActionScript 3 before, so I'm already stuck. I need to know how to do an on release. I used to do it in ActonScript 2 in Flash 8 by adding the AS to the button like
on(release){
gotoAndPlay("whatever");
}
But all I get now is the "actions cannot be applied to that" message when I try to add the code to the button. What's the most basic way of achieving this with AS3?
Thanks very much.
View Replies !
View Related
Mouse Over/out/release MC Trigger
Hellouthere,
Hope anybody can helpe me out, i am so close that
i can't see it any more. The problem:
There is a button which should trigger a MC.
There's a 'rollOver' action. (frame 1 in MCname)
There's a 'rollOut' action (frame 2 in MCname)
And there's a 'Press' action (frame3 in MCname)
But as you might understand after pressing the button
it will go to frame 3 in the MC but after leaving the
buttonhitarea (it's a rollout....) it goes back to frame1
or 2????
So what i want is to neglect the 'rollOut' function when
the button is pressed... some body knows how to do
this. If necessary i can send the .FLA.
Thanx in advance
FD
View Replies !
View Related
Mouse Release Trouble
I have a flash file that pans through a photo gallery. It changes direction by referencing the position of the users mouse. The problem is that once the users mouse enters the area that the flash file starts referencing for direction control of the photo gallery it doesn’t seem to release it (the mouse) to be able to click on the back button. So the mouse is useless to the user for any normal functions other than controlling the photo gallery. Thanks in advance... Here is the action script that I think is the problem... Any thoughts?
M = getProperty("point", _x);
// following includes stop gap size, and get mouse position
if (Number(M)<Number(stopgap)) {
if (Number(M)>Number(-stopgap)) {
I = M;
} else {
I = -stopgap;
}
} else {
I = stopgap;
}
rate = (M-I)/speed;
View Replies !
View Related
Tracking Mouse Release
Hi ppl,
I have a grid which is generated using duplicatemovieclip() function, and I am looking to track the _x,_y position using movieclip events like on(press) and on(release)
The problem here is, the on(press) event needs to be tracked on one movie clip instance and the on(release) on another.
Basically what this would mean is clicking on 'movie clip A' dragging the mouse over a couple of other movie instances in the grid and finally releasing the mouse over some 'movie clip B'.
I am unable to track the on(release) event happening at 'movie clip B'. I was wondering how this could be achieved using Actionscripting. I am attaching the .fla file to make things more clear.
Any help would be appreciated.
View Replies !
View Related
Mouse Button UP (release)
HI,
I need to control a timeline by mouse buttons, arrow keys, and movieclip buttons at sametime.
I have some dificulty to do a timeline control by mouse buttons.
Left mouse botton --> nextframe.
Right mouse button --> prevframe.
I made this code but is to fast.. any mouse slow click, jump 3 or 5 frames...
I try to make a timer , but don´t work...
the code:
var flag:Boolean=true;
stop();
this.onEnterFrame = function(){
if(flag){
if (Key.isDown(1)){
nextFrame();
}
if (Key.isDown(2)){
prevFrame();
}
}
}
any help thanks..!!!
View Replies !
View Related
Stopping My AS Glide On Mouse Release...
First, a big thank you to jamescover!
ok, got the slide working both ways now on mouse press...the menu glides beautifully left to right! Now, I don't know how to stop the movement. When I release the button, I want it to stop moving where it is (then of course be able to resume movement in either direction on a new mouse press)I have tried this on the button:
Left Button: (here is my attempt at stopping it)
-------------------
on (press) {
myMC.finalX = 800;
}
on (release) {tellTarget (myMC) {stop;
}
-------------------
Right Button: (this is how both buttons look currently, without by poor 'stop' attempt).
-------------------
on (press) {
myMC.finalX = 100;
}
on (release) {tellTarget (myMC) {stop;
}
--------------------
so now the myMC keeps going to 100 or 700 (in a nice, slow glide at least!)
so how do I tell it to stop where it is on mouse release?
Thanks again!
-Damage
View Replies !
View Related
Making A MC Do 2 Different Things On Mouse Release?
I have a MC on the stage called MAINMENU that is composed of two other MC's: MENULEFT and MENURIGHT.
When you click on the left half of the MAINMENU MC (MENULEFT), I want it to expand the MENURIGHT out to the right. Then, when you click on it again, I want it to move MENURIGHT back to it's original position.
I know how to make it so that when you click it the first time, it expands, but I can't get it to retract when it is clicked again.
Can someone give me some ideas?
Thanks!
Lee
View Replies !
View Related
Trigger Mouse Release Event
Hi
I have a scrollpane with a large image in it. I can control it with actionscript to roll the content to a specific location. (to show what needs to be shown)
this works, however, if you click and hold the scrollbar and move it, this interferes with the automated scrolling.
I need to find a way to: break the drag action on the scrollbar, or by triggering a release event for the mouse.. or sumthing.
i've tried different approaches sofar, nothing really does anybody have some useful tips? thx!
View Replies !
View Related
Random AttachMovieClip On Mouse Release
hi. i m stuck. how do i duplicate a movieClip randomly on stage on each mouse click. ie whenever user clicks a button, a duplicated movieClip, named square
will be placed on stage randomly?
i tried : [on the button : on (release) { ddsq};
on the main frame :
function dsq() {
_root.duplicateMovieClip("dsq", "dsq"+i, i++);
}
it doesnt work.
View Replies !
View Related
Mouse Release Of Button Conflict With Clip
Hello,
Hope you can help me with this seemingly simple problem. I have a button on top of a larger clip. Both react to a mouse release with a different result. My problem is that when I click on the button, the clip reacts also. I would like only the button to detect the mouse down and not the clip. What cn I do?
Thank you!
View Replies !
View Related
Actionscript 3 / Firefox / Mouse Release Outside Stage
So I need to be able to detect when the user releases the mouse button outside the stage/movie bounds. I am using Actionscript 3 / Flash 9.
Since onReleaseOutside was nixed, and setCapture is no longer there now that Flash 9 is final, I'm using an event listener for mouse_up on the stage. This works sometimes... but specifically not when running inside Firefox 2.0 on a Mac..or when wmode is set to something non standard (opaque or transparent running on Windows/Firefox).
This is quite critical actually, pretty easy to repro, assuming you have Firefox and MAC. Just drag a slider component onto your stage inside a test app. Publish, then run inside the browser. If you drag the slider, mouse outside the movie bounds, then release..then mouse back over movie, the slider continues to animate - thinking you still have the mouse pressed.
I've also tried inspecting the buttonDown property of the mouse move event..but once you've released outside the bounds of the movie - it's always true.
More info at http://www.justsuppose.com
I'm grasping for straws..anyone stumble across a workaround???
Thanks,
Corey
View Replies !
View Related
Custom Mouse Icon That Changes With On Click And Release
Hey everyone !
Hope you're having a great weekend -
I seem to have got stuck on a tutorial i've been working with..
I'm quite comfortable with hiding the mouse cursor and putting a movie clip in it's place - although the trouble starts when I try to tell it to load another movie when the mouse is clicked - then once realeased going back to the original movie clip !
Is there anyway to do this or is it a lost cause ?
I have attached a FLA i've been working with - this is what i'm aiming for without the hotspot_mc - I would like the mouse to work the same across the whole page and be able to click on buttons etc, like a normal mouse click would !
Many thanks to all !
View Replies !
View Related
Mouse Actions, (on Release, On Roll Over Etc) Only Work Now This Way?
So the only way now in actionscript 3.0 to trigger a mouse action is to write a listener and then an event handler ?
no longer can we write actionscript directly to the movie clip like this:
on(release){
this.gotoAndStop(2);
}
and no longer can we just write this in the main timeline to get to a movieclip:
button.onRelease = function() {
button.y =+ 20;
}
So I just wanted to confirm this, as always any help is appreciated.
View Replies !
View Related
Release A Button, And Be Able To Control A Movie Clip W/ Mouse
Hello. I'm trying to make a movie where after clicking on a button named maunal, you can control a movie clip with mousemove. Unfortunatly, I can't find the problem in the script. On the button I have:
on (release) {
manual == true
tellTarget ("manual") {
nextFrame();
}
tellTarget ("auto") {
prevFrame();
}
}
On the movieclip I have:
onClipEvent(mouseMove){
if (manual == true) {
nextFrame();}
}
My guess is it's in the manuel == true, but I don't know why. Any clues? Thanks,
-A
View Replies !
View Related
Stopping A Follow Mouse Function On Rollover Or Release
Hey Gang,
I'm trying to create a menu bar that follows your mouse vertically. I was following this tutorial:. http://webdesign.templatemonster.com...ouse.1244.html
but I can't seem to figure out how to stop the toolbar from following after rolling over or clicking on the movie clip. I also wanted to find out if I could adjust where the movie clip seats when it meets the mouse, as it seems to get stuck in a non-clickable area. Can anyone give me a bit of insight as to what I need to do to achieve this? Thanks in advance!
This is what the script looks like:.
Quote:
toolbar.onEnterFrame = function() {
var yMouse = _root._ymouse;
if(Math.abs(xMouse - this._x) < 1) {
this._y = yMouse;
} else {
this._y -= (this._y-yMouse) / 6;
}
}
Jeff
PS: if this is in the wrong section, sorry in advance!
View Replies !
View Related
Left Mouse Button Press/release Function
hi guys,
need some help with this basketball game Im building, everything is working fine with the codes below using <spacebar> to shoot the ball (hold down to power up and release to shoot), but now the design change requires me to make change on using left mouse button to do the same. Here's the current code:
ActionScript Code:
keyListener = new Object();
// on keyDown
keyListener.onKeyDown = function() {
if (Key.isDown(Key.SPACE)) {
//trace("space pressed");
if (Ball.status == "reset") {
if (_root.powerOn == false) {
_root.powerOn = true;
_root.playerMC.powerMC._visible = true;
_root.playerMC.powerMC.gotoAndPlay(2);
}
}
}
};
// on keyUp
keyListener.onKeyUp = function() {
if (Key.getCode() == Key.SPACE) {
//if (Ball.status == "reset" && _root.power<100) {
if (Ball.status == "reset") {
_root.powerOn = false;
_root.doneBounce = false;
_root.playerMC.powerMC.gotoAndStop(1);
_root._root.playerMC.arrowMC._visible = false;
_root.playerMC.powerMC._visible = false;
_root._root.playerMC.playerangle._visible = false;
Ball.initShoot();
}
}
};
Key.addListener(keyListener);
I understand that I can create button and use the on<press> and on<release> default function, but i need this left mouse press function to be at anywhere on stage instead of pressing on a specific button. I found this snippet of code which detects the left mouse button:
this.onEnterFrame = function ()
{
if(Key.isDown(1))
{
trace("Left Mousebutton");
}
}
this works fine alone, but when I swap out the <key.SPACE> with Key.isDown(1) the code doesnt trace.
Can anyone help me out?
thanks.
View Replies !
View Related
Mouse Release Events In Separate Movies Interfere With Each Other
Hello everyone,
I am having a problem with a flash movie:
My movie has a series of movieClips inside of a parent movieClip. onRelease actions are associated with each of the child clips, but none are specified for the parent object (which is an empty movieClip).
The problem is, when other Flash movies are put onto the same HTML page, it sometimes takes two mouse clicks to make a selection -- it's as if my flash movie needs to be focused before the child clips can recieve the onRelease message.
Is there a bug in the Mouse object which would cause multiple flash movies in one html page to interfere with eachother in this manner?
best,
Gregory
gregory@newcloud.com
www.newcloud.com
View Replies !
View Related
Mouse Release Events In Separate Movies Interfere With Each Other
Hello everyone,
I am having a problem with a flash movie:
My movie has a series of movieClips inside of a parent movieClip. onRelease actions are associated with each of the child clips, but none are specified for the parent object (which is an empty movieClip).
The problem is, when other Flash movies are put onto the same HTML page, it sometimes takes two mouse clicks to make a selection -- it's as if my flash movie needs to be focused before the child clips can recieve the onRelease message.
Is there a bug in the Mouse object which would cause multiple flash movies in one html page to interfere with eachother in this manner?
best,
Gregory
gregory@newcloud.com
www.newcloud.com
View Replies !
View Related
On(release) Mouse Click Sets Variable But On(keyPress) Doesn't - How Come?
Hello.
I have a button with this action attached to it:
Quote:
on (release, keyPress "t") {
unloadMovieNum(1);
loadMovieNum("selector.swf", 1);
RestaurantSelectorCheckLoaded.gotoAndPlay(2);
}
The movie clip called "RestaurantSelectorCheckLoaded" is a blank mc with the following three frames:
frame 1:
Quote:
stop();
frame 2:
Quote:
play();
frame 3:
Quote:
if(_level1.getBytesLoaded() == _level1.getBytesTotal())
{
_level1.selector = "restaurant";
stop();
}
else
{
gotoAndPlay(2);
}
Here is my dilemma:
For some reason unknown to me if I use the mouse to click the button the "selector" variable that I set in _level1 through the above mc is set correctly but if I press the "t" key instead of clicking the button, the variable is not set, ever!
How is this possible?
Is that a flash bug or something?
View Replies !
View Related
Fast Mouse Movement Doesn't Activate "ON RELEASE' Action
Hello,
I have just started with flash and made my first menu logo with an action script.
My problem is that if a user moves the mouse to fast over the buttons, than the movie that is triggerd by the mouse-over action is overlapping the movie from the next button.
If they move too fast of the button, the action "on release" doesn't get activated
My question is how I can prevent this!
The movie is temporally placed at: http://www.acngroep.nl/menu/menu.swf
The source is temporally placed at: http://www.acngroep.nl/menu/menu.fla
I made it in Flash MX
Just open the movie and move the mouse fast over the buttons “Telecom – Assurantie – Financiering – Reizen” and see what I mean.
Many thanks in advance…
View Replies !
View Related
Scrollbar Handle Won't Release When Mouse Is Off The Handle
Hi Everyone,
I am having a problem in that my scrollbar is working but when I try leave it, it still thinks that it is attached to scrollbar handle. How can I make sure that it detaches itself.
I have now tried the this:
PHP Code:
on (press) {
startDrag (_root.i_about_mc.slider, false, _root.i_about_mc.path._x, _root.i_about_mc.path._y+210, _root.i_about_mc.path._x, _root.i_about_mc.path._y);
}
on (release) {
stopDrag();
}
//just added this but had no success
on (rollOut) {
stopDrag();
}
Thanks...
View Replies !
View Related
On Release Stop On Release Play. How?
Its like a stop and play button. Like, lets say a button or much more likely, a movieclip, in the shape of a pause button, is clicked, it stops on the frame. Once it is clicked, it looks like a play button, and when it is clicked again, it plays from that same frame, And it then looks like a pause buttons again. How?
View Replies !
View Related
Basic, Basic Problem In Animated Btns
I have spent HOURS and DAYS working on a project for an online Flash 2004 class. I've searched threads on this subject in this site but none address it. I guess I'm too new to understand 90% of what's posted! I've viewed a couple of tutorials but just can't get it! Here's one of the problems. I've tried all kinds of ways to do this, but I just don't get it. I'm sure all of you are shaking your heads over my inability to "get it" but I'm putting my pride behind me and asking for help!!
Book: Essentials for design Level One by Dwayne J. Ferguson, Proj. 7, Challenge 1, "Creating a Fading Animated Button."
1. Open scifi_button.fla from folder (this shows the hangar door)
2. Use the Selection tool to select the hangar door. Drag the hangar door into the Library. Name the new symbol "hangarDoor_symbol" and choose Graphic as the Behavior. Click OK.
===I'm okay up to here
3. Press the "F8" key and create a new movie clip symbol. Name it "hangarDoor_mc."
===Where should I do this? Duplicate in the Library? And what do I do with the hangarDoor_symbol on the Stage?
4. Drag an instance of the hangarDoor_symbol to the stage.
5. Add a keyframe to the movie clip Timeline on Frame 10. Move the door to the top of the guide.
===Do I create another layer and move the mc into frame 1?
6. While still on Frame 10, decrease the Alpha of the door to 20%.
===There's no place in Properties that brings up the color box. It just shows a sound box.
7. Choose Motion Tween from the Property Inspector. Scrub the Timeline to ensure that the door animates.
===I went to Frame 1 and did this, but nothing showed in the frames in between!
8. Return to the main Timeline. Click the Preview button in the Library to play the animation.
===I thought I WAS in the main Timeline!!
9. Press the "F8" key to convert the door on the Stage into a button symbol. Name it "hangarDoor_button."
10. Double-clicki the hangarDoor_button on the Stage to enter Edit mode.
11. From the Insert>Timeline menu, add keyframes for each of the button states.
12. Choose View>rulers. Draw guides around the shape of the door on the stage.
13. Click the Over state keyframe and delete the door graphic. Replace the graphic with an instance of hangarDoor_mc from the Library.
===Why is all this necessary.
14. If necessary, move hangarDoor_mc into position within the guides, so it matches the placement of the other states.
===What? I go to onion skin outline?
15. Return to the main Timeline. Choose Control>Test movie to try your button.
===This is a joke!
View Replies !
View Related
[FCS3] Basic (i Mean Basic) AS Tutorial (2 Or 3)
OK, I have absolutely no idea what i have to do when it comes to actionscript. I dont know why you would use } or : or ; or, well, anything, and I have no idea what the functions of it are. The onlt thing i know is the stop action, and even then i just do [ESC] S T - so i dont know what im typing to make it stop.
Is there any tutorials that will take me from being a person who knows f**k all about AS (but a fair bit about Flash) to a person that knows a fair bit about both. All the tuts I have consulted so far have either been so basic that you don't need AS, or a "basic" AS tutorial, which I have no idea what is going on in them, because they are not basic [for me].
Thanks
Alex
Sorry if there has already been a million post like this before, but they probably all have stupid titles, which I can't be bothered to sift through.
Maybe a post like this should be stickied, because i'm sure its not just me who is an AS idiot?
Thanks again
View Replies !
View Related
Some Basic, Basic Instructions About FMS.
Hello everyone,
I am trying to make a Multiplayer AS3 based game. Can anyone kindly guide me to some BASIC BASIC tutorial about how to send variable to the FMS, and read something back?
Its about 3 days now and I can't find anything. I tried my hands on Red5 at first, but then I discovered that it was even harder to understand. The samples in Red5 were in AS2 and would confuse me more if I tried to translate them to AS3. And the samples found inside the FMS server don't work
I tried to make google find me a hello world tutorial for either Red5 or FMS, and tried alot of different ways to convince Google to find something but it didn't.
Please guide me on how to get started with FMS OR Red5, as Red5 is still an option for me.
All I need to transfer is the x and y location of one movie clip to another. Simple. That's the only thing I am wanting to do right now.
Any help in this regard will be appreciated,
Thanks in advance.
View Replies !
View Related
Most Basic Of Basic Questions
i just need to know how to do a navigation in flash...i have a lot of images so the most streamlined it can be the better...
for example, i want a series of buttons
and when you click one button, several come up, and those are buttons for images...nav, sub-nav.......ive been looking all day on how to do this, can anyone help, or direct me to a sight to help, or show me where i can download a sample file? im really desperate, deadline soon, nails bitten to the core, just need a simple website
View Replies !
View Related
Basic Basic Question
hi there,
i have an mc, with an on press event which should tell the main timeline to go to the next scene and play, but it doesnt work
any reason why?
on (press){
_root.gotoAndPlay('Main','start');
}
so basic, so iritating!
chers all
jamo
View Replies !
View Related
On Release
may sound a little stupid but, can't get the onrelease command to be available to me on flash 5. it keeps saying:
"Clipboard Actions: Line 1: Mouse events are permitted only for button instances
on (release) {"
HELPPP!!!
View Replies !
View Related
On Release (if .. Else )
I'm trying to on release of a button check the _y position of a MC on the stage. I wish to reposition it from position 1 to 2 if it's at 1 else I wish to reposition it to position 1 if it's at position 2.
Hope that made some sense, I'm not sure if I have to put this into a function then called it on the button release? If so where do I put the function?
This is the code so far :
on (release)
{if (move == 300) ){
setProperty ("move", _y, "300");
}else {
setProperty ("move", _y, "100");
}
View Replies !
View Related
Key Release
Hi!
Does anybody know if the Flash4 can understand a "Key Release" situation... If really exist this command or we have to simulate it.
Im making a 'Racing Game' and I need to know when the player isn't accelerating.
Ex: <Up> Key pressed = Car Accelerate
<Up> Key released or
< > No Key Pressed = Car Slow down.
Thanks a lot!
=Carlos Moffatt=
http://www.vocevai.com.br
View Replies !
View Related
On The Release Of A Key......
i'm trying to make a game where a guy guys runs across the screen, but i have a problem. I can make the guy run, but i want him to be able to stop when you release the key. How can i use an effective way of making him stop when you let go of the key.
thanks......
View Replies !
View Related
On(release){........
on(release){
DoSomething(_parent);
}
Please any one tell me what does this script do,
As I have a menu made of duplicated button with the script new array=....,
but I couldn't make the buttons to go to different urls
I think this script which is found in the script of the button is responsible for making links to all the duplicated
buttons
Please help me ...
I need this Urgent
View Replies !
View Related
Where To Put On(release)?
Hello!
I have a movie, which contains and moves a button, both in the library (because I use ActionScript to put several instances of it on the stage).
Now I simply want to the button to go to an URL when the user presses it:
On(release)
{ getURL("/mypage.htm")
}
But where to put my On(release)? This works fine, when I put the button directly on the stage (and then selecting Right Mouse->Actions). But in the button itself it seems not to work, and it also seems not to work in the movie.
Any ideas?
Martin
View Replies !
View Related
On (release)
I have a flash movie that I have published as a .exe. I have a button and the action is on release geturl I want to add a gotoandplay with this also. Is this possible?
For example
on (release) {
getURL("www.url.com");
gotoandplay(2);
}
What am I missing?
Thanks in advance
View Replies !
View Related
No 'on Release'?
hey
im pretty new to MX (well flash in general) but MX is what ive got...got a button problem linking scenes, ive read other queries and tried them out on my machine, still no luck..
ive no 'on release' on mine, i have 'on release(button)' also i
dont have this '_root' people go on about' also ive tried putting frame labels at the start of each frame in the scenes, still no luck.. what's going on?
mx users in the house?
View Replies !
View Related
On(release) A Better Way?
Had set up my AS for buttons (code below) so a default mc would playin main stage when mvie loads and when user has rolled out of buttons. However, I need it so user can click on button to view scrollable text or interact with another mc.
As you can see below, the script has it so when user rolls out of button (wheter they clicked or not) default movie plays.
What's a better way so mc's stop until user wants to go back?
------------------
on (rollOver) {
gotoAndPlay("1open");
_root.mainStage.gotoAndPlay("stop");
_root.SuperPlay.gotoAndPlay("SuperGo");
}
on (rollOut) {
gotoAndPlay("1close");
_root.mainStage.gotoAndPlay("begin");
_root.SuperPlay.gotoAndPlay("SuperStop");
}
on (release) {
_root.mainStage.gotoAndPlay("stop");
_root.SuperPlay.gotoAndPlay("SuperStop");
_root.SuperText.gotoAndPlay("SuperText");
}
------------------
Thanks
View Replies !
View Related
On (release)....
on (release) {
function....;}
handles a single mouse click. is there a similar process for a double mouse click?
i would think flash would implement easier actionscript for such a popular option rather then checking time (milliseconds) between clicks.
View Replies !
View Related
Key Release
Is there a simple way to detect when a key is release (and not using an on() event handler) ? I found a tutorial on how to do it in flash 5, but that's know good and also the example took like 3 seconds to detect the release! And also I searched on google, but the dang engine omits the word 'on'!! Argh!
View Replies !
View Related
|