AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 25 matches
AutoHotkey Community Forum Index
Author Message
  Topic: GUI or SplashImage - 2 Opacity levels (or more)?
gs

Replies: 2
Views: 389

PostForum: Ask for Help   Posted: Thu Nov 17, 2005 3:12 am   Subject: GUI or SplashImage - 2 Opacity levels (or more)?
Thanks.

I had seen both of those threads, but (as they're a bit older) I had hoped something new had been implemented as there doesn't appear to be any way to do this now. Ex:
http://img467.image ...
  Topic: changing the desply's resolution
gs

Replies: 12
Views: 1263

PostForum: Ask for Help   Posted: Sat Nov 12, 2005 5:53 am   Subject: changing the desply's resolution
Or call a command-line resolution changer?
  Topic: GUI or SplashImage - 2 Opacity levels (or more)?
gs

Replies: 2
Views: 389

PostForum: Ask for Help   Posted: Sat Nov 12, 2005 1:38 am   Subject: GUI or SplashImage - 2 Opacity levels (or more)?
I can make part of a window completely transparent, and the remaining area an arbitrary transparency level with
winset, transcolor http://arstechnica.com/reviews/01q4/macosx-10.1/images/volume-overla ...
  Topic: UltraEdit: Close-Button in tab?
gs

Replies: 2
Views: 292

PostForum: Ask for Help   Posted: Wed Sep 07, 2005 2:08 am   Subject: UltraEdit: Close-Button in tab?
Dunno, but you can double click a tab to close it...
  Topic: Banning IPs
gs

Replies: 5
Views: 386

PostForum: Ask for Help   Posted: Sat Aug 27, 2005 4:29 am   Subject: Banning IPs
Couple of things:
I believe it's "A_IPAddress1" instead of "IPAdress1"
But I think there are some flaws you should keep in mind:

1) Users on a LAN are likely to have local IP addresses in the for ...
  Topic: IfInString, clipboard, %KEYWORD%
gs

Replies: 8
Views: 480

PostForum: Ask for Help   Posted: Thu Jul 28, 2005 11:38 pm   Subject: IfInString, clipboard, %KEYWORD%
wordlist = this,is,my,word,list

f12::
If clipboard in %wordlist%
MsgBox, a keyword was found.
else
MsgBox, niente di niente . . . .
returnUntested. Rolling Eyes

Heh, whoo ...
  Topic: IfInString, clipboard, %KEYWORD%
gs

Replies: 8
Views: 480

PostForum: Ask for Help   Posted: Tue Jul 26, 2005 11:02 pm   Subject: Re: IfInString, clipboard, %KEYWORD%
How about:

wordlist = this,is,my,word,list

f12::
found = 0
StringSplit, wordarray, wordlist, `,
loop, %wordarray0%
{
loopword := wordarray%a_index%
IfInString, cli ...
  Topic: Help Running some Commands
gs

Replies: 3
Views: 340

PostForum: Ask for Help   Posted: Fri Jul 22, 2005 11:31 pm   Subject: Help Running some Commands
You can also type win+L to lock...
  Topic: Random help needed ...
gs

Replies: 2
Views: 296

PostForum: Ask for Help   Posted: Wed Jul 20, 2005 9:52 pm   Subject: Re: Random help needed ...
Ugly, but it works:
Numberlist = 1,2,3,4
loop
{
Sort, NumberList, Random D,
loop, 4
{
StringSplit, subnumber, NumberList, `,
thesub := "subnumber". A_Ind ...
  Topic: Stopping an Infinite Loop?
gs

Replies: 2
Views: 294

PostForum: Ask for Help   Posted: Wed Jul 20, 2005 2:52 am   Subject: Stopping an Infinite Loop?
How about something like Loop
{
MouseClick, Left , 63, 495, 1, 60,
MouseClick, Left , 444, 339, 1, 60,
MouseClick, Left , 596, 461, 1, 60,
MouseClick, Left , 38, 478, 1, 60,
...
  Topic: Filling DropDown from file
gs

Replies: 4
Views: 395

PostForum: Ask for Help   Posted: Tue Jul 19, 2005 10:58 pm   Subject: Filling DropDown from file
There's almost assuredly a better way to code this, but here's what I could come up with.

DeviceCount = 0
Loop, Read, drive.txt
{
if(skipline)
skipline=0
else
{
IfI ...
  Topic: :: SmartGUI Creator ::
gs

Replies: 583
Views: 141698

PostForum: Scripts & Functions   Posted: Fri Jul 15, 2005 8:00 pm   Subject: :: SmartGUI Creator ::
Such a handy script!
[request]
Would it be possible to add a "Copy GUI script to clipboard" function?
  Topic: Question about ALT
gs

Replies: 7
Views: 343

PostForum: Ask for Help   Posted: Wed Jul 13, 2005 9:37 pm   Subject: Question about ALT
So, to clarify, you want to be able to toggle alt on and off, but make sure it's off for mouse clicks?
  Topic: IfInString, A_LoopReadLine question
gs

Replies: 4
Views: 345

PostForum: Ask for Help   Posted: Wed Jul 13, 2005 9:14 pm   Subject: IfInString, A_LoopReadLine question
I think the big issue is that the
Loop, Read, C:\Testing Dir\putty.log
loop ends automatically when it gets to the end of the file, so the
MsgBox, Found the text
line will be run regardless of ...
  Topic: Hi, I'm new to this and I'll like some help.
gs

Replies: 2
Views: 263

PostForum: Ask for Help   Posted: Wed Jul 13, 2005 3:43 am   Subject: Hi, I'm new to this and I'll like some help.
I _think_ that'll look like this:MButton::
{
Send, {Shift down}
MouseClick, left
Send, {Shift up}
Send, ^1
}
 
Page 1 of 2 Goto page 1, 2  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group