ActionScript 2.0 :: MX04 To Make The Mouse Cursor Start At A Specific Coordinate Upon Enterig A Scene?
Jun 6, 2010
I'm trying to make a game of sorts. I have a button that you need to click that is in the center of the screen. Upon clicking it, it goes to the next scene.What I need here is for the mouse cursor to start in the upper right-hand corner of the stage of the second scene whenever said button is clicked. Not just a movieclip of a cursor, but the actual mouse itself, since it needs to be able to click a button on the other side.Below I've included an example of what needs to be done (not my actual game, but it shows the problem that I'm having. IT IS AN MX2004 FLA FILE.
View 3 Replies
Similar Posts:
Mar 14, 2005
I'm trying to get the cursor to start in a specific text field a la:
Code:
Selection.setFocus("inputTextInstance");
The problems:
When previewing just the swf: * The cursor doesn't blink, but the text field is selected.* After entering text, pressing backspace doesn't work, you need to press shift+backspace to delete text.
When previewing the swf embedded in html in a browser: * The cursor doesn't select the text field automatically - I need to click on the swf then hit tab, or select the text field directly.
So really, I'm looking to get it so that when the swf is loaded in html, it pops up with a blinking cursor in that text field, and I thought the setFocus would do that, but it's not working for me.
View 1 Replies
Oct 17, 2006
I'm working on a presentation to be presented on a Trade Show. It have an inicial movie, running in loop, but with a Menu bar, so people could stop the movie and go to a product catalogue. I want that when people stop looking the catalogue and go away, the presentation go (after a few minutes) to the initial movie loop again.
View 4 Replies
Aug 30, 2011
I have a movie clip on the main timeline. This movieclip has buttons that I want to play different frames in scene 1.
At the moment, this is the code I'm using in scene 1.
[Code]...
I'm getting the error below but have no idea what I should be doing.
[Code]...
View 3 Replies
Aug 21, 2009
Im trying to make a cursor display when rolling over a movieclip only between a specific range of frames. with this code the cursor shows up in the range of frames but doesnt follow the mouse, and the mouse pointe ris visible
Code:
thisFrame = _root._currentframe;
if (thisFrame > 50) {
if (thisFrame < 90) {
[Code].....
View 2 Replies
Nov 7, 2009
this is what i've managed to do so far:
[URL]
But as you can see it isnt smooth at all! Does anyone have any better code i can use?
This is the code i have written to do it:
Code:
var px = mouseX;
var py = mouseY;
this.addEventListener(MouseEvent.MOUSE_MOVE,moveMouse);
[Code].....
FLA: [URL] (you might have to right click on that and click "Save target as"
View 6 Replies
Feb 1, 2011
I creat a custom cursor in Flash.
function inicialGames():void {
cursor = new Cursor;
addChild(cursor);
Mouse.hide();
[code]....
But when add other object whit addchild(); mouse cursor stay under the other object and is not visible,but when I click is work;How i make a mouse cursor visible over the other object;
View 1 Replies
Nov 19, 2011
Here is the action scrip that I created. Correct it if you can.
Process.visible = false;
Cycles.visible = false;
stop();
[Code]....
View 3 Replies
Aug 11, 2009
so I have some buttons that, as of right now, simply trigger the scene to move on while at the same time killing some particle effect animations I have spawning when the animation is idle. What I now need to do is make these events move on to a specific scene AFTER the rest of the scene's animation has played out (about 400 more frames) I'm figuring that the gotoAndPlay command has to be tied to some sort of timer variable that I would have to figure out based on my fps. Or maybe there is a way to set up a timer directly tied to a certain amount of frames allowed to go by. I'm pretty noob at actionscript, so keep that in mind. Here is the script at the point where the animation pauses to await user input on the buttons:
[Code]....
View 4 Replies
Feb 18, 2010
I've seen a really cool flash website and im trying to incorporate some of its features into my own website. It resizes its flash file depending on your screen resolution and it uses the mouse curser to navigate in all four directions around the site... it can be found in the link below...
[URL]
Does anyone know how i can make my flash file fill the screen, and secondly how to navigate the flash file using the mouse?
View 3 Replies
Jan 11, 2007
Is there a way to use an loadMovieNum code at the beginning of a frame and make it load at a specific x and y coordinate? When I use this code it doesn't work...
[AS]
loadMovieNum("bodyline.swf", 5);
this._x = 43.3;
this._y=130;
[/AS]
It changes the coordinates of the main background image, not the position of the movie it just loaded. I tried something like this....
[AS]
loadMovieNum("bodyline.swf", 5);
"bodyline.swf"._x = 43.3;
"bodyline.swf"._y=130;
[/AS]
View 3 Replies
Jan 27, 2011
ive made a button in the scene 1 which i have managed to navigate to scene 2 but when i click the button it goes to scene 2 but displays everthing that is in scene 1 in scene 2, how can sort this out so upon the button click in scene 1 it goes to scene 2 and only display content in scene2.
[Code]...
View 1 Replies
Nov 25, 2009
I am making an online portfolio and I have created the following scenes:homeaboutontactright now, I have three movie clips on the home screen that I have created into buttons.
on (press) {
go to Scene 2, frame 25 ?????????????????????
}
What I would like to do is after someone clicks on the button, it should then jump to another scene's specific frame number. So for example when you press the "about" button, the playhead goes to the "about" scene to 25th frame. Same thing for each button
View 3 Replies
Dec 2, 2009
How do you move a child, For example, I use the drawRect command, and have a rectangle, how do I have it move
View 1 Replies
Dec 23, 2009
I need to make the cursor turn into to a hand when the user is with the mouse over the movie clip. when I use the following code the entire movie turns into to a hand but I just want it on my movie clip.
[Code]...
View 1 Replies
Jul 30, 2009
I need to make a bullet launch at different degrees (anywhere from 1-360) from a specific point towards the mouse.
View 3 Replies
Aug 31, 2010
Working on a small kiosk app that runs in Firefox for Ubuntu. Mouse.hide() works for everything else, but the cursor is showing up in Firefox for Ubuntu
View 2 Replies
Jan 31, 2004
I am trying to make a simple game in flash it is a target shooting game i would like to make it so that the mouse cursor dissapears and a crosshair is shown as the cursor (if you get what i mean). I have created the crosshair and made it into a graphic symbol called: "crosshair" so what is the script i need to make it the cursor for the game
View 3 Replies
Jun 5, 2010
in the swf, when my mouse reaches a dynamic text box, the cursor always changes to the 'I' cursor and the text can be highlighted.how to prevent this from occurring?
View 1 Replies
Jun 21, 2010
how to change the cursor when move over a chart in flex i have tried useHandCursor="true" but it's not working in charts.....and it should show values also....
View 2 Replies
Nov 4, 2004
You might think that this is a stupid question, since everyone who knows a little bit of actionscripting, knows that this can be achieved with onRollOver ... But that's not exactly what I'm looking for.
I have a small tooltip which follows the mouse and asks the user to click in order to close a picture. The tooltip follows the mouse using startDrag("tooltip", true);
But I'd like to remove the tooltip once the user moves the mousepointer outside the picture.
Though, when you use onRollOver, the mousepointer changes into a finger. This is not what I'm looking for since the picture than functions and looks like a button.
So is there any way to detect if a mousepointer is over a movieclip, without changing the cursor?
View 3 Replies
Nov 4, 2004
I have a small tooltip which follows the mouse and asks the user to click in order to close a picture. The tooltip follows the mouse using:
startDrag("tooltip", true);
But I'd like to remove the tooltip once the user moves the mousepointer outside the picture.
Though, when you use onRollOver, the mousepointer changes into a finger. This is not what I'm looking for since the picture than functions and looks like a button. So is there any way to detect if a mousepointer is over a movieclip, without changing the cursor?
View 1 Replies
Sep 30, 2005
i want to make one circle follow the mouse cursor, inside another circle. Similar to an eye looking at the cursor. Ive attached an example.
View 4 Replies
Jan 25, 2006
Is it possible to make a custom cursor with restraints (meaning you only see the cursor when you put your mouse in a certain spot, by defining both the max and min of the x & y), that is placed inside a movie clip; then make the movie clip move on the stage when you click certain buttons.
[Code]...
View 1 Replies
Mar 27, 2009
It also need to have some random scaling to it, maybe something like this code below.
Code:
targXscale = 50;
targYscale = 200;
[code]....
View 1 Replies
Jul 28, 2011
i have a darkBlueRect rectangle sprite and a copy of the same sprite with a larger scale and a lighter color - lightBlueRect.i'm attempting to shift the location of the lightBlueRect according to the mouse.x location when the mouse is moving over the darkBlueRect. this way if the mouse is on the right of the darkBlueRect than the location of the scaled up lightBlueRect will be on the opposite side and shifted towards the left proportionate to the mouse position and scale. in addition, the lightBlueRect must appear "locked" to the darkBlueRect so lightBlueRect.x must never be more than darkBlueRect.x and lightBlueRect.x + lightBlueRect.width must never be less than darkBlueRect.x + darkBlueRect.width.
[code]...
View 1 Replies
Nov 14, 2008
The flash site I'm working on has an underwater theme, and I think it would be neat to have it make sort of "whoosh" sound when the mouse moves fast, like the sound that comes from moving your hand through water, and I was wondering if there was a way for actionscript to know when the mouse moves quickly. It's not comepletely neccessary, just something that would be cool and add to the underwater feel of the thing.
View 1 Replies
Jul 22, 2010
I am using event.event.localX to get the x-axis but it is with reference to local coordinates. How can I get or pass the value of the HBox's xAxis that is clicked by the user so that I can add it in the xAxis of the local coordinate. In other words, I need the global coordinate value? (i.e. x-axis & y-axis)
View 1 Replies
Jul 22, 2009
im trying to make an object move away from the cursor when cursor goes near it, so basically you cant click on the object......
View 9 Replies
Apr 17, 2004
I have a movie with 4 or 5 scenes. How can i make the movie jump from scene 1 to another scene by clicking on a button?
View 5 Replies