Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Changing Pointer Icons...



So, normally the mouse pointer is the arrow. When it's over something with an on(press) event or some such, it turns into a "pointing finger." Is there any way to force it to change to some other icon? Specifically, I have a draggable movieclip that I'd like to control with a "grabbing hand" pointer, but Flash insists on making it a "pointing finger," which I feel is a little confusing to users. Is this possible at all?



KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 05-25-2004, 10:32 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Changing Pointer Icons...
So, normally the mouse pointer is the arrow. When it's over something with an on(press) event or some such, it turns into a "pointing finger."

Is there any way to force it to change to some other icon? Specifically, I have a draggable movieclip that I'd like to control with a "grabbing hand" pointer, but Flash insists on making it a "pointing finger," which I feel is a little confusing to users. Is this possible at all?

Changing .SWF Icons...
How do I change the icons of .SWF files?

Help Changing A Hand To A Pointer
I have a movie that has a cool rollover effect. It is just meant to be a cool effect though and not a link. The pointer automatically changes to a hand when I use "on rollover play".

Is there a way to just keep it an arrow pointer instead of turning into a hand?

Thank you!!

Changing Mouse Pointer
How do i change the mouse pointer to an image file when it rolls over a button. Then i want it to animate (play a movie clip) on the button when it is pressed.
help!

Changing Mouse Pointer
Is there a way of stoping the mouse pointer from becoming a pointing hand when moving over a button.

I still need the button to retain its functionality but just not change the mouse pointer i.e. I dont want to use a mc with a hittest

Thanks
-Rob

Changing The Mouse Pointer
2 Questions:

1. How do I make the I beam disappear when mousing over a textfield? Mouse.hide(); does not work for that.


2. Does anyone know how to make the mouse change to something it can normally only change into under preset circumstances? Like, I want the mouse to change into a "hand" icon, not when it mouses over a button, but when it mouses over a mc I built?

Thanks.

Using Bitmap Writing Actionscript And Changing Icons/skins? Best Way To Do This?
I have a few questions sort of..


Lets say I have icons or something.. And when you click, it changes to a different one.. Then you click something else and it changes back..

Whats the best way to do this using the Bitmap scripts?


Is there a way to just change the picture dynamically through the library without changing the MC name?

Changing Icons (frame) In Multiple Swfs With Localconnection
Hi,

I have a flash audioplayer that reads aloud the text on the pages ...there are often 2 or 3 flash films (swfs) on each page ...

Whenever the user clicks a player I want to make sure it stops all other sounds running before starting its own ... that can be accomplished with a simple stopAllSounds(); ... BUT it would also be nice to change the icon from playing (frame 2) to stopped (frame 1) in all the players that are put to silence ... How to do ?

This is a less than futile and feeble attempt ... do I need LocalConnection and how do you incorporate it in the as for the player ?

ActionScript Code:
function PlayTheSound(){
    if (_global.Playing == false){
        var lc = new LocalConnection();
        lc.connect("button_network");
        lc.send("button_network","StopTheSound");
        _global.Snd.start((_global.SndPos/1000), false);
        _global.Playing = true;
        gotoAndStop("frmPlaying");
    }
}


