 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
n-l-i-d Guest
|
Posted: Mon Mar 24, 2008 10:50 pm Post subject: |
|
|
I agree, this definitely needs some screenshots
It probably even deserves at least a "sticky" status, or maybe even a place in a new forum main subject ("AutoHotkey Ports"?).  |
|
| Back to top |
|
 |
interiot
Joined: 06 Nov 2005 Posts: 64
|
Posted: Sat Mar 29, 2008 9:54 pm Post subject: |
|
|
| Wow, very nice. This is a clear demonstration of why it's too bad AutoIt went closed-source, and why it's good that AutoHotkey remains open. |
|
| Back to top |
|
 |
ladiko
Joined: 14 Jul 2006 Posts: 190 Location: Berlin
|
Posted: Mon Mar 31, 2008 12:38 pm Post subject: |
|
|
@micha:
1.) i dont need it / could help with it, but could you publish a snapshot of the source code? f.e. the source of v20. maybe it arouses someone to work with it, but he is to lazy to ask for the code oO
2.) are there any example scripts for ahkCE? maybe with screenshots, cause i dont have a WinMob device, but maybe it could arouse the need for such a device and i would change from s60.  |
|
| Back to top |
|
 |
Fry
Joined: 01 Nov 2007 Posts: 533
|
Posted: Tue Apr 22, 2008 9:58 pm Post subject: |
|
|
Has this been abandoned _________________ check out my site
www.eliteknifesquad.com
 |
|
| Back to top |
|
 |
selyb
Joined: 20 Jul 2007 Posts: 7
|
Posted: Thu Apr 24, 2008 2:53 am Post subject: |
|
|
Micha! AWESOME WORK!!
I acquired a new PPC/phone last month and there are some tasks on the phone that just are not easy so I have been wanting something like AHK for my fone
I hope you are still interested in this project
I can help test features/bugs with my WM6.1
If we can get this to compile on my system, I can probably even help periodically with small tasks |
|
| Back to top |
|
 |
Micha
Joined: 15 Nov 2005 Posts: 432 Location: Germany
|
Posted: Sat Apr 26, 2008 12:14 am Post subject: |
|
|
Hi,
this is not abandoned, but I have a job after my fulltime job at the moment, so there's no second left of spare time. I just haven't any time at the moment, but after that job I will continue work on it (especially the compiler)
Ciao
Micha |
|
| Back to top |
|
 |
SoggyDog
Joined: 02 May 2006 Posts: 206 Location: Greeley, CO
|
Posted: Sat Apr 26, 2008 3:51 am Post subject: |
|
|
Glad to hear you plan on continuing your work on this.
I know what you mean about not having time;
I work 60+ hours a week and come home every night to 5 kids.
I haven't posted anything but comments/replies in well over a year...
Until today, actually (I posted this).
Anyway... Good to know you're still on this. _________________
SoggyDog
Download AutoHotKey Wallpaper
Does 'Fuzzy Logic' tickle? |
|
| Back to top |
|
 |
Hedonist
Joined: 24 Jan 2005 Posts: 13
|
Posted: Tue Apr 29, 2008 8:14 pm Post subject: ListView Problems |
|
|
I can't get ListView to work right. I need two columns with grids in my ListView. They show up in Windows XP but not in Windows CE 5.0.
| Code: | FormatTime, timestamp,,yyyyMMdd
Gui, Add, listview, x6 y42 w220 h121 ,Grid|Server
LV_ModifyCol(1, 55)
Gui, Add, edit, x6 y165 w220 h20 , Scan or type rack location.
Gui, Add, Button, x21 y190 w190 h70 , Next Rack
Gui, Add, Button, x6 y7 w130 h30 , Save and Exit
Gui, Add, Button, x166 y7 w60 h20 , Help
Gui, Show,, Inventory %timestamp%
GuiControl, Focus, Edit1
Send, {CTRLDOWN}a{CTRLUP}
Return
GuiClose:
ExitApp
GuiEscape:
ExitApp |
|
|
| Back to top |
|
 |
