Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6718959
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:02:09+00:00 2026-05-26T09:02:09+00:00

Is it possible to change default system’s ‘hand’ cursor with some ‘my_cursor.png file in

  • 0

Is it possible to change default system’s ‘hand’ cursor with some ‘my_cursor.png” file in Flex 3 so whenever user points over button he can see my custom cursor? 🙂

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:02:10+00:00Added an answer on May 26, 2026 at 9:02 am

    Check these out:

    Unofficial:

    • http://www.switchonthecode.com/tutorials/flex-custom-cursor-tutorial
    • http://jessewarden.com/2009/01/making-a-cooler-cursor-in-flex.html
    • http://www.riacodes.com/flex/create-a-custom-animated-cursor-for-your-flex-app/

    Official:

    • http://livedocs.adobe.com/flex/3/html/help.html?content=cursormgr_3.html

    I would then tackle the mouseover as follows (Pseudo code):

    import flash.events.MouseEvent;
    
    import mx.managers.CursorManager;
    
    import spark.components.Button;
    
    
    public class ButtonWithCustomCursor extends Button
    {
        [Embed("/cursors/somecursor.png")]
        private var someCursor:Class;
    
        public function ButtonWithCustomCursor()
        {
            super();
            addEventListener(MouseEvent.MOUSE_OVER, onMouseOver);
            addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
        }
    
        private function onMouseOver(event:MouseEvent):void
        {
            CursorManager.setCursor(someCursor);
        }
    
        private function onMouseOut(event:MouseEvent):void
        {
            CursorManager.removeAllCursors();
        }
    }
    

    Every button I’d use in my app would then be an instance of ButtonWithCustomCursor and the behaviour would hence be available on all buttons in my application.

    Also, do remember to remove your EventListeners since they could lead to memory leaks.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to change the default text (something like looking for other iPhones
Is it possible to change the default background colour of black in Silverlight Encoder
I'm trying to know whether it is possible to change the default android OS
In Ruby on Rails, is it possible to change a default action for a
Using Ruby on Rails 3's new routing system, is it possible to change the
I need user download JPEG file from my app, however, when user change the
HornetQ by default is using file system and it's own Journals for persistence ,
I'm trying to change some system entities and I realize that on some system
Possible Duplicate: Change CSS Dynamically I need to change the height of a div
Possible Duplicate: Change icon on of an App in iOS 4 in run-time Is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.