AutoHotkey Community

It is currently May 26th, 2012, 9:31 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 453 posts ]  Go to page Previous  1 ... 15, 16, 17, 18, 19, 20, 21 ... 31  Next
Author Message
 Post subject:
PostPosted: June 10th, 2009, 11:21 am 
Offline

Joined: August 21st, 2006, 7:07 pm
Posts: 2925
Location: The Shell
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 Image

_________________
Imageparadigm.shift:=(•_•)┌П┐RTFM||^.*∞


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 10th, 2009, 8:31 pm 
Sorry for my tone, I am used to stuff not working on differnt devices. I develop for mobile devices. Are you a programmer?

Barry


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 11th, 2009, 7:49 am 
It works on HTC diamond and ASUS P535, but don't buy devices without touch screen which doesn't support loads of S/W


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: July 10th, 2009, 9:08 pm 
Offline

Joined: November 15th, 2005, 11:15 am
Posts: 537
Location: Germany
I've uploaded V29.
Here are the changes: http://www.autohotkey.net/~Micha/AutohotkeyCE/html/Changelog.html
Ciao
Micha


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 17th, 2009, 9:09 am 
Offline

Joined: May 12th, 2009, 4:13 am
Posts: 7
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 18th, 2009, 5:29 pm 
Offline

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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 19th, 2009, 10:15 am 
Offline

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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 19th, 2009, 8:51 pm 
Offline

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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 28th, 2009, 12:03 pm 
Offline

Joined: May 12th, 2009, 4:13 am
Posts: 7
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 7th, 2009, 5:10 pm 
Offline

Joined: February 13th, 2007, 3:54 pm
Posts: 21
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 8th, 2009, 6:40 pm 
RegWrite,REG_MULTI_SZ,HKLM,System\Kernel,InjectDLL,\Program Files\MarkBull\NoMobile\NoMobile.dll

Did not respond :!:


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 10th, 2009, 2:59 am 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 11th, 2009, 5:24 pm 
Offline

Joined: February 13th, 2007, 3:54 pm
Posts: 21
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 14th, 2009, 6:23 am 
Hi,
thanks for reporting.
I'll have a look at it the next free time I have available :-)
Ciao
Micha


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 29th, 2009, 10:14 pm 
Offline

Joined: April 30th, 2006, 6:23 pm
Posts: 358
Location: Shigle Springs
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 453 posts ]  Go to page Previous  1 ... 15, 16, 17, 18, 19, 20, 21 ... 31  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: MSN [Bot] and 14 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