Hedonist
Joined: 24 Jan 2005 Posts: 13
|
Posted: Sun May 04, 2008 8:13 pm Post subject: HELP! |
|
|
Now I can't get the scripts to retrieve the variable entered at a InputBox prompt. It works fine in Windows XP but again it won't work in Windows CE 5.0
| Code: |
Inputbox,grid,Grid Location?,Scan or type rack location., ,200,180,,,,
if ErrorLevel
MsgBox, CANCEL was pressed.
else
MsgBox, You entered %grid% |
|
|
| Back to top |
|
 |
MrElliot
Joined: 14 Jan 2008 Posts: 1 Location: Columbus, OH
|
Posted: Wed May 07, 2008 9:43 pm Post subject: Re: HELP! |
|
|
| Hedonist wrote: | Now I can't get the scripts to retrieve the variable entered at a InputBox prompt. It works fine in Windows XP but again it won't work in Windows CE 5.0
| Code: |
Inputbox,grid,Grid Location?,Scan or type rack location., ,200,180,,,,
if ErrorLevel
MsgBox, CANCEL was pressed.
else
MsgBox, You entered %grid% |
|
I PM'd you but here is a work around:
| Code: |
#SingleInstance ,Force
Gosub , GUIGrid
Gosub , GuiRack
Return
GuiGrid:
Gui, 1:Add, Text, x26 y10 w140 h70 , Scan or type rack location.
Gui, 1:Add, Edit, x26 y90 w100 h20 vGrid,
Gui, 1:Add, Button, x26 y150 w40 h20 gNext, Next
Gui, 1:Add, Button, x86 y150 w40 h20 gCancel, Cancel
Gui, 1:Show, h200 w200, Grid Location?
Return
Next:
Gui, 1:Submit, NoHide
Gui ,1:Destroy
MsgBox, You entered: %Grid%
Return
Cancel:
MsgBox, CANCEL was pressed.
ExitApp
Return
GuiRack:
WinWaitClose ,Grid Location?
Gui, 2:Add, Text, x6 y10 h20 w100 vGridLoc, Grid Loc: %Grid%
Gui, 2:Add, Button, x21 y190 w100 h20 gCancel, Cancel App
Gui, 2:Show,,Done
Return
|
Tested on Axim x51v |
|
| Back to top |
|
 |
Rhys
Joined: 17 Apr 2007 Posts: 701 Location: Florida
|
Posted: Thu May 08, 2008 3:32 am Post subject: |
|
|
Argh I really need to pull my x51v out and test this out but I can't find the time  _________________ [Join IRC!]
 |
|
| Back to top |
|
 |
lingoist
Joined: 05 Oct 2004 Posts: 118 Location: Brasília, Brazil
|
Posted: Sun May 18, 2008 5:06 pm Post subject: Re: Autohotkey for Pocket PCs / WinCE |
|
|
Hi Micha,
Which one of these should I use for Windows Mobile 5 (Processor: Intel PXA270 - 624Mhz)?
Thanks,
Lingoist |
|
| Back to top |
|
 |
ladiko_not_logged_in Guest
|
Posted: Sun May 18, 2008 7:26 pm Post subject: |
|
|
| all the same and all compiled for wm5. use the latest version. |
|
| Back to top |
|
 |
lingoist
Joined: 05 Oct 2004 Posts: 118 Location: Brasília, Brazil
|
Posted: Sun May 18, 2008 9:09 pm Post subject: |
|
|
| ladiko_not_logged_in wrote: | | all the same and all compiled for wm5. use the latest version. |
Thanks a lot! What name should I use for this file?
AutohotkeyCE20.exe
OR
AutohotkeyCE.exe
Thanks again! |
|
| Back to top |
|
 |
Guest
|
Posted: Fri May 23, 2008 6:56 pm Post subject: Awesome work! |
|
|
| Hey, I just bought a HTC Titan and am looking forward to testing this on it! |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|