| View previous topic :: View next topic |
| Author |
Message |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Mon Feb 28, 2005 4:57 pm Post subject: |
|
|
| 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? |
|
| Back to top |
|
 |
hs2
Joined: 25 Feb 2005 Posts: 11 Location: Germany
|
Posted: Mon Feb 28, 2005 7:13 pm Post subject: |
|
|
The 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 |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Tue Mar 01, 2005 8:05 am Post subject: |
|
|
| 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? |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Mar 07, 2005 1:30 pm Post subject: |
|
|
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
} |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10474
|
Posted: Tue Mar 08, 2005 12:55 am Post subject: |
|
|
| 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. |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5376 Location: /b/
|
Posted: Tue Mar 08, 2005 1:34 am Post subject: |
|
|
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 ...  _________________
 |
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Tue Mar 08, 2005 1:42 am Post subject: |
|
|
| WM_USER usually requires other parameters. Get the wparam and lparam for the message and use those, too. |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5376 Location: /b/
|
Posted: Tue Mar 08, 2005 1:49 am Post subject: |
|
|
| 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. _________________
 |
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Tue Mar 08, 2005 3:02 am Post subject: |
|
|
| That's strange. I usually don't encounter those "generic" kind of messages without the wparam and lparam set. |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Fri Mar 11, 2005 12:28 pm Post subject: |
|
|
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? |
|
| Back to top |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1718
|
Posted: Fri Mar 11, 2005 6:34 pm Post subject: |
|
|
| 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. _________________
 |
|
| Back to top |
|
 |
Guest
|
Posted: Fri Mar 11, 2005 8:39 pm Post subject: |
|
|
| 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? |
|
| Back to top |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1718
|
Posted: Fri Mar 11, 2005 8:49 pm Post subject: |
|
|
@Titan
WM_COMMAND
WPARAM = 1001
LPARAM = 0
works? _________________
 |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Sat Mar 12, 2005 2:04 pm Post subject: |
|
|
| 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? |
|
| Back to top |
|
 |
Guest
|
Posted: Sat Mar 12, 2005 5:21 pm Post subject: |
|
|
| 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.
 |
|
| Back to top |
|
 |
|