function StopTheSound(){
    _global.SndPos = 0;
    _global.Snd.stop();
    _global.Playing = false;
    gotoAndStop("frmPaused");

Tree Component - Changing Leaf Node Icons
Hi!

I know it's a long shot but I'll ask anyway...

I can change the defaultLeafNode Icon in the Tree component but I want to toggle the icons. Originally all leaf icons are crosses, but when a leaf node is clicked on I want to change the node to a tick and vice versa. I'm using the Tree as a way of displaying different categories that can be toggled on or off.

It's all woring really well except for this last hurdle. You'd think it would be simple enough, but no tis Macromedia.

I have seen an app. using the Tree component where they had different icons for each leaf node - but I think you had to hack the Tree class file - I'm not really comfortable with that. I'm not even sure I could change the leaf nodes during runtime anyway - maybe they can only be set when the Tree is rendered.

Anyway I tried this code but it didn't change the leaf node icons:

actionscript Code:






Original
- actionscript Code





catTree.dataProvider = catTreeDP;

var treeListener:Object = new Object();
treeListener.change = function(evt:Object)
{
if (_root.catTree.getIsBranch(evt.target.selectedNode) == false)
{
_root.select_cat(evt.target.selectedNode.attributes.data);
_root.catTree.setIcon(getIsBranch(evt.target.selectedNode), "tick");
}
};

catTree.addEventListener("change", treeListener);






 catTree.dataProvider = catTreeDP; var treeListener:Object = new Object();treeListener.change = function(evt:Object){   if (_root.catTree.getIsBranch(evt.target.selectedNode) == false)   {       _root.select_cat(evt.target.selectedNode.attributes.data);       _root.catTree.setIcon(getIsBranch(evt.target.selectedNode), "tick");   }}; catTree.addEventListener("change", treeListener);

Problems Changing The Pointer's Icon
Hi

www.marcellodolcini.it/test/ok.html

here you can find an swf that I have problems with.

when you go over the picture, the pointer changes into a hand.
Please try drag the image.

Everything seems ok with safari and with Internet explorer.

The problem comes when I try to open this html as a popup from another swf

Please open this:

www.marcellodolcini.it/test/test.html

In this page if you click on the green square you will open in popup "OK.html" (the same html opened before).

In order to open a big page without toolbar ecc. I used a javascript:

on (release) {
getURL("javascript:NewWindow=window.open('http://www.marcellodolcini.it/test/ok.html','PopUpWindow','width=,height=,left=0,top= 0,toolbar=no,location=no,scrollbars=Yes,status=yes ,resizable=yes,fullscreen=No'); NewWindow.focus(); void(0);");
}

Now please click on the green shape and open the popup window. Now try to drag the image as you did before. After you release the mouse you will see two pointers: an arrow and a hand. This with safari. If you look at the same html with Internet explorer everything is fine: when releasing the button of the mouse the pointer has a hand icon.

Do you think this can be solved? and also: why this problem occurs only when opening that "ok.html" with a javascript?

I am attaching a jpg to show the problem I have

Thanks
Marcello

Changing Mouse Pointer, No Problem, However
Is there a way to change mouse pointer, but leave the hand pointer when a link is hovered over. In other words, replace the arrow with an object, but when mouse is over link it still changes to the hand.

Thanks

Changing Mouse Pointer In A MovieClip
Is it possible to change the Mouse Pointer, not on the whole stage but only in a particular movie clip? Without having to call an external movie??

Changing Mouse Pointer For Over State Of Buttons
Hi guys,

Does anyone know if it's possible to specify what the mouse pointer will be when people mouse-over buttons. I want it to remain a pointer instead of changing to the little hand.

-cheers,
Luke

Changing Mouse Pointer To Hand Cursor
I've just recently upgraded to Flash CS3 and am figuring out how to shift from AS2 to AS3. I'm fairly certain I've gotten down most of what I usually need. one thing I haven't figured out yet is how to get a movie clip to use a hand cursor when it has mouse events added to it. in AS2, adding onPress did the job immediately but now, even with useHandCursor set to true, the cursor doesn't change. what am I missing?

Prevent Mouse Pointer From Changing OnRollover
Hi folks,

could anybody please tell me how i can prevent the mouse pointer-arrow from changing into the "hyperlink-hand" when rollOver a flashbutton?

thanks!

regards



[F8] Replacing Scrolling Icons To Rotating World Icons
Hi,

I'm working on this web site that needs to be changed. What I want to do is replace the scroll menu with a rotting world menu. Kinda like Itunes has in the album view.

I have a function called mover that makes the scroll menu move. So what I was thinking was that all I have to do is adjust that function.

This is roating world that I want to add:


Code:
function mover(count){
if(inited){
world.rotateY(360- ((360/15) * id), 8);
}
}


and this is the old scrollling menu


Code:
function mover()
{
if(_ymouse > 250 && _ymouse < 365)
{
var xdist = _xmouse - Stage.width/2;
this._x -= xdist / 25;
}
else
{
if(_xmouse > centerX)
{
this._x -= speed;
}
else
{
this._x += speed;
}
}

if (this._x>= -600)
{
this._x = -1500;
}

if (this._x<= -1501)
{
this._x = -601;
}
}


My question is why can't I just call the new function mover so that it grabs that information now?

Thanks in advance,
Bmcc

Mouse Pointer Does Not Revert Back To Any Other Tool Pointer
Hello!

This is something very odd: as I opened up a file that I'm working on, the mouse pointer was set to the Eraser tool. As I move it around the stage, it flashes, alternating between ther Eraser tool pointer and the actual tool that I had selected (Selection tool).

I cannot enable any other tool/pointer! If I click on any other tool, the pointer remains the same, although when moved around, as it flashes, the newly-selected tool alternates with the Eraser tool. Nonetheless, the only tool that actually does something is the Eraser.

Also, launching a new file shows the same behaviour, so it is not seemingly file-specific.

Has anyone seen this before? Is it a bug in the app, a setting...? How to fix?

Thanks much!

VicAtomic

Mouse Pointer Change From Hand To Pointer..
hey guys, m not quite sure on how to do this all i find is how to change to a customer mouse curser which i dont really wana have to do..

so.. is there a way to change the mouse cursor from the hand used on a mouse over to its usual default arrow?.. as i want sumthing to happen on a rollover but i dont want the cursor to change.

erm thanks for any help in advance.

khuti

Keep Mouse Pointer As Pointer
I created a dancying butterfly on this site: http://www.transformedwoman.com/beta.php and I would like to know how I can keep the mouse pointer as a "pointer" when someone tries to touch the butterfly (the butterfly runs from the mouse pointer).

Thanks.

Icons
Hi everybody,

I'd like to install an icon in case someone bookmarks my page. I know there is a tutorial in flashkit but I don't get it. I've got an icon (16x16) made my Image Explorer Pro. And now?

Thanx for your efforts

MX Icons
Hopefully this is a easy one, cause its been driving me crazy. What i am trying to do is change the default flashMX icons for fla. and swf. files so they use the old flash 5 icons. Which is easy to do, but every time i start up flash they all go back to the original default icons (which to me they just look to similar to each other) I am using win XP, if that would make a difference

Icons
1) Does n e 1 know how to put another icon rather than the internet explorer's or the netscape's logo at the address bar ?

