AutoHotkey Community

It is currently May 26th, 2012, 12:49 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 414 posts ]  Go to page Previous  1 ... 8, 9, 10, 11, 12, 13, 14 ... 28  Next
Author Message
 Post subject:
PostPosted: December 23rd, 2008, 6:31 pm 
Offline

Joined: February 20th, 2008, 5:08 pm
Posts: 111
ladiko wrote:
take a look at the example command lines

I did and I don't see where the problem is... :roll: :(


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 23rd, 2008, 10:42 pm 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
Nozavi wrote:
netsh firewall add allowedprogram program=C:\Windows\system32\ftp.exe
The syntax supplied for this command is not valid. Check help for the correct syntax.


http://lantoolbox.com wrote:
Examples:
netsh firewall add allowedprogram C:\MyApp\MyApp.exe MyApp ENABLE
netsh firewall add allowedprogram C:\MyApp\MyApp.exe MyApp DISABLE
ENABLE is default and can be excluded, ftp.exe is in the %path%, so you dont neet to specify the path:
Code:
netsh firewall add allowedprogram ftp.exe ftp


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 25th, 2008, 5:12 am 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
Ladiko, for some reason, on my home computer, using the latest Compile_AHK doesn't apply the icon I've chosen. On my work laptop, it works fine. For the record, the original Compile_AHK works fine on both my computers. Is there anything I can check for you regarding the icon issue?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 25th, 2008, 11:38 am 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
compile a script where the icon thing fails and send me the file %temp%\AutoHotkey\Compiler\Compile_AHK.log via PM or post it here.


Last edited by ladiko on December 25th, 2008, 12:29 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 25th, 2008, 11:41 am 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
Could you please explain exactly, step by step, which icon(s) you're trying to replace and how? Also, which operating system you're using?

Latest version contains a small change in icon selection routine so it can work in Win9x; there's a slight chance for a bug there, although the script has been tested in both Win98SE and Vista.

_________________
AHK tools by Drugwash (AHK 1.0.48.05 and Win98SE)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 25th, 2008, 2:23 pm 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
ladiko wrote:
compile a script where the icon thing fails and send me the file %temp%\AutoHotkey\Compiler\Compile_AHK.log via PM or post it here.


Here you go. I also did some more testing and it seems the version info doesn't get set properly, either. Thanks for taking a look.

Code:
* Create resource file:
"C:\apps\system\AutoHotkey\Compiler\GoRC.exe" /r "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.rc" >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\GoRC.log"

~~ GoRC Log Start ~~
GoRC.Exe Version 0.90.2 - Copyright Jeremy Gordon 1998/2006 - JG@JGnet.co.uk
Output file: C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res
~~ GoRC Log End ~~

# Resource file created successfully!


* Set Versioninfo (with ResHacker-fix for non-1033 systems):
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeVersionInfo.script"

~~ Reshacker Log Start ~~
[25 Dec 2008, 07:19:23]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-delete Versioninfo , 1 , 1033
  Deleted: VERSIONINFO,1,1033
-addoverwrite "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res" , Versioninfo , 1 ,
  Added: VERSIONINFO,1,1033

Commands completed
~~ Reshacker Log End ~~

# Versioninfo set successfully!


* Replace icons:
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeIcon.script"

~~ Reshacker Log Start ~~
[25 Dec 2008, 07:19:23]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-addoverwrite "C:\apps\system\AutoHotkey\Scripts\BASS\ico\ico-combo\audio-generic.ico" , ICONGROUP,159,1033
  Modified: ICONGROUP,159,1033

Commands completed
~~ Reshacker Log End ~~

# Icons replaced successfully!


* Compile script:
"C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Ahk2Exe.exe" /in "C:\apps\system\AutoHotkey\Scripts\BASS\trout.ahk" /out "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" /NoDecompile >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"
Successfully compiled: C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe

# Script Compiled successfully!

* Execute Run After Command:
C:\apps\system\AutoHotkey\Scripts\BASS\copy_trout.bat >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"

C:\apps\system\AutoHotkey\Scripts\BASS>copy "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" "C:\apps\audio\~players\Trout\trout.exe" /Y
        1 file(s) copied.

# Run After executed successfully!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 25th, 2008, 2:28 pm 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
Drugwash wrote:
Could you please explain exactly, step by step, which icon(s) you're trying to replace and how? Also, which operating system you're using?


XP SP2 on both work and home machines. As for step by step, I'm just choosing the "Main" icon via the Select button on the Icons tab.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 27th, 2008, 2:09 am 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
Does the icon reside inside a dll/exe or is it a standalone .ico file? Can you please try both methods and report back which method fails?

_________________
AHK tools by Drugwash (AHK 1.0.48.05 and Win98SE)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 27th, 2008, 7:38 am 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
I did quite a bit more testing and I think I may have narrowed it down to two issues.

1) The icon and version info seem to work properly so long as I don't click the Save button in the Compile_AHK GUI. Once I click that button and attempt a compile, I lose the icon and version information in the resultant executable. At that point, I can uncheck the alternate .bin option and compile with the icon back in place. However, that leads us to the second issue.

