ActionScript 2.0 :: Control Timeline With Mouse Position?

May 21, 2007

Does anyone know how to control an mc's timeline with the mouse position? So, when you click and drag right it plays the timeline forward and vice versa? I know how to do it with a slider, but I'm stuck on replacing the slider position with the coordinate where you click your mouse...if that makes any sense.

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Mouse X Position To Control Movie Position?

Feb 1, 2006

Basically the x position of the mouse should control the play position of a movie. Do I need something like an event handler (I'm not sure exactly what these do, but I've seen similar scripts that seem to use them).

View 2 Replies

ActionScript 2.0 :: Control Mc By Main Timeline Position?

Oct 2, 2009

I have a mc with thumbnail images ('thumbs_mc'). Within 'thumbs_mc,' I have mc instances that change alpha on rollon and rollout. When clicked, these mc instances also control the main timeline. That's all good and working fine.Now, however, I want something over each thumbnail to indicate which of them is currently active. (I thought about using the same mc for both the mouseover and current marker, but it's problematic since rolling off the mc sets the alpha to 0, destroying the current marker.)

So I figured that I could use another mc (one instance is 'mark_red_btn') and just control its visibility, based upon the where the playhead is in the main timeline.This is what I have in the first frame of the mc that contains the thumbs the mouseovers and the current markers:

mark_red_btn._visible=false;
if (_root._currentframe == "red") {
mark_red_btn._visible = true;
};

Unfortunately, it is not working. The mc 'mark_red_btn' stays invisible even when the main timeline is on the frame labeled 'red.'

View 9 Replies

As2 :: Control Mc Button Based On Main Timeline Position?

Oct 2, 2009

I have a thumbs_mc with thumbnail images. Within thumbs_mc, I have a transparent overlay_mc that functions as a button. Mouse over the overlay_mc and the alpha chages so there is a tint over that particular thumbnailWhen overlay_mc is clicked, the main timeline goes to a particular frame label.What I need to do is have the position of the playhead on the main timeline also determine the alpha of the overlay_mc so the viewer knows which thumbnail is playing.

View 1 Replies

ActionScript 3.0 :: Control A MC Position Based On Mouse Point?

Jan 20, 2011

I am trying to make an animation where the user can mouse over a small MC at the top of the stage, which controls the movement of another larger MC at the bottom of the stage.I am thinking that 'points' (which I know nothing about) might be the way to go. The other thing is that it needs to be fluid motion. Am I at least on the right track with points and mouse_move or is there a better approach for this?

View 2 Replies

ActionScript 2.0 :: Control The Timeline With The Mouse

Apr 15, 2007

I need to control the timeline with the mouse. For example, if the user rolls the mouse from left to right. it'll play the movie to the end frame. and if they go back, it'll rewind them to the original frame. Think of it this way, a (faked) 3d enviroment (series of separate images) which is rotating in back and forth and controlled by direction of the mouse. (i'm aware that i could potentially do invisible buttons along different parts of the interface, but that'll not work as smoothly as i need) I've searched for a lot of tutorials and examples, but can't seem to find anything that I'm looking for.

View 4 Replies

ActionScript 2.0 :: Controlling Timeline Via Mouse X Position?

Feb 10, 2010

how to controll the timeline via moving the moiuse in x (left to right ).basicly i wsant to shocase a sculpture of mine in a seemingly quicktime vr fasion. so i will take lots of images of the sculpture in difrent agles to get the 360 degreemovie. then import intoflash timeline. Then somehow i need a script to control the scrub the timeline images (to create the quicktime vr look )

View 17 Replies

ActionScript 2.0 :: Controling Timeline Via Mouse X Position?

May 15, 2005

