Change mouse pointer for Assessment Simulation

Hi there-
I have an assessment simulation - and I need the users mouse
pointer to change to a crosshair (I think that's what it's called)
when the mouse is over a certain area on the screen. Is there
anyway to do this? I know it can be done in a demonstration for the
pointer in the demo.
Lynn

Authorware allows access to the system's mouse 'library', but
it also
allows full Windows File System access too...which could have
security
issues. So it's certainly possible...but, agreed, who knows
whether such
functionality would be integrated into CP.
Erik
CatBandit wrote:
> Can't be done, Lynn, but what a great idea for a new
feature!!
>
http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=15&6213=9.[/
> b]
>
> The way I see it, you could select the mouse-pointer
you want displayed on the
> user's machine from the mouse-properties dialog. But
wait! Now that I' said
> that, it occurs to me that any security program worth a
hoot might
> automatically block this, as it requires access to
Windows system files . . .
>
> Well, it's still worth requesting, and I think the
developers could figure a
> way around the security problems if there are any. Have
a great day!
> .
>
Erik Lord
http://www.capemedia.net
Adobe Community Expert - Authorware
http://www.adobe.com/communities/experts/
http://www.awaretips.net -
samples, tips, products, faqs, and links!
*Search the A'ware newsgroup archives*
http://groups.google.com/group/macromedia.authorware

