(1.0.48.239) (10/05/05) Changed a lot of functions to allocate less
stack space (TCHAR[10000]-> new...) / Fixed compiler warnings /
Fixes code analysis
(1.0.48.124) Fixed bug in compiled scripts
(1.0.48.119) The compiler is now using unicode. Before that
change the script is appended to the exe as ansi. Now the appended
script is unicode, too. Compiler can change the ahk-icon now.
(v13) WinMove ControlGetPos
WinWaitNotActive WinWaitClose FileCopyDir Process(Close, Wait), After
you have registered the ahk-extension (with the 2 lines script above)
you can start any ahk-file.
Control: Check Uncheck Enable Disable Show Hide ShowDropDown
HideDropDown
FileDelete FileMoveDir ControlClick ControlMove SoundPlay
SplitPath Random FileRemoveDir FileGetSize FileGetTime FileMove
FileGetVersion SetTitleMatchMode CoordMode SetBatchLines
StringCaseSense
(v14) reload command.
Starting a new instance of a thread kills the current one. This is working now.
(v15) Clipboard functions. This
was tricky, because the clipboard is unicode, but the ahk-variables are
not. The locked clipboard-buffer is being returned and filled by ahk
functions. If you try to write that chars the clipboard isn't able to
handle this. The conversion has to be done by hand.
Listview
<-> Gui,Submit: conversion between unicode and char corrected.
loop, \path\*.*, x, x fixed
(v16) Clipboard functions
Part2. When transfering huge strings from/to clipboard, the application
crashes (stack overflow), so I had to rewrite these parts of the code
(v17) things like send, {LWin Down}{vkc2sc065}{LWin up} are starting to work. (7%)
(v18) Listview is working with longer texts than 128 bytes
(v19) FileSelectFile
(v20) menu + menu, tray:
since (AFAIK) there's no "right mouse click" on a PDA, I'm using just
the left click.Edit: Tap and hold must work to create a context menu
(V21) fixed GetText of comboboxes, inputbox
(V22) migrated code to AHK 1.0.48. Wish: rotate screens: Worked in emulator by using
Code:
send, {LWin Down}{vkc2sc065}{LWin up}
(V23) Listview: Report view mode is working. Context menu is shown at the right lower corner now.
(V24) RegExMatch / RegExReplace
(V25) Gui, add, Picture is able to load a bitmap. Gui, Add, Picture, x1 y30 w100 h100, %a_scriptdir%\AHK2008.bmp
Thanks to Berry who has done the following things:
- Fix: BIV_ScriptFullPath and beep.
- New: Full support for INI-commands by using open source code. (Read, Write, Delete).
(V28) Reorganized the whole project structure. You can build debug/release for CE/win32 and the compiler
The compiler is working now on ce devices. Updated the installer.
(V29)
Fixed Control, Add, x, ListBox / Fixed Control, EditPaste / Added
Tap&Hold / Fixed EnumChildFind so finding a window with a window
text is working now. /
Fixed Gui, Add, CheckBox / Fixed Gui, Add, Radio / Fixed Gui, Add, DateTime + ListView + TreeView (width)
Fixed LV_Add (only first column was set correctly) / Fixed ControlGet, var, LINE
(V30) Fixed Click / Checked CoordMode / Fixed DriveGet Capacity / Fixed Edit / Fixed Group command (crash with GroupDeactivate and GroupClose,all)
(V31) Fixed "Control, ChooseString".
Fincs provided the complete code for DllCall. Thank you very much Fixed crash in internal function searchwindow.
Fixed Run, /xxx/name.cab. Run was not able to start i.e. an document.
Fixed WinWaitActive / Fixed ControlGet FindString / Fixed ControlGet Choice
Fixed ReadRegString. Fincs reported a bug with a_ComputerName. While
reading the value from the registry the conversation between char and
WCHAR was missed. This fix should solve a few other bugs, too / Fixed
SendMessageTimeout. A lot of times the unsupported value
SMTO_ABORTIFHUNG was used. / Fixed SplitPath (crash)
(V33) Fixed GuiControlGet,<blank> / Fixed GuiControlGet, OutputVar, Focus / Fixed IniDelete when trying to delete a not existing key
(V34) Fixed A_ThisMenuItemPos
(V35) Some didn't want tap-and-hold turned always on. I've added the directive #DisableTapAndHold.
(V36) Fixed variables containing text of a giucontrol. If you enter an long text and then a short text, the string wasn't shorten.
Knows bugs / problems
PixelGetColor and Click aren't working for 640x480. 1x1=2x2. Click, 1,1 -> = Click, 2,2 / Futurity: I used WinGetPos to get the windows position and size:
Here are the results:
Actual resolution of 800x480 is shown as 400x240 - FAIL
Actual resolution of 640x480 is shown as 320x240 - FAIL
Actual resolution of 400x240 is shown as 400x240 - PASS