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 

Autohotkey for Pocket PCs / WinCE
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
n-l-i-d
Guest





PostPosted: Mon Mar 24, 2008 10:50 pm    Post subject: Reply with quote

I agree, this definitely needs some screenshots Smile

It probably even deserves at least a "sticky" status, or maybe even a place in a new forum main subject ("AutoHotkey Ports"?). Very Happy
Back to top
interiot



Joined: 06 Nov 2005
Posts: 64

PostPosted: Sat Mar 29, 2008 9:54 pm    Post subject: Reply with quote

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
View user's profile Send private message
ladiko



Joined: 14 Jul 2006
Posts: 190
Location: Berlin

PostPosted: Mon Mar 31, 2008 12:38 pm    Post subject: Reply with quote

@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. Smile
Back to top
View user's profile Send private message
Fry



Joined: 01 Nov 2007
Posts: 533

PostPosted: Tue Apr 22, 2008 9:58 pm    Post subject: Reply with quote

Has this been abandoned
_________________
check out my site
www.eliteknifesquad.com

Back to top
View user's profile Send private message
selyb



Joined: 20 Jul 2007
Posts: 7

PostPosted: Thu Apr 24, 2008 2:53 am    Post subject: Reply with quote

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 Smile

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
View user's profile Send private message
Micha



Joined: 15 Nov 2005
Posts: 432
Location: Germany

PostPosted: Sat Apr 26, 2008 12:14 am    Post subject: Reply with quote

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
View user's profile Send private message
SoggyDog



Joined: 02 May 2006
Posts: 206
Location: Greeley, CO

PostPosted: Sat Apr 26, 2008 3:51 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
Hedonist



Joined: 24 Jan 2005
Posts: 13

PostPosted: Tue Apr 29, 2008 8:14 pm    Post subject: ListView Problems Reply with quote

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
View user's profile Send private message
Hedonist



Joined: 24 Jan 2005
Posts: 13

PostPosted: Sun May 04, 2008 8:13 pm    Post subject: HELP! Reply with quote

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
View user's profile Send private message
MrElliot



Joined: 14 Jan 2008
Posts: 1
Location: Columbus, OH

PostPosted: Wed May 07, 2008 9:43 pm    Post subject: Re: HELP! Reply with quote

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
View user's profile Send private message
Rhys



Joined: 17 Apr 2007
Posts: 701
Location: Florida

PostPosted: Thu May 08, 2008 3:32 am    Post subject: Reply with quote

Argh I really need to pull my x51v out and test this out but I can't find the time Evil or Very Mad
_________________
[Join IRC!]
Back to top
View user's profile Send private message
lingoist



Joined: 05 Oct 2004
Posts: 118
Location: Brasília, Brazil

PostPosted: Sun May 18, 2008 5:06 pm    Post subject: Re: Autohotkey for Pocket PCs / WinCE Reply with quote

Micha wrote:
The main problem is the memory (or stack) space. A lot of functions are not working because the stack is corrupt after a function call. These functions have to be rewritten or the allocation must be done with new/delete.

You can download the AutohotkeyCE.exe for ARM processors here V16
You can download the AutohotkeyCE.exe for ARM processors here V17
You can download the AutohotkeyCE.exe for ARM processors here V18
You can download the AutohotkeyCE.exe for ARM processors here V20


Hi Micha,

Which one of these should I use for Windows Mobile 5 (Processor: Intel PXA270 - 624Mhz)?

Thanks,
Lingoist
Back to top
View user's profile Send private message
ladiko_not_logged_in
Guest





PostPosted: Sun May 18, 2008 7:26 pm    Post subject: Reply with quote

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

PostPosted: Sun May 18, 2008 9:09 pm    Post subject: Reply with quote

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
View user's profile Send private message
Guest






PostPosted: Fri May 23, 2008 6:56 pm    Post subject: Awesome work! Reply with quote

Hey, I just bought a HTC Titan and am looking forward to testing this on it!
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next
Page 8 of 9

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group