2) I was checkin' on the tutorial called "creating an autorun for your .exe projectors", by william glenn. Apart from creating the autorun function, there's also this possibility of adding a custom icon. which is the format for the custom icon? (gif, jpg...) it's recommended size? (2k, 5k, etc...)

Thanx for reading !

16 X 16 Icons...
I've created a simple application using PHP, text files, and a flash interface that allows users to create small - 16 x 16 icons and upload them . You can also view the icons that others have made. Its quite good fun.

If anyone would care to contribute by making me an icon or giving feedback, it would be most appreciated.

Every single icon contributed will be displayed as part of my final year project at huddersfield university on June 6th (im trying to get at least 100 - currently on 64).

heres the link:

my symbol generator

cheers flash kitters!!!!

Icons
Can any1 talk me through creating an icon for my flash projector and switching the flash.exe icon with the new icon.

Icons
Hi, does anyone here know where I might be able to get my hands on the Flash Icons used to swf and projector? Thanks

[MX] Icons
Hi
this aint reali a AS question but cause it is related to games i thought there is no harm in asking!
So i was wonderin how game makers make an icon for there game?
Is there a special program if so what is a good one)
Or what??
Thanks

Aim Icons?
is there a way using AS to emulate or duplicate
the html way of downloading aim icons?


HTML Code:
<a href="aim:BuddyIcon?src=http://www.site.com/icon.gif">
OR

how could I make a link that would atleast give me a download promopt
with out opening an _blank page? if thats possible?

Aol Icons
Im trying to make aol icons out regular pics. How do make the pics a smaller size so the gif isnt so big the limit is 7168kb. It doesnt work when i resize the pics with flash.

Aim Icons?
is there a way using AS to emulate or duplicate
the html way of downloading aim icons?


HTML Code:
<a href="aim:BuddyIcon?src=http://www.site.com/icon.gif">
OR

how could I make a link that would atleast give me a download promopt
with out opening an _blank page? if thats possible?

I Got Icons...
i want them to fade into a color. How do i do it.

Icons FLA Help
Hello,
I'm trying to dissect the FLA file at:

http://<a href="http://www.ultrashoc...ed/27.html</a>

Does anyone know how to add links to the buttons? Everytime I do, I lose the animation of the buttons. Thoughts?

Rotating 3d Icons - U R G E N T
Hi fellow flashers,

anybody now how to (or can point me to a source fla) that demonstrates the best (and easiest) way to rotate an icon

many thanks in anticipation

Rob

Installing An .exe And Icons
Running a Flash MX projector from a CD. At a certain point, a button appears that asks the user if they want to place a link on their desktop to access a specific website.

