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 / Smartphones
Goto page Previous  1, 2, 3 ... 17, 18, 19 ... 28, 29, 30  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
TLM



Joined: 21 Aug 2006
Posts: 2926
Location: The Shell

PostPosted: Wed Jun 10, 2009 10:21 am    Post subject: Reply with quote

Anonymous wrote:
Quote:
Sooo anyone know if ahk mobile will work with WM 6.1?

Please let me know b4 I drop $600 on the phone.

Thnx


No promises it will work on *your* device - but I have used it on a WM6 Classic device so the odds are very good indeed.

Barry


Ahh ok thanks. I've never owned a device with WM on it so I was not sure at all. Sorry if the question seemed stupid..

1 week to go until purchase
_________________
paradigm.shift:=(•_•)┌П┐RTFM||^.*∞
Back to top
View user's profile Send private message
Guest






PostPosted: Wed Jun 10, 2009 7:31 pm    Post subject: Reply with quote

Sorry for my tone, I am used to stuff not working on differnt devices. I develop for mobile devices. Are you a programmer?

Barry
Back to top
Guest






PostPosted: Thu Jun 11, 2009 6:49 am    Post subject: Reply with quote

It works on HTC diamond and ASUS P535, but don't buy devices without touch screen which doesn't support loads of S/W
Back to top
Micha



Joined: 15 Nov 2005
Posts: 537
Location: Germany

PostPosted: Fri Jul 10, 2009 8:08 pm    Post subject: Reply with quote

I've uploaded V29.
Here are the changes: http://www.autohotkey.net/~Micha/AutohotkeyCE/html/Changelog.html
Ciao
Micha
Back to top
View user's profile Send private message
mic2009



Joined: 12 May 2009
Posts: 7

PostPosted: Fri Jul 17, 2009 8:09 am    Post subject: Reply with quote

Hi Micha,

I have an ahk appl to remap the phone key of my PDA phone, it works for the old version 20(I am not sure). But with your newest version, it seems to be no longer to work anymore.

details:
first, I have a simple native appl to unmap the VK72 key by using UnregisterFunc1 api
then, an ahk appl is used to assign the new function for this key, it's like:

vk72:
if ....

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



Joined: 20 Jul 2007
Posts: 15

PostPosted: Sat Jul 18, 2009 4:29 pm    Post subject: Reply with quote

could you post an example script?
I tried
Code:
#InstallMouseHook
LButton::
my code here
return
but this doesn't seem to capture screen taps
i tried this with the current v29

also, how can I show what keys were pressed? like on pc version, I can right click on the tray icon and go to key history and script info but I didn't see this option on ce version Sad
Back to top
View user's profile Send private message
Micha



Joined: 15 Nov 2005
Posts: 537
Location: Germany

PostPosted: Sun Jul 19, 2009 9:15 am    Post subject: Reply with quote

Hi selyb, mic2009

LButton is still untested. Mousehook is also not working yet.
To capture mouse clicks, you can use

Code:

_wm_LeftButtonDown()
{
  Gui, Add, Button , gTestClick, Clickit
  Gui, Show, , WindowTitle
  OnMessage(0x201, "WM_LBUTTONDOWN")
}
WM_LBUTTONDOWN(wParam, lParam)
{
    Tooltip, %wParam% - %lParam%
    X := lParam & 0xFFFF
    Y := lParam >> 16
    if A_GuiControl
        Control := "`n(in control " . A_GuiControl . ")"
    MsgBox You left-clicked in Gui window #%A_Gui% at client coordinates %X%x%Y%.%Control%
}


You can rotate the screen by sending the keys:
Code:

_RotateScreenWithSend()
{
   send, {LWin Down}{vkc2sc065}{LWin up}
   msgbox,
   send, {LWin Down}{vkc2sc065}{LWin up}
}


mic2009:
Have you tried
vk72:
or
vk72::
?

the script

Code:
a::
MsgBox, a pressed
return


