ActionScript 3.0 :: Start A Line On MOUSE_DOWN-not A X_y Position
Feb 9, 2012
I want to drag a line from the mouse down anywhere on the screen but my problem is I can only do it from a set position eg.120,120.
Everything else is fine.
Here's my code:
var line:Sprite;
line = new Sprite();
addChild(line);
[Code]....
View 4 Replies
Similar Posts:
Feb 9, 2012
I want to drag a line from the mouse down anywhere on the screen but my problem is I can only do it from a set position eg.120,120.
Everything else is fine.
Code:
var line:Sprite;
line = new Sprite();
addChild(line);
[Code].....
View 2 Replies
Apr 18, 2009
how you start a new line in an output text. The reason I'm asking is since I'm making a quiz game and some of the questions / answers are to long for the text box and instead of making a new line by them selves they just continue outside the box.
The code in question looks like this _root.Question = "What colour is the sky in the day?"; and I would for example want to start a new line after "is".
View 6 Replies
Jan 30, 2012
I have a grid of letters. I want to create the else aspect, where if you don't drop the letter on any square, it'll return to its original position. Issue is I don't declare it's original position, i simply use placement on stage.
View 1 Replies
Feb 22, 2008
- how can I start the player from the position "pause" (so without playing a song when I open the flash) (and so with the button in position "play")
- I would like to add the button "previous track".. what code I need to create into the "mp3player.as"? (I think the button is the same of next but with "negative image" and with different names..)
- for a button like "stop" what I have to do? (a button with a simple action like: stop(); or stopAllSounds(); ?) (I've tried but without success...)
View 3 Replies
May 26, 2004
I'm trying to make a movie clip play when the mouse is in a certain position on the screen without using invisible buttons, coding this myself so far I've got
[Code]...
View 3 Replies
Nov 30, 2010
I'm using the indexOf method to search for a substring in a String variable in Actionscript 3. The indexOf method allows you to specify a second, optional parameter - the starting position for the search. However, I'm not sure whether the position returned by indexOf is relative to the very beginning of the string, or to this optional parameter.
View 1 Replies
May 8, 2009
I'm trying to make a movieclip rotate around it's center (this is no problem since the center will never change). The problem that I am having is when I press the movieclip, in let's say the bottomright corner, and move the mouse the movieclip flips to a certain angle depending on my mouseposition. After the weird flip it works fine but it's the initial mouse click that makes the movieclip flip to an angle.I've tried playing around with different values to substract or add the starting angle but eveytime the result is not what i am looking for.Current code:
Code: Select all
package
{
[code].....
View 8 Replies
Sep 12, 2007
I have this script, that zooms and fades the movieclip but I also need to shift the position slightly from the start state to the end state. For example var startX = 60 var endX = 70 so when the zoom start it starts at x = 60 and slowly moves as it zooms out to x = 70.
View 1 Replies
May 26, 2004
I'm trying to make a movie clip play when the mouse is in a certain position on the screen without using invisible buttons, coding this myself so far I've got
_root.top = 319
_root.bottom = 445
yval = _root._ymouse;
if (_root._ymouse > _root.top) {
_root.flowers.play();
} else {
_root.flowers.stop();
}
Doesn't seem to work right.
View 3 Replies
Mar 8, 2004
i need to find a way to pause and start again from that same position the 'infinite menu' found here on kirupa URL...A friend of mine attempted to help me, and gave me some code to fiddle with. I did fiddle with it, but problem was, the code was for Flash MX 2004. So it didnt work on my MX. Here is the existing code i have, but doesn't function (i.e. works fine when control>Test Movie, but doesnt work when actual .swf from folder is opened)[code]
View 10 Replies
Jan 31, 2003
Im a 100% beginner in actionscript so heres my question, as dumb as it may sound.
I want a shape to travel from px 0 on the x-axis to px 740.
The startposition on the y-axis needs to be random, and between 140 and 180.
I have tried the following code:
startY = Math.round(Math.random()*(180-140)+140);
startX = 0;
targetX = 740;
[Code]....
View 1 Replies
Mar 3, 2008
I have one movie clip that when clicked on moves to the left of the screen, after it gets there I want another and exteral swf to load. But I dont know how to get the external clip to load after the movie clip gets to the left side of the screen....Here is what I got so far..
square_mc.onRelease = function()
{ square_mc._x = 30;
square_mc._y = 180;
[code]....
when square_mc get to the Y position of 180, run the external clip.
View 5 Replies
Nov 23, 2010
I've got a problem with an if/else statement within a function which checks to see which 'drop area' one of ten items should to snap to.. the problem is I can only set the start location of each item to work on the first hitTest, otherwise after clicking another item or positioning any item in one of the drop areas, the drop area becomes it's start location due to startDrag() and stopDrag() been called again to move the object..
What I've tried to do here is to create a variable (which does trace the correct (currentTargetHome) movieclip reference, but as a string) but it doesn't work when I try to access it's attributes using [currentTargetHome]. The item exists within the movieclip "gamePage" and the rest of the function works !
[Code].....
View 9 Replies
Sep 14, 2006
I just followed this tutorial and I did get how it all worked.. and i got my movie clip flying arround the stage. Then when i tried to apply it to a little project i'm working on, i couldn't get it working. I have a movie clip called mc_main and when i click a button I want it to move - using easing - to a new position on the stage. In the first frame of my timeline i have put this AS:
[Code]....
View 7 Replies
Apr 1, 2004
I'm trying to have a movie clip with 4 buttons that moves to the four corners of the stage.Depending on which button is clicked, the movie clip goes to that corner.he trouble I'm running into is determining the variable start points. If the end goal is the lower right corner, it needs to be able to move there from the upper left, the lower left and the upper right. So I need to set the starting position as a variable I assume, but can't get it working.
View 2 Replies
Oct 20, 2002
I want my movie to start out with a line which is 1 pixel long. Then I want to increase it to 500 pixels in 36 frames. I can do this without actionscript by just going down 36 frames and increasing the line then creating a motion tween, but I would like to see this done in actionscript
View 5 Replies
Aug 22, 2009
To make this easy, lets say I have a movie clip with a diagonal line in it (top left to bottom right).
I want to start my y position at 0, and place it in a loop and increase y by 5 every time. So we start at the top left of the clip, and move to the bottom of the clip.
Now since we have our y value (0, 5, 10, etc.) would you get the x position of the line? such as (x, y):
5, 10
or
42, 15
View 1 Replies
Jun 3, 2008
I want to be able to position a series of movieClips along a curve of a cicrcle, well part of it. Basically I need a curved wall.
This is where I am at the moment, ...not very close.
_root.rot = -30
for (var i:Number = 1; i < 6; i++) {
var block = attachMovie("block", "block_" + i, _root.getNextHighestDepth())
block._y = 30
[Code]....
View 4 Replies
Jun 11, 2009
How can i find line number in events like mouse clicked, key down and key up. And also highlight that line with color. I used TextArea.
View 1 Replies
Aug 7, 2009
I've put together this simple code for an SWF with three roll over images (called: Training, Resources and Contact).When I roll over Training I would like the symbol Training_txt to tween its alpha to 1 (from 0) and tween its y axis to 220 (from 83).When I roll out of Training I would like to run the two tweens in reverse.
This works fine for each of the three roll over images, so long as each tween is allowed to fully execute before a new tween is started. The problem arises if i quickly move the mouse curser between the three roll over images before the previous tweens have finished executing.In this instance, the tweened objects start to behave erratically. They usually return to their original position as per the roll_out tween but then start jumping between y axis 200 and y axis 83 (without tweening - they just appear).
Code below -
stop();
import fl.transitions.Tween;
import fl.transitions.easing.*;[code]..........
View 1 Replies
Jan 26, 2012
I am looking how to get the row that is clicked on on a MOUSE_DOWN event.
I am using actionscript 3, and am trying to implement a drag and drop from a datagrid to another datagrid.
Do I have to add a Mouse_Down listener to each and every row I add in the dataProvider, or just check the event target on click of my dataGrid?
The way I have it now is:
playerPool is my dataGrid
playerPool.addEventListener(MouseEvent.MOUSE_DOWN, dragStarted);
function dragStarted(e:Event){
dragInitiated = true;
// Need to determine which Row was MOUSE_DOWN'ed on
}
View 4 Replies
Jun 29, 2010
I want to be able to drag a symbol without firing the CLICK event.Basically I have a pile of thumbnails on the stage that can be viewed by dragging them out of the pile. This also changes the Z order of the one I drag. I also want to be able to click on the one I want once I've found it in the pile.By using Trace() I have discovered that dragging fires CLICK, MOUSE_UP and MOUSE_DOWN and probably a few others as well. When I Double Click it fires all three events twice.How can I drag the thumbnail but not activate the CLICK event.
View 1 Replies
Nov 10, 2009
I'm making a navigation bar which will be embedded into html via a php include(). What I'm trying to accomplish is when the user clicks a button, it stays in the mouse_down state while it's on the page. I have this much working, but as soon as the mouse moves off the button, the mouse_out function is called, thus playing the mouse_out animation.
Here's the relevant part of my code, with only one instance of each repeated part of code to save space:
ActionScript Code:
import flash.events.MouseEvent;
var getAbout:URLRequest = new URLRequest("about.php");
var pageURL:String=ExternalInterface.call('window.location.href.toString');
[Code].....
View 2 Replies
Jan 22, 2009
recently seen this scroll bar on koko kaka's site [URL]
The thing I noticed though is that if you click on the bar and move outside of the browser window, the scroll bar moves just like a real browser.
How would you be able to keep the event fired like this??
Each time i move out of the browser the MOUSE_DOWN event stays triggered even if I release the mouse button is released.
View 14 Replies
Feb 12, 2012
I have a question about Mouse_Down vs. Click.I read that if
Mouse_Down/Up listeners are used, they'll interfere with the CLICK listener, so
I want to see if it's doable something like this
use a MOUSE_DOWN
listener, by default when it's triggered will turn an _isclick true, but if it's in the DOWN state for more than 150 ms, then _isdown is true. This way,I can click on an MC and trigger an action, or I can drag it if I decide to keep the DOWN state more than 150ms.Note, that the goal is for the same value to check itself at 0ms and enter the _isclick state and then at 150 ms to enter _isdown state
View 2 Replies
Dec 17, 2009
i have an xml file and i want my code in flash to read it line by line but its only showing the first line out of 5 lines.Below is the code:
var NigeriaNumber:Number;
var stateName:String;
var year:String;
[code].....
View 0 Replies
Jul 17, 2009
I'm trying to set the MovieClip I MOUSE_DOWN on to the highest index using
var mcToMove:MovieClip;
mcToMove = this[e.target.parent.name][e.target.name];
trace(mcToMove is MovieClip); // "true"
setChildIndex(MovieClip(mcToMove), (this.numChildren - 1));
but I think it's only giving me the e.target.name and not the whole path that includes the parent mc as well.
View 5 Replies
May 26, 2010
i'm attempting to implement a mouse event where Mouse_Move can only occur if Mouse_Down. i could introduce a boolean that would toggle during Mouse_Down and Mouse_Up that could work, but is there a better way, perhaps a more official way, of doing this?
View 1 Replies
Jun 8, 2011
I'm developing a word game for mobile and I'm trying to solve a bug:I have many squares with letters and when the user mouses down (or touches) a letter, the app starts to put together a word. Every letter that is moused over is added to the word and I have a textfield that shows the current word the user is trying to put together.Every letter added to the word (text.change event) I check if this is a word that is available in my dictionary (array of words). If this word is correct and exists, I want to paint the color of the textfield showing the word so the user would know that this is a valid word, even if he doesn't know the word.
My problem is that this code runs and traces correct and in the right moment (the trace "word exists" is being called when I add a letter that makes the word valid. But the painting of the word just happens when the text changes again. This causes the app to make the word blue after adding or removing a letter from a "valid" word, but in this case I want it to happen immediately when the user reaches a valid word.Can the problem be happening because the mouse is down?
Code:
if (dict.wordExists(word))
{
[code]......
View 1 Replies