2) The alternate .bin option doesn't appear to work at all for me. As in, compiled executables do not appear to have used the specified .bin file.

Apologies if this seems have muddied the waters even more.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 27th, 2008, 4:39 pm 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
#1 i have to test first, but #2 is really not working - i fix it in the next hours.

edit:
try this and if it doesnt help, please post the logfile.


Update of 2008-12-27
    + Changed: pathes to icon files in the defaults.ini are no longer relative
    + Changed: "cmd /c" calls removed, where not needed
    + Changed: more steps logged in the log file
    + Changed: more detailed UAC help
    + Fixed: alternative bin was not used


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 28th, 2008, 6:59 am 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
It looks like the alternate .bin issue is fixed. However, with an alternate .bin selected, I'm still having the icon issue. Here are three logs files. The first is a compile withOUT an alternate .bin chosen (icon works). The second is with an alternate .bin chosen and a .ico file selected (icon doesn't work). The third is with an alternate .bin selected and an icon chosen from a .dll resource file (icon doesn't work).

#1
Code:
* Create resource file:
"C:\apps\system\AutoHotkey\Compiler\GoRC.exe" /r "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.rc" >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\GoRC.log"

~~ GoRC Log Start ~~
GoRC.Exe Version 0.90.2 - Copyright Jeremy Gordon 1998/2006 - JG@JGnet.co.uk
Output file: C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res
~~ GoRC Log End ~~

# Resource file created successfully!


* Set Versioninfo (with ResHacker-fix for non-1033 systems):
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeVersionInfo.script"

~~ Reshacker Log Start ~~
[27 Dec 2008, 23:50:41]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-delete Versioninfo , 1 , 1033
  Deleted: VERSIONINFO,1,1033
-addoverwrite "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res" , Versioninfo , 1 ,
  Added: VERSIONINFO,1,1033

Commands completed
~~ Reshacker Log End ~~

# Set Versioninfo successfully!


* Replace icons:
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeIcon.script"

~~ Reshacker Log Start ~~
[27 Dec 2008, 23:50:41]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-addoverwrite "C:\apps\system\AutoHotkey\Scripts\BASS\trout.ahk_1.ico" , ICONGROUP,159,1033
  Modified: ICONGROUP,159,1033

Commands completed
~~ Reshacker Log End ~~

# Icons replaced successfully!


* Compile script:
"C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Ahk2Exe.exe" /in "C:\apps\system\AutoHotkey\Scripts\BASS\trout.ahk" /out "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" /NoDecompile >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"
Successfully compiled: C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe

# Script Compiled successfully!

* Execute Run After Command:
C:\apps\system\AutoHotkey\Scripts\BASS\copy_trout.bat >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"

C:\apps\system\AutoHotkey\Scripts\BASS>copy "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" "C:\apps\audio\~players\Trout\trout.exe" /Y
        1 file(s) copied.

C:\apps\system\AutoHotkey\Scripts\BASS>copy C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Original.bin C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC.bin /Y
        1 file(s) copied.

C:\apps\system\AutoHotkey\Scripts\BASS>copy C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Original.bin "C:\Documents and Settings\skwire\Local Settings\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin" /Y
        1 file(s) copied.

# Run After executed successfully!



#2
Code:
* Create resource file:
"C:\apps\system\AutoHotkey\Compiler\GoRC.exe" /r "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.rc" >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\GoRC.log"

~~ GoRC Log Start ~~
GoRC.Exe Version 0.90.2 - Copyright Jeremy Gordon 1998/2006 - JG@JGnet.co.uk
Output file: C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res
~~ GoRC Log End ~~

# Resource file created successfully!


* Set Versioninfo (with ResHacker-fix for non-1033 systems):
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeVersionInfo.script"

~~ Reshacker Log Start ~~
[27 Dec 2008, 23:55:42]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-delete Versioninfo , 1 , 1033
  Deleted: VERSIONINFO,1,1033
-addoverwrite "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res" , Versioninfo , 1 ,
  Added: VERSIONINFO,1,1033

Commands completed
~~ Reshacker Log End ~~

# Set Versioninfo successfully!


* Replace icons:
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeIcon.script"

~~ Reshacker Log Start ~~
[27 Dec 2008, 23:55:42]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-addoverwrite "C:\apps\system\AutoHotkey\Scripts\BASS\ico\trout_new.ico" , ICONGROUP,159,1033
  Modified: ICONGROUP,159,1033

Commands completed
~~ Reshacker Log End ~~

# Icons replaced successfully!


* Set alternative .bin file
FileCopy , C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Winamp.bin , C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin , 1
# Set alternative .bin file successfully

* Compile script:
"C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Ahk2Exe.exe" /in "C:\apps\system\AutoHotkey\Scripts\BASS\trout.ahk" /out "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" /NoDecompile >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"
Successfully compiled: C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe

# Script Compiled successfully!

* Execute Run After Command:
C:\apps\system\AutoHotkey\Scripts\BASS\copy_trout.bat >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"

C:\apps\system\AutoHotkey\Scripts\BASS>copy "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" "C:\apps\audio\~players\Trout\trout.exe" /Y
        1 file(s) copied.

C:\apps\system\AutoHotkey\Scripts\BASS>copy C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Original.bin C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC.bin /Y
        1 file(s) copied.

C:\apps\system\AutoHotkey\Scripts\BASS>copy C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Original.bin "C:\Documents and Settings\skwire\Local Settings\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin" /Y
        1 file(s) copied.

# Run After executed successfully!



#3
Code:
* Create resource file:
"C:\apps\system\AutoHotkey\Compiler\GoRC.exe" /r "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.rc" >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\GoRC.log"

~~ GoRC Log Start ~~
GoRC.Exe Version 0.90.2 - Copyright Jeremy Gordon 1998/2006 - JG@JGnet.co.uk
Output file: C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res
~~ GoRC Log End ~~

# Resource file created successfully!


* Set Versioninfo (with ResHacker-fix for non-1033 systems):
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeVersionInfo.script"

~~ Reshacker Log Start ~~
[27 Dec 2008, 23:54:45]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-delete Versioninfo , 1 , 1033
  Deleted: VERSIONINFO,1,1033
-addoverwrite "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\VersionInfo.res" , Versioninfo , 1 ,
  Added: VERSIONINFO,1,1033

Commands completed
~~ Reshacker Log End ~~

# Set Versioninfo successfully!


* Replace icons:
"C:\apps\system\AutoHotkey\Compiler\ResHacker.exe" -script "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ChangeIcon.script"

~~ Reshacker Log Start ~~
[27 Dec 2008, 23:54:45]

[FileNames]
Exe=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
SaveAs=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin
Log=C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\ResHacker.log

[Commands]
-addoverwrite "C:\apps\system\AutoHotkey\Scripts\BASS\trout.ahk_1.ico" , ICONGROUP,159,1033
  Modified: ICONGROUP,159,1033

Commands completed
~~ Reshacker Log End ~~

# Icons replaced successfully!


* Set alternative .bin file
FileCopy , C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Winamp.bin , C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin , 1
# Set alternative .bin file successfully

* Compile script:
"C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Ahk2Exe.exe" /in "C:\apps\system\AutoHotkey\Scripts\BASS\trout.ahk" /out "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" /NoDecompile >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"
Successfully compiled: C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe

# Script Compiled successfully!

* Execute Run After Command:
C:\apps\system\AutoHotkey\Scripts\BASS\copy_trout.bat >> "C:\DOCUME~1\skwire\LOCALS~1\Temp\AutoHotkey\Compiler\Compile_AHK.log"

C:\apps\system\AutoHotkey\Scripts\BASS>copy "C:\apps\system\AutoHotkey\Scripts\BASS\trout.exe" "C:\apps\audio\~players\Trout\trout.exe" /Y
        1 file(s) copied.

C:\apps\system\AutoHotkey\Scripts\BASS>copy C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Original.bin C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC.bin /Y
        1 file(s) copied.

C:\apps\system\AutoHotkey\Scripts\BASS>copy C:\apps\system\AutoHotkey\Compiler\AutoHotkeySC_Original.bin "C:\Documents and Settings\skwire\Local Settings\Temp\AutoHotkey\Compiler\AutoHotkeySC.bin" /Y
        1 file(s) copied.

# Run After executed successfully!



Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 28th, 2008, 10:23 am 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
hehe ok ...

at first: good morning :)

