AutoHotkey Community

It is currently May 26th, 2012, 12:21 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 93 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next
Author Message
 Post subject:
PostPosted: February 28th, 2005, 5:57 pm 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
hs2 wrote:
As I know, you are also an active member of the Totalcommander forum.
Do you think it's worth to submit a poll for this feature as a builtin there ?
The author of TC is very open for suggestions and very friendly, however TC being a one man project, sometimes wishes like yours need long time to get through ;-) I am asking for a cursor in Lister for more years now, and he even kind of promised it, but... well we just have to wait. So trying is ok, if you get enough support from the other members, he will definitely consider the idea. On the other hand, why dont you use Alt-F10 for fast folder switching?

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 28th, 2005, 8:13 pm 
Offline

Joined: February 25th, 2005, 5:05 pm
Posts: 11
Location: Germany
The
Quote:
one man project
is the reason for my question to an experienced TC forum member, 'cause I know that such tiny things are not vital for tool itself and therefore get a low prio...

Well, Alt-F10 is great for not-too-deep dir nesting levels on local drives.
But I've to work w/ network filesystems with huge dir trees quite often and there it's almost unusable.
The TreeView just expands the trees 'on demand' and that's as fast as navigating in 'Normal'View mode.

And - oh yes - a cursor in the lister ... that would be nice too !
It's a bit annoying to fall-back to the 'pointing device' for just mark'n copy something there.
My approach: I use the 'hpg_ed' plugin for most of my ASCII files.

HS2


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 1st, 2005, 9:05 am 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
hs2 wrote:
My approach: I use the 'hpg_ed' plugin for most of my ASCII files.
Dont try to use it for logfiles above 2G ... ;-)

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 7th, 2005, 2:30 pm 
Hi all, im try to do a script to auto click seach more, in shareaza, in normal tech work(simulate mouse click) but with this tech i cant put to work
here is my script

Loop
{
DetectHiddenWindows, On
PostMessage, 0x111, 105, 0,,Shareaza
sleep 5000
}


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2005, 1:55 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
If all you want to do is click a button, use MouseClick. If you want to click the button without having to unhide and/or activate the window it belongs to, try ControlClick.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2005, 2:34 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
I'm want to automate the 'check mail' process for my gmail notifier. Winspector Spy showed that the message is 0x400-WM_USER. Trying to Post/SendMessage that value doesn't do anything however ... :?:

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2005, 2:42 am 
Offline

Joined: November 13th, 2004, 4:08 am
Posts: 2951
Location: Minnesota
WM_USER usually requires other parameters. Get the wparam and lparam for the message and use those, too.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2005, 2:49 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
jonny wrote:
WM_USER usually requires other parameters. Get the wparam and lparam for the message and use those, too.
They're both 0x00000000 which I tried before ommiting the parameters.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2005, 4:02 am 
Offline

Joined: November 13th, 2004, 4:08 am
Posts: 2951
Location: Minnesota
That's strange. I usually don't encounter those "generic" kind of messages without the wparam and lparam set.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 11th, 2005, 1:28 pm 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
This is a Winspector related question:
If Winspector encounters a known message, it interprets the wParam and lParam values (like points are given for WM_MOUSEMOVE), but does not show the real values which i would use in AHK. Looking up and translating those interpreted values into wParam and lParam values is a bit tedious. M$ Spy does show the values, but of course i would prefer using Winspector.
Is there a way to get those values in Winspector?

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 11th, 2005, 7:34 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
SanskritFritz wrote:
Is there a way to get those values in Winspector?

not one that i know. translating is the option right now. probably there are more such tools available for spying messages, but i've not come accross any one that's free and better than winspy.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 11th, 2005, 9:39 pm 
Titan wrote:
I'm want to automate the 'check mail' process for my gmail notifier...

@Titan: AFAIK the gmail notifier checks your account every 2 minutes. So what do you whant to automate?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 11th, 2005, 9:49 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
@Titan

WM_COMMAND
WPARAM = 1001
LPARAM = 0

works?

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 12th, 2005, 3:04 pm 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
Rajat wrote:
probably there are more such tools available for spying messages, but i've not come accross any one that's free and better than winspy.
Yes, i like it too very much, the only drawback being this issue. I have to use winspy in that case :-(

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 12th, 2005, 6:21 pm 
SanskritFritz wrote:
Rajat wrote:
I'd like ppl who've found out some nice commands to share them here... it'd help ppl not have to rediscover the wheel.

We can script Total Commander with its internal commands found in the TOTALCMD.INC file in the TC installation folder. The message to post is WM_USER+51, and the wParam is the command. This example lets you auto refresh the active file panel:
Code:
#Persistent
SetTimer sf_subRefreshTC, 250 ; This is in msec, change if necessary
Return
sf_subRefreshTC:
   PostMessage 1075, 540, 0,, ahk_class TTOTAL_CMD
   ; 1075=WM_USER+51 540=cm_RereadSource
   Return


Using this results in a problem with the lister.
It justs stays in the background, what ver file I open.
:( :( :(


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 93 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Klark92 and 18 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