Using TCSript Editor

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
franck8244
Power Member
Power Member
Posts: 703
Joined: 2003-03-06, 17:37 UTC
Location: Geneva...

Using TCSript Editor

Post by *franck8244 »

I'm using TSCript Editor for some lazy operations :oops:

- Empty Recycle Bin
- Create Playlist
- Manage file display


For those who used it, what are you doing with it :?:
->Just to gather ideas...:D


Here
You will find link to many scripts
Last edited by franck8244 on 2005-01-05, 12:14 UTC, edited 1 time in total.
TC#88260 -
Raymond
Senior Member
Senior Member
Posts: 454
Joined: 2003-02-08, 15:43 UTC

Post by *Raymond »

Here is mine:

Searh all (I've saved a search_all_drives setting in Find Files window)
Unpack here
Restart Totalcmd
check software update by Versions plugin
User avatar
djk
Power Member
Power Member
Posts: 1651
Joined: 2003-03-17, 11:33 UTC
Location: Poland
Contact:

Re: Using TCSript Editor

Post by *djk »

I use it for changing TC language :-). I sometimes need it to see how it sounds originally in English when I eg. answer some questions here.
franck8244 wrote:I'm using TSCript Editor for some lazy operations :oops:

- Empty Recycle Bin
BTW: I hope you know you can use right muse click in TC on the function button (F8 Delete). Than you get a context menu with an option "Empty Recycle Bin".[face=arial][/face][face=comicsansms][/face][face=courier][/face]
DJK
Totally addicted to Total Commander
totalcmd.pl
en.totalcmd.pl
User avatar
Sheepdog
Power Member
Power Member
Posts: 5150
Joined: 2003-12-18, 21:44 UTC
Location: Berlin, Germany
Contact:

Re: Using TCSript Editor

Post by *Sheepdog »

djk wrote:I use it for changing TC language :-).
Can you send me the script? Once I tried to use the script editor but had no success. The thing I tried did not work and I did not find a helpful readme. That kept me off to use it. But changing the language I have to do quite often. So a menu-entry would help me very much.

sheepdog
"A common mistake that people make when trying to design something
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams
User avatar
djk
Power Member
Power Member
Posts: 1651
Joined: 2003-03-17, 11:33 UTC
Location: Poland
Contact:

Post by *djk »

2Sheepdog
They are very short so I can put them just here.

The first one for changing into English:

Code: Select all

#include "Scripts\VKeys.h"
#define VK_P 80

PostCmd(cm_LanguageConfig);
SendVKey(VK_TAB, 1);
SendVKey(VK_SPACE, 1);
SendVKey(VK_RETURN,1);
The second one for changing into Polish:

Code: Select all

#include "Scripts\VKeys.h"
#define VK_P 80

PostCmd(cm_LanguageConfig);
SendVKey(VK_TAB, 1);
SendVKey(VK_P, 1);
SendVKey(VK_RETURN,1);
DJK
Totally addicted to Total Commander
totalcmd.pl
en.totalcmd.pl
User avatar
franck8244
Power Member
Power Member
Posts: 703
Joined: 2003-03-06, 17:37 UTC
Location: Geneva...

Post by *franck8244 »

2djk
I hope you know you can use right muse click in TC on the function button (F8 Delete). Than you get a context menu with an option "Empty Recycle Bin".
1) I did not show the Function Button -> I know them by heart
2) It woud be a 2 click operation, mine is one ....
TC#88260 -
User avatar
Black Dog
Power Member
Power Member
Posts: 1024
Joined: 2003-02-05, 22:17 UTC
Location: Odessa
Contact:

Post by *Black Dog »

[face=courier]On 27-09-2004 11:47:21 +0000 franck8244 wrote:

f> 1) I did not show the Function Button -> I know them by heart

That's absolutely unnecessary to have them visible all the time - one can set a shortcut for cm_visKeyButtons ("Alt"+"K" in my TCIPX) and make it visible only in case it is need to.[/face]
User avatar
pdavit
Power Member
Power Member
Posts: 1529
Joined: 2003-02-05, 21:41 UTC
Location: Kavala -> Greece -> Europe -> Earth -> Solar System -> Milky Way -> Space
Contact:

Post by *pdavit »

franck8244 wrote:1) I did not show the Function Button -> I know them by heart
True, but their purpose is not just to inform the user. They are clickable buttons so for mouse-oriented users it can be useful to have them ON. But you know that based on your second argument. I don't blame you though; tastes differ! :P ;)
"My only reason for still using M$ Window$ as an OS is the existence of Total Commander!"
Christian Ghisler Rules!!!
User avatar
robinsiebler
Senior Member
Senior Member
Posts: 460
Joined: 2003-03-05, 21:04 UTC

Here's another example

Post by *robinsiebler »

Here is another example (courtesy of franck8244):

http://www.ghisler.ch/board/viewtopic.php?t=5548
Robin L. Siebler
Personal License #13949
------------------------------
"Bother", said Pooh, as he deleted Windows
User avatar
franck8244
Power Member
Power Member
Posts: 703
Joined: 2003-03-06, 17:37 UTC
Location: Geneva...

Post by *franck8244 »

2robinsieber
Here are some downloadable script, you knew it... :wink:
TC#88260 -
Post Reply