AutoHotkey Community

It is currently May 26th, 2012, 6:58 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 453 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11 ... 31  Next
Author Message
 Post subject:
PostPosted: March 24th, 2008, 10:50 pm 
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"?). :D


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

Joined: November 6th, 2005, 6:43 pm
Posts: 72
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 31st, 2008, 12:38 pm 
Offline

Joined: July 14th, 2006, 12:31 am
Posts: 290
Location: Berlin
@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. :-)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 22nd, 2008, 9:58 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Has this been abandoned


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 24th, 2008, 2:53 am 
Offline

Joined: July 20th, 2007, 3:20 am
Posts: 15
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 26th, 2008, 12:14 am 
Offline

Joined: November 15th, 2005, 11:15 am
Posts: 537
Location: Germany
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 26th, 2008, 3:51 am 
Offline

Joined: May 2nd, 2006, 11:16 pm
Posts: 800
Location: Greeley, CO
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.

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


Report this post
Top
 Profile  
Reply with quote  
 Post subject: ListView Problems
PostPosted: April 29th, 2008, 8:14 pm 
Offline

Joined: January 24th, 2005, 3:37 pm
Posts: 36
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject: HELP!
PostPosted: May 4th, 2008, 8:13 pm 
Offline

Joined: January 24th, 2005, 3:37 pm
Posts: 36
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%


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: HELP!
PostPosted: May 7th, 2008, 9:43 pm 
Offline

Joined: January 14th, 2008, 6:58 pm
Posts: 1
Location: Columbus, OH
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 8th, 2008, 3:32 am 
Offline

Joined: April 17th, 2007, 1:37 pm
Posts: 761
Location: Florida
Argh I really need to pull my x51v out and test this out but I can't find the time :evil:

_________________
[Join IRC!]
Image


Report this post
Top
 Profile  
Reply with quote  
PostPosted: May 18th, 2008, 5:06 pm 
Offline

Joined: October 5th, 2004, 5:03 pm
Posts: 121
Location: Brasília, Brazil
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 18th, 2008, 7:26 pm 
all the same and all compiled for wm5. use the latest version.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 18th, 2008, 9:09 pm 
Offline

Joined: October 5th, 2004, 5:03 pm
Posts: 121
Location: Brasília, Brazil
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!


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Awesome work!
PostPosted: May 23rd, 2008, 6:56 pm 
Hey, I just bought a HTC Titan and am looking forward to testing this on it!


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 453 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11 ... 31  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: nothing, siterip 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