is working...


Ciao
Micha
Back to top
View user's profile Send private message
Micha



Joined: 15 Nov 2005
Posts: 537
Location: Germany

PostPosted: Sun Jul 19, 2009 7:51 pm    Post subject: Reply with quote

I've uploaded V30.
Here are the changes: http://www.autohotkey.net/~Micha/AutohotkeyCE/html/Changelog.html
Ciao
Micha
---
(V30) Fixed Click / Checked CoordMode / Fixed DriveGet Capacity / Fixed Edit / Fixed Group command (crash with GroupDeactivate and GroupClose,all)
Back to top
View user's profile Send private message
mic2009



Joined: 12 May 2009
Posts: 7

PostPosted: Tue Jul 28, 2009 11:03 am    Post subject: Reply with quote

Hi Micha, I have a script that enable the arrow key functioning differently by detecting the current appl as shown below. This script works on your earlier version, but does not seem to work on your latest version. Can you have a look at it? Many thanks


$VK26::
wingettitle, title, ahk_id %id%
wingetclass, classname , ahk_id %id%
if ( title = "reader" ) and (classname = "abc")
{
; work differently
.....
}
else
{
; other appl work as a normal key
send {vk26}
}
return
Back to top
View user's profile Send private message
Futurity



Joined: 13 Feb 2007
Posts: 21

PostPosted: Fri Aug 07, 2009 4:10 pm    Post subject: Reply with quote

Micha, Thanks for great program!

PixelGetColor and Click are working properly only for 320x240 resolution.

On my device 640x 480 for pixel 0,0 the color is right, but for pixel 1x1 it is wrong. It seems that pixel 1x1 is actual 2x2, and the color is take from pixel 2x2, even though I wanted 1x1.

Same principle can be observed for Click.
Click 1,1 actually clicks 2,2
Back to top
View user's profile Send private message
Guest






PostPosted: Sat Aug 08, 2009 5:40 pm    Post subject: Reply with quote

RegWrite,REG_MULTI_SZ,HKLM,System\Kernel,InjectDLL,\Program Files\MarkBull\NoMobile\NoMobile.dll

Did not respond Exclamation
Back to top
Nom1
Guest





PostPosted: Mon Aug 10, 2009 1:59 am    Post subject: Reply with quote

Glad to see this port available, I have to start supporting WM devices next week for our company and try to integrate them into our existing software base. I can handle the vb to integrate our unique apps but have AHK available will make the transition much faster.

It sure beats the heck out of constant compiles and uploads.
Back to top
Futurity



Joined: 13 Feb 2007
Posts: 21

PostPosted: Tue Aug 11, 2009 4:24 pm    Post subject: Reply with quote

Futurity wrote:
Micha, Thanks for great program!

PixelGetColor and Click are working properly only for 320x240 resolution.

On my device 640x 480 for pixel 0,0 the color is right, but for pixel 1x1 it is wrong. It seems that pixel 1x1 is actual 2x2, and the color is take from pixel 2x2, even though I wanted 1x1.

Same principle can be observed for Click.
Click 1,1 actually clicks 2,2

I made some more testing.

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
Back to top
View user's profile Send private message
Micha as guest
Guest





PostPosted: Fri Aug 14, 2009 5:23 am    Post subject: Reply with quote

Hi,
thanks for reporting.
I'll have a look at it the next free time I have available Smile
Ciao
Micha
Back to top
DeWild1



Joined: 30 Apr 2006
Posts: 358
Location: Shigle Springs

PostPosted: Sat Aug 29, 2009 9:14 pm    Post subject: Reply with quote

Micha, got a pay pal?
You are most worthy of a donation.. (Nothing huge, I am still not rich yet, but I am working on it!!! Wink )
_________________
CPULOCK.com
virusSWAT.com
Computer Repair Computer Service.com
911PCFIX.com
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 17, 18, 19 ... 28, 29, 30  Next
Page 18 of 30

 
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