AutoHotkey Community

It is currently May 26th, 2012, 5:29 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 76 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next
Author Message
 Post subject:
PostPosted: April 17th, 2009, 11:18 pm 
Offline

Joined: February 14th, 2005, 4:05 pm
Posts: 4710
Location: Boulder, CO
These scripts use hotkeys. bitcloud needs Win+C, Titan and Laszlo use Alt+Z to hide/show the mouse cursor. You have to press the right key combination to see an effect.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 17th, 2009, 11:28 pm 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2542
Elim wrote:
sorry for bumping this

but how do u use it?

ive opened it and nothing happens except appears in task manager how do i input the functions?????
nomousy is a command line utility. Please see the first post in this thread for details and usage examples.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 18th, 2009, 8:27 am 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2542
Code:
Run, nomousy.exe /hide /freeze ;hide cursor and restrict movement
SplashTextOn, 200, 200, , where did it go?
sleep, 10000
Run, nomousy.exe
SplashTextOff


Report this post
Top
 Profile  
Reply with quote  
 Post subject: 64-bit
PostPosted: July 17th, 2009, 10:05 pm 
Offline

Joined: July 17th, 2009, 8:17 pm
Posts: 2
Location: Turkey
Hi corrupt :wink:

I'm script developer in the boot-land.net and I'm working on a new project for VistaPE 64-bit edition.
VistaPE 64-bit edition only supports 64-bit software so I need 64-bit edition of nomousy. Or if you would like send to me the source code of software, maybe I can compile it as 64-bit.

regards.

_________________
4D61785F5265616C20516E78


Report this post
Top
 Profile  
Reply with quote  
PostPosted: August 4th, 2009, 3:31 pm 
corrupt wrote:

ive opened it and nothing happens except appears in task manager how do i input the functions?????
nomousy is a command line utility. Please see the first post in this thread for details and usage examples.[/quote]

Nothing happens when I try to use it.... I go to a command window and to the directory I dropped it in and type "nomousy /hide" but the mouse cursor is still there.

Any suggestions? This is on XP SP3.

Thanks.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2009, 8:46 am 
Offline

Joined: November 7th, 2006, 9:47 pm
Posts: 1934
Location: Germany
Why should we hide the mouse cursor or change default icons?


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Thanks
PostPosted: November 30th, 2009, 8:50 pm 
Works awesome! Thank you


Report this post
Top
  
Reply with quote  
 Post subject: Thanks
PostPosted: February 7th, 2011, 8:52 pm 
Thanks, this is what I need for my application. good job.


Report this post
Top
  
Reply with quote  
 Post subject: C++?
PostPosted: February 23rd, 2011, 10:01 pm 
Offline

Joined: December 26th, 2010, 7:40 pm
Posts: 4172
Location: Awesometown, USA
what was this made in? AHK never makes 8kb executables.

_________________
Autofire, AutoClick, Toggle, SpamWindow Control Tools
Recommended: AutoHotkey_L


Report this post
Top
 Profile  
Reply with quote  
 Post subject: How to Run Nomouse
PostPosted: June 8th, 2011, 9:37 am 
Not a programmer or tweaker. I've downloaded this program but how do I run it?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 8th, 2011, 12:07 pm 
Offline

Joined: December 26th, 2010, 7:40 pm
Posts: 4172
Location: Awesometown, USA
you need to read the first post, dammit!

_________________
Autofire, AutoClick, Toggle, SpamWindow Control Tools
Recommended: AutoHotkey_L


Report this post
Top
 Profile  
Reply with quote  
PostPosted: June 8th, 2011, 7:14 pm 
Read it a couple of times. Tells me what it does and the parameters but not how/where to run it or enter those parameters.

I've downloaded and installed it. When I click on the exe file, I get a RUN message which I click on....then nothing. No window opens to ask for parameters or anything and the cursor does not disappear.

As I said, not a programmer. I'm trying to set up a laptop to display a sonar sweep for a kids museum and everything works except the arrow cursor appears in the middle of the sweep.

What do I need to do or is there another way to blank the cursor arrow?

Appreciate any help.


Report this post
Top
  
Reply with quote  
PostPosted: June 8th, 2011, 8:07 pm 
Offline
User avatar

Joined: May 18th, 2010, 3:10 pm
Posts: 1179
Location: Sweden
Anonymous wrote:
Read it a couple of times. Tells me what it does and the parameters but not how/where to run it or enter those parameters.

I've downloaded and installed it. When I click on the exe file, I get a RUN message which I click on....then nothing. No window opens to ask for parameters or anything and the cursor does not disappear.

As I said, not a programmer. I'm trying to set up a laptop to display a sonar sweep for a kids museum and everything works except the arrow cursor appears in the middle of the sweep.

What do I need to do or is there another way to blank the cursor arrow?

Appreciate any help.


I have to admit, for someone who is not a programmer it can be a bit hard to understand. You have to launch it from a command window ("cmd") or directly from "Run" from what I understand.

So, step by step:

1) Start the windows utility "Run" by pressing Winkey+R (or Start -> Run)
2) Type the full path of the nomousy.exe file
3) Add a space
4) Add the parameters
5) Press enter

If you want to run this easier, download Autohotkey (you are on Autohotkey.com, lucky you!) and make a script that goes something like this, and put it in the same directory as nomousy.exe

Code:
SetWorkingDir, %A_ScriptDir%
Run, nomousy.exe /hide


If you want some hotkeys, do it like this for example (Windows+x for hiding and z for unhiding, in this example):

Code:
SetWorkingDir, %A_ScriptDir%

#x::
Run, nomousy.exe /hide
SoundPlay, %A_WinDir%\media\ding.wav
return

#z::
Run, nomousy.exe
SoundPlay, %A_WinDir%\media\chimes.wav
return


The second example will run until you shut down your computer or exit the script. It's important to run them using Autohotkey (install Autohotkey, add the scripts to an .ahk file, and double click them) and that your AHK script is in the same directory as nomouse.

_________________
~sumon Appifyer AHK Nova halted Recommended: AHK_L (Why?)


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Thanks Sumon
PostPosted: June 9th, 2011, 12:15 am 
Sumon, thanks for the detailed reply. It looks like nomousy won't work for us if someone has to be present to either press a hot key or enter parameters into the run box.

Our sonar sweep computer is in a "submarine" room and would not be accessible easily. We want to have the computer boot up and go directly into kiosk mode and run the sweep without user intervention. Got this done but the cursor arrow defaults to the middle of the sonar sweep. We just need to hide it on boot up.

Do you know of a registry tweek to blank or just delete the cursor since we don't need it, unless of course we have a problem with the system but we can figure that out later.

Thanks again for the help.


Report this post
Top
  
Reply with quote  
 Post subject: MOUSE HIDING
PostPosted: September 5th, 2011, 1:32 pm 
HI.I NEED TO HIDE MY MOUSE OUTSIDE AN APPS DURING STARTUP


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 76 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Google Feedfetcher and 14 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group