i want to know if anyone can tell me how to controll the timeline via moving the moiuse in x (left to right basicly i wsant to shocase a sculpture of mine in a seemingly quicktime vr fasion. so i will take lots of images of the sculpture in difrent agles to get the 360 degreemovie. then import intoflash timeline. Then somehow i need a script to control the scrub the timeline images (to create the quicktime vr look )

View 3 Replies

ActionScript 3.0 :: Mouse Speed Timeline Control

Feb 25, 2011

Here is my code

[Code]...

Works fine.. but i want to add a code on a new frame saying

[Code]...

But the previous script is still in effect no matter what frames i put the AS in..

View 2 Replies

ActionScript 3.0 :: Timeline Controls Based On Mouse Position?

May 25, 2009

I'm trying to make a faux 3D rotation animation where if the user mouses to the right the object rotates right and if the user mouses to the left the object rotates left. Depending on how far they move the mouse the rotation should speed up or slow down.I spent a lot of time making an object in 3d studio max and importing the animation of rotation as JPEGs onto the timeline. I figured the most efficient way to go about this would be to make the mouse control the timeline instead of the object itself.

View 4 Replies

ActionScript 3.0 :: Control The Timeline Using The Mouse Cursor Speed?

Feb 23, 2011

here is my code

ActionScript Code:
initializeMovie ();
var prevPt:Point=new Point(mouseX,mouseY);

[code]...

the if(speed == "100") is not working properly.. i want to be able to control the timeline using the mouse cursor speed..

View 2 Replies

IDE :: Cursor Position Not Mouse Position In Input Text Box

Nov 12, 2009

I have an Input Text area that users can edit and then submit. I need to be able to show, on screen, the cursor's current position as they type. I don't need to know where the mouse is but all work-arounds I've found so far can only tell me the mouse position. The font for the text is 'courier' or 'courier new' and the Input Text area is scrollable.

View 8 Replies

ActionScript 1/2 :: Control A Mc Timeline From The Main Timeline?

Aug 30, 2009

On my main timeline, I load a mc from the library with:

text_content.attachMovie("text_content", "text_content", 10);
There is a marker inside this mc called "news". I need a script in the main timeline that will gotoandStop "news" within the "text_content" mc.I have tried, amongst others

[code].....

View 4 Replies

ActionScript 2.0 :: Tween From One Position To Mouse Position?

Mar 28, 2010

tween from one position to mouse position

View 1 Replies

ActionScript 1/2 :: Focus On Mouse Position When Zooming Movie Clip Using Mouse Wheel?

Oct 29, 2009

I have a map application that when I use the mouse wheel the map will scale up or scale down. The next thing I want to do is to focus on the mouse pointer while zooming on the part of the map.

I have this code...

function focusMousePosition(){    onMouseMove = function (){        Stage.width = _root._xmouse;        Stage.height = _root._ymouse;        updateAfterEvent();    }}
var mouseWheelListener = new Object();var wheelNum:Number;
mouseWheelListener.onMouseWheel = function(wheelNum){    focusMousePosition();    if (wheelNum > 0){        map._xscale *= 0.9;        map._yscale *= 0.9;    }else{        map._xscale *= 1.1;        map._yscale *= 1.1;    }}Mouse.addListener(mouseWheelListener);

View 3 Replies

ActionScript 3.0 :: Zoom To Mouse Position Using Mouse Wheel?

Mar 9, 2010

Code:

addEventListener(MouseEvent.MOUSE_WHEEL,mouseWheel);
function mouseWheel(event:MouseEvent) {
Map.scaleX = Map.scaleX + event.delta*.01;
Map.scaleY = Map.scaleX;
}

The problem with this code is that it scales from the registration point (0,0). Due to the other transformations I'm doing to this image at various times, it isn't possible to move the registration point. The image is larger than the stage and the user is able to drag it around. I want the mouse wheel to zoom in on the place the mouse is hovering over (or at a minimum...the center of the "view" they have...aka the stage)I tried doing this:

Code:
internalPoint = new Point(Map.mouseX, Map.mouseY);
externalPoint = new Point(stage.mouseX, stage.mouseY);
var matrix:Matrix = Map.transform.matrix;

[code]....

Which, incidentally, I'm using that whole portion of code to zoom into the state they will be in when they use the mouse wheel.

View 1 Replies

ActionScript 3.0 :: How To Control Car Y Position

Jun 14, 2009

i am trying to create a simple movie clip of a car that can drive on on a curvey floor. its from a side view.i have managed to control the car movement well enough but i cant figure out how to control the car y position so its always above the floor level.

View 1 Replies

ActionScript 3.0 :: Mouse Hovering - When The User Moves Mouse Down, More Text Appears From The Bottom And When Moves It Goes Back To The Original Position?

Apr 21, 2010

I have MC masked with TEXT,when the user moves his mouse down more text appears from the bottom and when he moves it goes bakc to the original position...I do not want the mouse wheel .. I woudl like to do it by mouse hovering...

View 5 Replies

ActionScript 2.0 :: [CS3] MC Control By Cursor Position?

Jan 27, 2009

Basically I want an MC to appear or disappear depending on the mouse proximity to it. Say for example I have a nav which only becomes visible as the mouse moves to the right hand side and then disappears as it moves away.

Previously I have used the old invisible button trick that triggers the MC as the mouse moves over it. Yes im well aware that is frowned upon and is not 100% effective but as of yet thats the only method I know.

View 4 Replies

Flex :: Set The Scroll Position For A Spark List Control?

Aug 9, 2010

How can I set the scroll position for a Spark List control?

View 1 Replies

Flex :: Set Caret Cursor Position In RichEditableText Control?

Dec 1, 2010

Is there a method to set the caret position within a RichEditableText control? The control's contents can contain errors that the user must fix which are navigated though via Next/Previous buttons, and during the navigation I would like to set the caret cursor to the end of each error within the text.

View 1 Replies

Control A Spark Datagrid's Scroller Position In Flex?

Aug 22, 2011

I'm using the new Spark Datagrid for a project, but I must confess the scroller is annoying me a little bit, so I would like to have some control over it.

View 1 Replies

Flex :: Control Cursor (carat) Position In TextInput?

Sep 15, 2011

I need to handle diagraphs and then convert them on the fly to the proper unicoderepresentation. For example when the user types in:SxMy app needs to replace it with:ow, I've been able to do the replacement no problem. The issue though is that once I've done the replacement, the cursor goes to the beginning of the textbox rather than the end.As I'm trying to update the user's text on the fly, this obvious doesn't work.

View 3 Replies

Control Timeline And FLV Together?

Dec 3, 2009

Where can I find ready-made buttons that will control an FLV and a timeline together? I have a swf with an FLV and I animate images and phrases on a movieClip timeline timed to what they say in the flv. I set up cuepoints that trigger the animations, so when users scrub, pause, etc. the timeline eventually catches up with the FLV, but it would be a lot nicer if the pause, scrub, etc. would do the same to the timeline and there was no lag time.

View 1 Replies

ActionScript 3.0 :: Timeline Position Of Movie?

Sep 2, 2010

How to find Timeline Position of my Movie.

View 16 Replies

ActionScript 2.0 :: Possible To Be Able To Remember Timeline Position

Oct 28, 2006

just wondering if it is possible to be able to remeber the timelines position:example:

- the user is say on frame 5 or whatever frame the user is up to (its a quiz senario);
- the user then clicks a link which takes them to frame 15
- when the user clicks on the back button this will take them back to the page which they were viewing whatever that may be for each user.

is this possible or is there any tutorials about it where i can learn this?i have seen one example of it being done where it remebers what level you where at but i ca't remeber where i saw that example/tutorial

View 11 Replies

ActionScript 1/2 :: Script A Scroller Button To Control The _y Position Of A Movieclip?

Oct 4, 2009

i'm wondering how i can script a scroller bar to smoothly control the _y position of a movieclip on the flash stage, so when the user clicks and drags the scroll button up and down the scroller bar the movieclip scrolls to the relevant position alongside it. i have the button and the movieclip seperated, but both on the same parental level on the timeline.i'm currently using motion tweens (controlled by clicking the up and down buttons of the scroll bar) to animate the movieclip's and the scroller button's_y positions and i'm scripting the fla file in AS2.

View 4 Replies

Actionscript 3 :: In Combobox Editable Text How To Control Cursor Position

Jan 31, 2011

I have a class which inherit from ComboBox .i want to implement a function to control the position of the cursor.Any builtin function?

// Copyright (C) 2003-2006 Adobe Macromedia Software LLC and its licensors.
// All Rights Reserved. The following is Source Code and is subject to all
// restrictions on such code as contained in the End User License Agreement

[code].....

View 2 Replies

Actionscript :: Control The Depth (layer Position) Of A Flash Video?

Jun 4, 2009

I would like to place a video object above one movieClip instance ("mc"), but below another movieClip instance ("mc_top").

I instantiated the _root.flashVid object by dragging a "New Video..." from the Library to the stage, and giving it the instance name "flashVid".

I create mc, then paint a blue box, then I create mc_top, and paint a yellow box. The flashVid instance is on the Stage (_root) from the beginning. Now how do I get the flashVid above "mc" but below "mc_top"?

// Create movieclips and paint boxes.
var mc:MovieClip = _root.createEmptyMovieClip("test",
_root.getNextHighestDepth());
mc.beginFill(0x0000ff, 50);

[Code].....

View 3 Replies

Using Keys To Control A Timeline

Jan 18, 2010

in AS2 how would i use the down arrow key to make the timeline play? at the moment i have this and i presume i need to put something after that to make it play. [code]but i presume this is totaly wrong because the "stop();" doesnt stop the clip when the "if (Key.isDown(40))" bit is after it.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved