Actionscript 3 :: Flash Cursor Remains Arrow?
May 20, 2011
I've got an actionscript project (code I inherited) in which the cursor remains an arrow at all times. Even when I set a Sprite's buttonMode, nothing changes.
mySprite.buttonMode = true;
mySprite.useHandCursor = true;
mySprite.mouseChildren = false;
I've searched the project for terms like 'cursor' and the above 3, but I can't find anything.Is there some global setting somewhere that disallows cursor modification?
View 1 Replies
Similar Posts:
Dec 7, 2005
does anyone know how to make the initial text in an input text box disappear once your cursor changes from the arrow to the type cursor? For example, I have an input text box which has the text visible saying "enter your email address here" I want this text to disappear automatically when the user goes to type something there...
View 3 Replies
Sep 8, 2011
I have a Flex application using ActionScript 3.0. For any element in my application I want to set the mouse cursor to -- which is used specifically to indicate that a "move" or "drag" operation is allowed -- whenever the mouse hovers above the element
View 2 Replies
May 16, 2009
why wont this work for a movie clip where _mc is the stage on flash cs3 and dv_mc is a movieclip on the stage?
[Code]....
when compiled, its still using the arrow for mouse cursor and not the hand...
View 1 Replies
Aug 11, 2002
how I can keep my cursor an arrow when I mouseOver a button or mc, instead of it changing into a hand.
View 4 Replies
Aug 19, 2009
How can I skin, or otherwise change, the default cursor (white arrow) displayed in a Flex application?
View 3 Replies
Nov 21, 2011
I am using removeChild() to remove a MovieClip. And via tests, I can confirm that it's working fine ( stage.contains(mc) returns false ). But the MovieClip still does not seem to be removed, as if the stage is not updated correctly.
View 1 Replies
Feb 26, 2012
[URL]how do i stretch the movie to fill the entire white area which is set to be 500 to 350 px (please see pic)
the code:
<object type="application/x-shockwave-flash" data="videos/player.swf" width="500" height="350">
<param name="movie" value="videos/player.swf">
<param name="quality" value="Best">
<param name="allowFullScreen" value="true">
[code].....
View 2 Replies
Jul 10, 2011
In as3, how do you change the cursor to the systems default busy/wait cursor (e.g. the spinning wheel on a mac)?
View 2 Replies
Jul 20, 2010
i have a movieclip with some buttons with blur, when you rollover on them they become normal, when you rollout they return blur.
what i would like to do is that when you press on of them it becams normal and remain in that state untill you press on onother button.
Is there a way to do this? maybe something that prevent onRollOut when you pressed the button?
My code:
Code:
import gs.*;
this.buttonMode = true;
TweenMax.to(this, 0.5, {blurFilter:{blurX:5, blurY:5}});
[Code].....
View 10 Replies
Jun 10, 2008
Using Flash 8, AS 1/2. Here's what I'm trying to do... I've got a slide show sort of thing. Five different scenes. You can navigate scene to scene with simple button navigation. One half of the slide show displays a constant image. The other side displays a different image depending on the scene you're in. Along with each different image, there is a caption for each image. When you click on the caption, text from an external XML file is displayed.
I got that far, and I thought everything was working perfectly. Then I changed scenes. The scenario I'm at right now: Scene 1 loads. I click on the caption. The text from the external XML file displays. Click the navigation button to go to Scene 2. The text from the external XML file that displayed when I clicked Scene 1's caption is displayed. If I click through the rest of the scenes, the text that was displayed when I clicked on Scene 1's caption is displayed throughout. What I need is this: When I click the caption in Scene 1, the text should appear in show_desc. When I go to another scene, there should be no text unless I click on the caption for that scene. I'm not sure how to accomplish this, and I've been trying everything I could think of/could find with no success.
EDIT: I figured out that problem, sort of. The caption is set as a button. It's got an onRelease function, so when it is released, it displays the XML data. I had a function wrapped around the first function, which delayed the XML-display function by one second. It seems that, with that function added in, it was just continually asking for the XML data over and over and over again. The thing is, I do need that delay to occur. What I was using before was:
[CODE].....
View 14 Replies
Nov 4, 2009
how do I join so that when you press a button, it remains pressed?
View 1 Replies
Sep 3, 2010
i made a webiste with bg sound, home, portfolio, gallery, contcts. This are the links. when click portfolio, which contain a flv file, when clicking the flv file bg music stop and video will play smoothly.But if i navigate to other links the sound from the flv remains their and my bg music not playing also..
View 1 Replies
Jul 3, 2011
how to get the action pannel displayed again???? It worked until this morning, and then quit. I tried clicking both F9 and window/actions, no luck though. I have reinstalled Flash, restarted my PC. Same.
View 2 Replies
Oct 28, 2011
I've created an mc which functions as my map and controls to go with that which allow the map to be moved around and key points navigated to and zoomed in on at varying zoom levels.I'm using scaleX and scaleY to scale the map mc and a list of x and y positions to correctly position the map for each key point. The map mc starts at 1:1 scale ratio with the screen and it's registration point is at 0,0.When I want to go to a certain area I perform this calculation (offsetX and offsetY are the center of the screen and posX and posY are predined offsets on the map):[code]
I now need to implement a zoom in / out function and this is what I'm struggling with. The zoom should use the center of the screen as the reg point for the scale, so I've been trying something along the lines of the following to get the correct x and y position to set after the scale:[code]I know this is wrong but I've shown this to give you an idea of my train of thought, I need to work out what the new x and y will be to ensure that the area that is being zoomed in on, stays in the center of the screen.So in my mind this gets the distance from the current position of the map relative to the center point of the screen (offsetX, offsetY) then scales that distance by the new scale.
View 6 Replies
Feb 24, 2011
I loaded a flv into a uiloader. I have 4 buttons which load different projects in. A quiz, an animation and a video. Works great apart from when you click the buttons either the flv sound remains or if you click the flv button I have multiple instances of the audio. The main file AS3 is
[Code].....
View 0 Replies
Jan 3, 2010
I have a button on screen which is removed with removeChild when a certain timer event fires. However, if my mouse is on top of this button when the timer goes off, the button is removed but the mouse remains active (it's still a little hand cursor) and as soon as you move the mouse at all, the button fires its MOUSE_OUT event.
What I would like to happen is for the button to disappear and if the mouse is above it the mouse will simply go back to an arrow cursor and most importantly the MOUSE_OUT event won't be fired (in my case the event triggers a sound effect).It seems to me that the way to make that happen would be to set my button to null. However I use this button every time the user completes a level so it seems wasteful to null it and rebuild it ever time when i can simply add/remove it.
View 7 Replies
Aug 20, 2009
how do you disable the hand for a button instance so the pointer remains? this is for AS3.
View 7 Replies
May 5, 2011
I've used a standard skin on an FLVplayback component which loads and plays perfectly. The problem arises when I enter fullscreen mode and then leave it again. Once I've done this, the video remains on the stage irrespective of what frame I'm on. I can even change scenes and the video remains in the middle. I haven't even added the video using actionscript so I don't really understand how it could possibly stay on more than the frame its inserted in!? At the moment I've used no ActionScript to control the video. I apologise if I'm missing something, this is the first time I've dealt with videos.
View 8 Replies
Mar 29, 2012
I'm using Flash CS5 and Actionscript 2. I'm created a multi page training document with some pages containing videos. I have a set of XML program generated videos that work great until I use removeMovieClip(); when exiting the page. I use this to kill the video before I get the the next page.When I come back to the page the code I have regenerates the list. But when I play the videos I only get sound and no video. Sometimes the video black window appears and then immediately disappears or nothing appears but the sound starts playing.
Here are the relevant pieces of code:
import mx.video.*;
//Creating the mc which will contain the FLVPlaybac
[code].....
View 7 Replies
Apr 9, 2010
I'm trying to parse an XML file and create an object array from its data. The data is converted to MediaAlbum classes (class of my own). The XML is parsed correctly and the object is loaded, but when I instantiate it, the Albums array is of zero length, even when the data is loaded correctly.I don't really know what the problem could be
import Nem.Media.*;
var mg:MediaGallery = new MediaGallery("test.xml");
trace(mg.Albums.length);
[code].....
View 1 Replies
Feb 9, 2009
I'm in the process of building a Flash AS3 navigation for a client's website. The horizontal navigation has five main links, and a secondary navigation will drop down under three of them on rollover (this part isn't complete yet). The rollover and rollout states are animated: on rollover they gradually change color; on rollout they gradually change back to the original color.Well, I've finally gotten the code figured out (my first foray into AS3 after finally being comfortable with some things in AS2!). However, depending on how you move the mouse (i.e., if you move the mouse over the button too quickly), the rollover state remains on rollout and I can't figure out why. Can someone help? I also need to know how to designate an active state when the button is clicked (say, if you clicked on Projects, the Projects button would be highlighted (the rollover state) when you're on that page.The link to the in-progress navigation is located here: http:[url].... And this is the AS:
var homeLink:URLRequest = new URLRequest("../index.htm");
var mySound:Sound = new clickSound();
home_mc.buttonMode = true;[code]......
View 0 Replies
Apr 22, 2003
without using alpha 0% in Flash5
this is the problem.
i want to make a button invisible. however, since using alpha 0% will create colordifferences with 16bit colors, I want to use _visible = "0"; (like you would on a MC).
one option is to put a MC inside the button and make that invisible, but obviously you can't without an onClipEvent handler, but if you do so, it doesn't work.
puting the button inside a MC is the second option, and with the _visible command it works... however, it also stops the button from working.
is there a way to get a true invisible button that still remains clickable????
View 3 Replies
Jun 30, 2009
I've got a SWF loading others SWFs with this code:
[Code]...
Videos load, but audio remains from previous SWF. I thought removeChild would take care of it.
View 3 Replies
Sep 13, 2009
It lets you move a Cube, with the arrow keys on the keyboard. This is the code.
Code:
function hearKey(yourEvent:KeyboardEvent):void{
if (yourEvent.keyCode==Keyboard.RIGHT){
cube_mc.x+=5
[Code]....
I keep pressing the down key down and also press the left key down...
now it moves left...(not so good, i want it to move both left and down, how do i do that?)
now i release the left key but am still on the down key....
View 1 Replies
Nov 9, 2009
Is there a quick way to draw an arrow in Flash? I have seen postings from 2006 which say there isn't, but I wondered if there is a way in CS4?
View 1 Replies
Jan 8, 2012
I'm trying to program an arrow flying in the air, but the speed doesn't look well. But now the arrow moves very slow, here's a sample. (I know the arrow and the trajectory doesn't match 100%, it's just a sample.)
[Code]...
And now it looks good, but can someone tell me why I need to do this while in physics it normally would fly 15 times too fast?
View 1 Replies
Mar 18, 2010
I am making use of a custom cursor on itemRenderers in a List component. The custom cursor works just fine except when I mouse over the Text component which is a child of the itemRenderer at which point I get two cursors, the custom and an iBar one on top of the other.Here's the code:
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
[code].....
View 2 Replies
Apr 27, 2010
so the custom cursor I'm using works on the main timeline of my project. However, there are buttons in the application that load in movie clip pop-up windows and when this happens the cursor stays on the main timeline behind the movie clip resluting in the cursor not being seen. This is the code I'm currently using:
[Code]...
View 2 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