Similar Messages

  • How to change mouse pointer to Arrow?

    When we move the mouse over any component in preview (or in SWF file), mouse pointer changes to u201Chandu201D. Is it possible to keep the mouse pointer to Arrow or any other custom mouse pointer in Xcelsius 2008 SP 4?
    Thanks

    Mouse over cursor is set to ARROW if the component is not selectable
    Eg:pie chard which has no drill down or no furthur selection is enabled then the mouse over by default is ARROW.
    If you have enabled any furthur selection for that component the by default mouseover is HAND .
    This holds good for all the components in Xcelsius (even in sp4) Except for tab set container component where the selection of tabs is displayed with Arrow  symbol.
    New features that sp4 provides is 1)Waterfall chart 2)Alerts are  supported for spreadsheet tables, and for
    combination charts.
    @Sri

  • Changing mouse pointer using setCursor()

    Hi- I've got a single threaded JFrame-based application in which I want to change the mouse pointer to indicate 'busy' when it's doing stuff eg. loading a file. So within my extended JFrame method for handling menu selections I've got:
    public class Layout extends JFrame
        // For items in the main menu
        // (the sub-class contains either a JMenuItem or JCheckBoxMenuItem).
        abstract class MenuItem implements ActionListener
            abstract JMenuItem menuItemAbs(); // get the menu item component
            abstract void handlerAbs(); // perform the menu's action
            // Menu item has been selected.
            public void actionPerformed(ActionEvent e)
                Cursor cursor = Layout.this.getCursor();
                Layout.this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                handlerAbs();
                Layout.this.setCursor(cursor);
            }But the mouse pointer doesn't always change. If handler() just does some processing without user interaction, the pointer does change. But in the case of loading a file, where first the user selects the file using a JFileChooser, it doesn't.
    Is this because JFileChooser does its own setCursor()? But even if it does, presumably it does another setCursor() to restore my WAIT_CURSOR before it returns, so why don't I see the WAIT_CURSOR while the file is loading (which takes seconds)?
    Cheers
    John
    EDIT: BTW running under Linux, Java v6 update 7
    Edited by: matth1j on Nov 12, 2008 2:15 AM

    Ok, thanks - full demo program below.
    When you hit the ok button (just 5 second sleep), the mouse pointer changes to 'busy'. It reverts to normal if you move the pointer off the frame, but goes back to 'busy' if you move it back onto the frame.
    When you hit the bad button (brings up file chooser, then does 5 second sleep), the pointer changes to 'busy' while the pointer is over the frame, and reverts to normal when the pointer is moved off the frame. But if you select a file or cancel the file chooser and move the pointer back into the main frame before the 5 seconds is up, the pointer doesn't go back to 'busy' again. I would expect it to show 'busy' while over the frame until the 5 seconds is up.
    Any ideas?
    package test;
    import java.awt.Cursor;
    import java.awt.EventQueue;
    import java.awt.event.*;
    import javax.swing.*;
    public class Main
        public static void main(String[] args)
            EventQueue.invokeLater(new Runnable()
                public void run()
                    new Test();
    class Test extends JFrame
        public Test()
            super();
            this.setDefaultCloseOperation(EXIT_ON_CLOSE);
            JPanel panel = new JPanel();
            panel.add(new Button("ok"));
            panel.add(new Button("bad"));
            add(panel);
            pack();
            repaint();
            setVisible(true);
        class Button extends JButton implements ActionListener
            Button(String text)
                super(text);
                addActionListener(this);
            public void actionPerformed(ActionEvent e)
                Cursor cursor = Test.this.getCursor();
                Test.this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                if (!e.getActionCommand().equals("ok"))
                    (new JFileChooser()).showOpenDialog(null);
                try
                    Thread.sleep(5000);
                catch (Exception ex)
                    ex.printStackTrace();
                Test.this.setCursor(cursor);
    }Edited by: matth1j on Nov 12, 2008 2:44 AM code tidy
    Edited by: matth1j on Nov 12, 2008 2:45 AM code tidy

  • Changing mouse pointer

    I would like to be able to change my mouse pointer to something
    other that what set_application_property cursor_style can do for
    me. I would like to be able to call a mouse pointer from the
    file system and replace the the pointer in my forms app.
    Thanks in advance for any direction that can be given.
    Roland

    If your Mouse cursor is in a DLL you can do:
    Set_Application_Property(CURSOR_STYLE,'<DLLNAME>cursorname');
    For this to work you have to load the above DLL first using
    ORA_FFI.LOAD_LIBRARY().

  • Change mouse pointer over selected text

    I have a JTextArea and i want to change the default mouse pointer to the arrow pointer when the user points to a selected text. Just like the way JCreator works.!
    Thanx

    Try this :
    Cursor textCursor = new Cursor(Cursor.TEXT_CURSOR);
    Cursor arrowCursor = new Cursor(Cursor.DEFAULT_CURSOR );
    textArea.setCursor(textCursor);
    textArea.addMouseMotionListener(new MouseMotionAdapter() {
         public void mouseMoved(MouseEvent e) {
              int location = textArea.viewToModel(e.getPoint());
              if (textArea.getSelectionStart()<=location && location<textArea.getSelectionEnd()) {
                   if (textArea.getCursor() != arrowCursor) {
                        textArea.setCursor(arrowCursor);
              else {
                   if (textArea.getCursor()==arrowCursor) {
                        textArea.setCursor(textCursor);
    });I hope this helps,
    Denis

  • How to change mouse pointer

    I would like enlarge or change the color of the mouse pointer.  Can anyone help

    No, they didn't. I am running 10.7.3.

  • Captivate 8 Edit mouse points for video demo not available??

    Hello,
    I've been trying to fig out how to enable mouse point editing for a video demo in Captivate 8. I know in previous versions it was simply edit >>> mouse points and even documentation I've read states its the same for captivate 8 but when I go to the edit menu I don't' have an option for edit mouse points. this is in both Mac and PC version. I did find the options adding a mouse to the recording but that doesn't help with editing the actual mouse in the video.
    Any help would be greatly appreciated.
    Thanks

    After a little more experimentation I see that this feature is only available in a .cpvc not a .cptx. with a video in it.

  • Jerky mouse pointer for migrated user

    I've upgraded my old MacBook Air to a MacBook Pro with Retina display and now I have a weird problem with a jerky mouse pointer. Certain applications (like Photoshop CS5.5 or VmWare Fusion 5) cause the mouse pointer to move jerky on the screen (it looks like there are 3 mouse pointers, about one inch apart on the screen). This only happens with a user migrated with Migration Assistant. I created a new user on the same computer, and the new user doesn't have the issue. I tried repairing the permissions and clearing the caches to no avail. Next step will be moving the applications preferences. I tried to search for this problem online but, apparently, nobody else is experiencing it. Any other ideas/suggestions?

    Apparently the issue is gone after restarting the system in Safe Mode.

  • Change Mouse Pointer Look

    Hi,
    I have a show/hide layers behavior setup on an image - when
    the image is clicked. It works just fine. However, when you hover
    the mouse over the image, the mouse pointer doesn't change to the
    hand, like it would with a link. Is there any way to get the mouse
    pointer to change to the hand when it is hovering over the image?
    Thanks,
    Lynn

    Open the page in DW. Select the image and look at the
    behaviors panel.
    Change the Event from onClick to <A> onClick, using the
    drop-down list of
    events in the behaviors panel.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "L Gamble" <[email protected]> wrote in
    message
    news:e7hifj$6r6$[email protected]..
    > Hi,
    >
    > I have a show/hide layers behavior setup on an image -
    when the image is
    > clicked. It works just fine. However, when you hover the
    mouse over the
    > image, the mouse pointer doesn't change to the hand,
    like it would with a
    > link.
    > Is there any way to get the mouse pointer to change to
    the hand when it is
    > hovering over the image?
    >
    > Thanks,
    > Lynn
    >

  • Score: Changing 'split' point (for different hands) throughout a piece

    I don't do a massive amount of score work, but when I do, it's usually single staff stuff. However I have some piano pieces I need to print and present in full glory and I'm stuck already...
    Basically, I obviously need to define the left and right hand parts between the treble and bass clefs, but no matter where I set the split point in 'Staff Styles' its never convenient for the whole piece. So for example I can set it to D3 for the first 4 bars, but then a C3 note enters which needs to be played by the right hand, but its showing in the bass clef.
    How do I remedy this so I can choose which line a note appears on depending on which hand it should be played with. There's a large range on most of the pieces so I'm going to need to figure this out...
    Hope that all makes sense. Look forward to figuring it out (not to mention a whole load of other issues I'm yet to encounter!).
    Cheers - Sidx

    hi sidereal ... here's the steps you need:
    1 - Open Score Editor>Layout>Staff Styles
    2 - Go to the box on the left hand side and with the downward arrow and select a Piano Style
    3 - Just above that box (where you see New and Edit) select New and then Duplicate Style
    4 - It will say Piano*copied - click on the box and rename that of your choice say "Sidereal Piano"
    ( the reason you do this is because you might want to keep the original template of that piano style for other uses)
    5- Now look along until you see the final column Assign and underneath Chan and Split -assign each channel a different midi channel ( say 1 and 2) and assign the split point as you wish ( it doesnt really matter where this is because you can still shift individual notes up or down just by changing their channel).
    6 - At this point, whatever midi notes you have already played in will all be randomly part of one clef. You can use the voice separation tool to draw a squiggly line between the notes, and they will drop down to the bass clef - or as others have recommended select those notes you dont want in the treble and change midi channel - or + 1 by key command
    7 - You can play in your piano parts, join all the regions and then in Score Editor assign the whole lot to your custom 'Sidereal Piano' style and follow the above procedure
    hope that helps...
    music spirit

  • Change Mouse Pointer Shape

    Is there any way to change the shape of the cursor by using applescript?
    My script is doing some work wich can require a number of seconds to complete. I would like the user to be informed by changing the shape of the pointer to the standard waiting animation used by OS X.
    Thanks in advance

    If you are referring to the spinning rainbow wheel, that is not a wait cursor, that is "the application is not responding" indicator. To follow Apple's Human Interface Guidelines, you should use a progress indicator - my preference is the BP Progress Bar.

  • Wrong Mouse Pointer for Adjustment Brush with Image on External Drive

    Adjustment brush guide "circles" is not visible when hovering over the image. It is only visible when you are to the side of the image in the gray space. This only happens when I am using Lightroom from my external drive. It does not happen from the local copy.

    After some research, the brush preset I created happened to have the same settings as "skin smooth +" in Lightroom, which is the one it kept switching to.  Perhaps that was the problem...

  • Good starting point for simulations

    Hi,
    I am looking for a good starting point for system simulations in Labview.
    books and bookmarks are welcome. These simulations will include linear
    differential equations.
    Your help is greatly appreciated.
    Greetings from Germany.
    Henrik
    ---------------------------- Corinna & Henrik Volkers
    [email protected]
    | | |
    __|._.__|._.__|._.____________________ beeeeeeeeeeeeee...
    | | |

    [posted and mailed]
    [email protected] (Henrik Volkers) wrote in
    >Hi,
    >I am looking for a good starting point for system simulations in Labview.
    >books and bookmarks are welcome. These simulations will include linear
    >differential equations.
    >Your help is greatly appreciated.
    >Greetings from Germany.
    >Henrik
    >
    There is a chapter in "LabVIEW Power Programming" by Gary W. Johnson,
    McGraw Hill.
    There is the simulation toolkit from NI; www.ni.com
    Alexander C. Le Dain, PhD
    ICON Technologies Pty Ltd
    http://www.icon-tech.com.au
    * The LabVIEW FAQ http://www.icon-tech.com.au/thelabviewfaq.html *

  • Lenovo G550 - Keyboard/Mouse/Pointer Issues - PLEASE HELP Tech suppport couldn't.

    I spent over an hour on the phone with Lenovo tech support last week to try to solve this issue and it is not solved. The guy had never heard of it and kept researching how to fix it.  I personally  have this feeling that it's a very very simple issue but I can't figure out how to correct it.  I've changed mouse/pointer settings and it still isn't working.  I love my new laptop in every other way but i'm getting so frustrated with it I'm ready to send it back because of the problem with the mouse/pointer.  So if anyone could help me I'd appreciate it greatly.
    I will be typing and out of nowhere the cursor will move to wherever the mouse is...or it will highlight everything I just typed and delete it.  I've had to type much slower and keep moving the mouse but when i'm working on my projects and typing away and highlighting/editing, I get into the work and it's a pain in the rear when the cursor suddenly moves a paragraph up and I am still typing away and sometimes don't realize it until i've typed another two sentences.  Hence the typing slower.
    Today it deleted discussion posts I had typed up for my online classes before I had hit submit. Causing me to waste another 30 minutes trying to retype what I'd already done.  I was ready to throw this laptop in the garbage.
    I decided to not do that and post in this forum in the hopes that someone will be able to help me.
    Thank you,
    Komal

    @ shelagh
    try to un-install touchpad drivers,restart your computer and check if issue persists.
    and/or try to flash bios update ( for bios update, read readme file first )
    http://consumersupport.lenovo.com/us/en/DriversDownloads/drivers_list.aspx?CategoryID=600154

  • Mouse Pointer shows "Edit Cursor" "|" where it should be a arrow (pointer)

    I have noticed that at times the mouse pointer shows a Edit cursor when it should be
    a standard mouse arrow.
    This happens when a leave one application and navigate to another application.
    I am able to use the "|" cursor to click, but it seems rather odd.
    I would really like to know if someone else has noticed this?

    Are you using Fast User Switching (FUS)? Are you running an application that keeps a window always on top?
    I have encountered a reproducible problem which causes the mouse pointer to fail to revert to the default arrow. I do not know if it is a general OS X issue, or caused by this specific app only (I just reported the problem to the app vendor, will report back on the resolution).
    In my case, if user "A" is running a program that has an "always on top" window, and that application has the "focus", and I then use FUS to switch to any other user, the mouse pointer for that user will "stick" in its most recent variation - be it a pointing finger (for a link), an edit cursor, a window resize cursor, etc. If you move from a link for example to a text box, the cursor will change to the new form, but it will not revert to the default arrow. To "solve" the problem, do this:
    before using FUS to change to another user, click on another application (e.g. the Finder), so that the problem application does not have the "focus". Does any of this relate to your problem?

Maybe you are looking for

  • Royalty free music that doesn't suck

    I'm not a music composer (and I don't play one on TV) but I am someone who needs music for projects sometimes, mainly video modules for conference openers. The big problem is that, more often than not, my clients aren't willing to pay for an audio en

  • ECC 6.0 HCM / Crystall Reports

    Hello : I would like to know if we can use CR2008 with HCM in some scenarious  instead of Standard SQ01/SQ02/SQ03 and infosets queries. If am aware that we need ODBC if we connect with Access or any other source. How do we connect ECC 6.0 with Crysta

  • New iMacs

    Apple has just posted new revisions to the iMac line. Supposed to be shipping immediately, but the Store hasn't been updated as of 8:53 am EST. New 24" iMac!!!

  • XE release 11.2.0.2.0 on Win 7 64

    I installed XE release 11.2.0.2.0 on a Win 7 64 machine. I have created a test environment and I was able to log into apex and start my training. I tried to log in using the 'connect' command within the 'Run SQL Command Line' window using first my SY

  • BI Business content activation error

    Dear Gurus, I tried installing the business content InfoObject catalogs: 0FIGL_CHA01 (FIGL: Characteristics) 0FIGL_KYF01 (FIGL: Key Figures) But the job is cancelled and the message is 'Transfer structure 0COMPANY_TEXT_BA does not exist'.I'm able to