the log file is in cronological order. maybe the alternative bin file should be copied to the compiler directory before the icons and version info are changed :)

i will fix this stupid failure in the next hours.

edit:
ok now when you click the [compile] button, following actions are executed in the named order:
  1. delete the old log to check write access
  2. execute run_before
  3. delete upx.exe if selected
  4. copy lib folder from compiler directory
  5. copy alternative bin file if selected
  6. change version info if selected
  7. change icons if selected
  8. modify manifest (UAC) if selected
  9. add resources if selected
  10. compile with ahk2exe.exe
  11. renew created date if selected
  12. execute run_after
  13. write ini file
  14. exit
seems to be fine for me, or would somebody suggest another order?

Update of 2008-12-28
    + Changed: order of actions changed
    + Changed: copy of lib folder is no longer deleted before the lib folder is copied again
    + Fixed: changes to the bin file were not applied if an alternative bin file was used
    + Fixed: AlwaysOnTop icons were not displayed in last version(s) cause the new function to delete icons was used


Last edited by ladiko on December 29th, 2008, 12:57 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 28th, 2008, 3:31 pm 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
It works now. =] Thanks so much, ladiko. About the only issue left, that I've found, is that the dropdownlists don't get updated when you change languages.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 29th, 2008, 1:33 am 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
for me the dropdownlist updates as wanted, "sprache" changes to "language" if i select "en-us" and "language" to "sprache" if i select "de-de".


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 29th, 2008, 2:42 am 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
My fault, I should have been more specific. It's the contents of the following DDLs that don't get updated:

Compression
Execution Level
Charset

Also, a lot of the text fields on the second, third, and fourth tabs don't get updated when switching back and forth between languages. Again, apologies for being so picky and thanks again for a wonderful tool.


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 ... 8, 9, 10, 11, 12, 13, 14 ... 28  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], DataLife and 19 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