An.exe file will be present on the the CD (a zipped or stuffed .swf that will runs a short teaser- the a get URL to the web address). Problem is, I want the .swf to be installed on the desktop for future use, but without the user having to do anything. In other words, silently beneath the Flash player.

Any ideas? Anything would be much appreciated!

Pixel Like Icons
Can anyone tell me how can I get that sharp pixel edge to buttons and other little icons? I have seen it quite a bit. egomedia have a similar look.
ego7
IF you look at all there icons they have that sharp edged pixel look.
Also go into the exec showcase and have a look at the buttons in there.
I'm trying to find other sites with this but I think this one demonstrates what I want to achieve.
Thanks.

Projector Icons
sorry if this has already been answered somewhere, but I have searched on this site. Just curious if there was a way to change the icon of the projector file from flash to a custom icon.

It would really come in handy for current projects...

thanks

Making PC Icons
Does anyone know of software to make PC icons. I want one for my project CD i am making. I posted this here, because it seems as if no one goes to that area anymore

Cool Icons
Hi!

Could someone show me how to do the cool icons on this
site ? how to make it glow and animate...

Samplefile are nice if someone have the time...

Thanks
Swed

http://www.neave.com/webgames/

Flash Icons..How?
As you know, some websites have flash icons of some popular companies on there website a required program, plug-in like macromedia flash, internet explorer, shockwave, etc etc. On this site http://www.special-air-service.org/ it has a intenet explorer icon, flash icon and another icon..and I wanna know how that was done..the flash icons, how was it done.

Flash Icons For Aim
I made a flash that is 60x60 in size (the right size) and it is not too big (in kb) but wen i make it an icon for aim (aol messanger) it will not play it just shows the first frame if u can help me plz plz plz help me


-------jeyez63

Forum Icons
Can anyone recommend a link to a site were i can get some icons for my Flash forum. I dont mean the smileys. i am talking about the folders on the very far left in the threads view.

cheers
Paul

Get Flash Icons
Can someone please point me in the right direction for the "get flash" icons - the ones that people would click on if they needed to install flash player.

Cheers

Browser Icons
whats the deal with this..?

many many sites seem to have these icons next to their web address , like the F that flashkit has..

how is this done? , its neat.

Icons For Url Address Bar
hello all

thought i would seek help from my fellow flashers.... does anybody know how to create and upload those sexy little icons at the start of the url address bar???

many thanks

$

Icons For Web Address
I'm trying to figure out how you make the little icon appear in the web address bar. Like how there is a F symbol for flash kit rather than the typical earth looking thing.

I can't figure out what this is called.

Thanks

[f8] Datagrid Icons
Hey guys,

I am working with the data grid component in flash 8 and i was looking for tutorials online that will help me get data from a database into the cells on the data grid. Well i found an example online and i figured out how to get the data in there but now i want to be able to have those icons/images clickable within the data grid. When someone clicks on the icon i want them to be able to pop up a window within flash (in my case it will be an attached movie). Can anyone help me with this problem?

here is the link to what im talking about: http://philflash.inway.fr/dgrenderer/dgiconrd.html

Customizing Icons
In perusing some previous posts I have come across an question. What exactly is the legal status of making and selling applications in Flash and are you allowed to put a custom icon on them? For instance, a game.

ContextMenu With Icons
Hi, i have created a context menu in AS 3.0 Flex, but i cannot find the way to add icon to the left of single item.


ActionScript Code:
public var contMenu:ContextMenu = new ContextMenu();
public var contactMenuItemDel:ContextMenuItem = new ContextMenuItem("Voice 1");
public var contactMenuItemMod:ContextMenuItem = new ContextMenuItem("Voice 2", true);

contMenu.customItems.push(contactMenuItemDel);
contMenu.customItems.push(contactMenuItemMod);

Is it possible add icons?

thanks
marcus

Flash Icons
Well anyone know where to get small flash icon symbol like the movie explorer icon cause i need it for my report.

History Icons
I have a page icon that I have designed, I want to use it as an icon that allows users to flick back to pages that they have clicked on in a flash movie. Like a history page. So say they go to the education section, a page icon will appear in the bottom part of the movie with an option to return back to that section. It is also so users can keep track of where they have been during the visit to the site.

Its just a thought that I have had, not sure if it has been used on anyone elses site. Would it be too hard to code?

Cheers

Copyright © 2005-08 www.BigResource.com, All rights reserved