AutoHotkey Community

It is currently May 27th, 2012, 5:05 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 414 posts ]  Go to page Previous  1 ... 18, 19, 20, 21, 22, 23, 24 ... 28  Next
Author Message
 Post subject:
PostPosted: March 29th, 2010, 8:13 pm 
Offline

Joined: May 2nd, 2006, 11:16 pm
Posts: 800
Location: Greeley, CO
random11 wrote:
ok so I dont really want to install anything as I have auto hotkey and all other programs for auto hotkey on my usb key, is there a way getting this without having to install something?

The installer includes an option for portable setup.

_________________
Image
SoggyDog
Dwarf Fortress:
"The most intriguing game I've ever played."


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 29th, 2010, 8:27 pm 
Offline

Joined: December 10th, 2008, 3:56 am
Posts: 98
but it doesnt work... it says ahk installDir not found


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 29th, 2010, 9:28 pm 
Offline

Joined: May 2nd, 2006, 11:16 pm
Posts: 800
Location: Greeley, CO
random11 wrote:
but it doesnt work... it says ahk installDir not found

Be sure you are selecting the correct path to the compiler on your stick.

_________________
Image
SoggyDog
Dwarf Fortress:
"The most intriguing game I've ever played."


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 29th, 2010, 9:29 pm 
Offline

Joined: December 10th, 2008, 3:56 am
Posts: 98
no the problem was that I put the original compile stuff that comes with auto hotkey in a separate folder... I didnt realize that it needed it in the same folder


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 29th, 2010, 10:42 pm 
Offline

Joined: May 2nd, 2006, 11:16 pm
Posts: 800
Location: Greeley, CO
random11 wrote:
no the problem was that I put the original compile stuff that comes with auto hotkey in a separate folder... I didnt realize that it needed it in the same folder

So, you're good now, yes?

_________________
Image
SoggyDog
Dwarf Fortress:
"The most intriguing game I've ever played."


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 29th, 2010, 10:50 pm 
Offline

Joined: December 10th, 2008, 3:56 am
Posts: 98
yes lol sorry im good


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Icons tab help
PostPosted: April 4th, 2010, 7:26 pm 
I couldn't figure out where does the shortcut icon that you can specify is used, any help?

Also the delete option causes a blank icon (invisible icon) to be used when you suspend or pause the script.
Or the icon for the application to be set to the next available icon.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 4th, 2010, 8:48 pm 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
let's explain it this way: the autohotkey.exe has the same seven icons like all compiled scripts and it is the icon that is only used for the ahk-files. maybe i should rename it to ahk files icon? but this could cause the same confususion.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 7th, 2010, 7:36 pm 
ladiko wrote:
let's explain it this way: the autohotkey.exe has the same seven icons like all compiled scripts and it is the icon that is only used for the ahk-files. maybe i should rename it to ahk files icon? but this could cause the same confususion.

Wait, that means that icon really isn't used for anything and is only there due to autohotkeySC.bin just behind a version for compiling of the standard executable?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 7th, 2010, 8:46 pm 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
i assume you know what's the AutoHotkeySC.bin for. in this case the following picture should be self-explaining.

Image

Let's say AutoHotkey.exe is a more complex version of a compiled script, that uses the #include command to include the ahk-file that is passed as command line parameter.
Code:
Params = %0%
If Params = 1
   #Include %1%
Else DoSomethingElse()
...
Return


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 8th, 2010, 10:10 pm 
ladiko wrote:
i assume you know what's the AutoHotkeySC.bin for. in this case the following picture should be self-explaining.

Image

Let's say AutoHotkey.exe is a more complex version of a compiled script, that uses the #include command to include the ahk-file that is passed as command line parameter.
Code:
Params = %0%
If Params = 1
   #Include %1%
Else DoSomethingElse()
...
Return

I figured that much but as it seems that icon really isn't used for anything in a compiled script. Probably just remains so it is easier to compile ahk.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 27th, 2010, 9:17 pm 
Is it possible to set the name of application Publisher ??
Within the complier ?

In Win 7 UAC shows Publisher as UNKNOWN.

I'd like to change that !!

Any Ideas ?

Thanks


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 2nd, 2010, 10:20 am 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
When I compile something, and set ExecutionLevel to RequireAdministrator, it won't be possible to put this file in windows autostart if UAC is enabled (tested on Win7).

Any ideas?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 3rd, 2010, 7:21 am 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7503
Location: Australia
TomT wrote:
Is it possible to set the name of application Publisher ??
No. UAC requires the file to be signed, but currently this isn't possible. See Signing with digital certificate.
fragman wrote:
When I compile something, and set ExecutionLevel to RequireAdministrator, it won't be possible to put this file in windows autostart if UAC is enabled (tested on Win7).
Read Make Vista launch UAC restricted programs at startup with Task Scheduler. It also applies to Windows 7, except that apparently 7 doesn't warn you when it blocks stuff. :evil: I tested that method on my Windows 7 system after enabling UAC, and it started the script as admin with no fuss - not even a UAC prompt. Now to disable UAC again...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 3rd, 2010, 8:55 am 
Offline

Joined: October 13th, 2009, 10:09 pm
Posts: 1389
I read about that method before, but the problem is that I can't do that with ahk. Maybe requesting security privileges when they are first needed might work better?


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 414 posts ]  Go to page Previous  1 ... 18, 19, 20, 21, 22, 23, 24 ... 28  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Stigg and 11 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