shift+enter can also Solve the problem,<explore How do you operate this?ruizone wrote:Exactly how it works, I don't quite understand the process,“<explore” Where to input? Can i make a button? I like the workflow of this plug-in very much!and I don't understand the code!MVV wrote:TC doesn't support dragging files from file system plugins to external applications, it is a limitation of TC. You can use Virtual Explorer for that task - just open it with <explore command in VP.
[WFX] VirtualPanel: Temporary panel for TC
Moderators: Hacker, petermad, Stefan2, white
Oh I see In the TC command line inputruizone wrote:shift+enter can also Solve the problem,<explore How do you operate this?ruizone wrote:Exactly how it works, I don't quite understand the process,“<explore” Where to input? Can i make a button? I like the workflow of this plug-in very much!and I don't understand the code!MVV wrote:TC doesn't support dragging files from file system plugins to external applications, it is a limitation of TC. You can use Virtual Explorer for that task - just open it with <explore command in VP.
Thank you very much
Win7 display Correct but The win10 icon displays abnormal http://i44.photobucket.com/albums/f16/ruizone/QQ_zpsarmvc5p6.pngillusions wrote:Same problem here. I am not using Virtual Explorer very often, but noticed today that most of icons are missing in the toolbar, but buttons are working. The icons are only visibles in Virtual Explorer TC32 but not in TC64.Horst.Epp wrote:I'm using Virtual Explorer with the adapted bar file for it functions
and only "cd \\\VirtualPanel" to show and use the contents.
I never used the the entry "Virtual Explorer" which is
VPBatch.exe with parameter ^explore .
This works but its menu doesn't contain icons for most of its buttons.
Only a few are displayed as Icons but all buttons are working.
http://i44.photobucket.com/albums/f16/ruizone/QQ1_zpszsuqpdjk.png
or http://i1.bvimg.com/621674/28a0d47409b2a747.png
http://i1.bvimg.com/621674/21792909118452fc.png
Fortunately, the button works well,Thank you for your reply!MVV wrote:Unfortunately only using Win10 is not enough for reproducing the problem. I can't neither reproduce it under Win10 nor understand why it happens, hence I can't fix it...ruizone wrote:Win7 display Correct but The win10 icon displays abnormal
How to run user defined commands created in usercmd.ini file?
Like this:
Like this:
Code: Select all
00000400 00000000 00000000 \>Test <exec em_test
Well, plugin itself doesn't allow executing TC commands directly, but you can start them via some external tool, e.g. my TCFS2.
If you have TCFS2 added to VP as \bin\TCFS2.exe:
Or if you have Exec.exe from VP dir added to VP as \bin\Exec.exe:
If you have TCFS2 added to VP as \bin\TCFS2.exe:
Code: Select all
00000400 00000000 00000000 \>Test <exec \bin\TCFS2.exe /ef "tem(em_test)"
Code: Select all
00000400 00000000 00000000 \>Test <exec \bin\Exec.exe "%COMMANDER_PATH%\Addons\TCFS2\TCFS2.exe" /ef "tem(em_test)"
One more question. How to use tem function with paramters. For an example:
This doesn't work if I add parameters.
Code: Select all
"TCFS2.exe" "/ef" "tem('em_test \\\Cloud')"
Well, it is described in Readme and in comments in TCFS2.Core.ini, you should quote tem parameters using grave accents:
Code: Select all
TCFS2.exe /ef "tem(`em_test \\\Cloud`)"
Well, I've tried it with my em_Cd command and found a problem: VP converts \\\plugin\path\ to \path\ because it doesn't expect to see paths with another plugin names, so your \\\Cloud becomes just \.
You have to mask \\\ in paths to prevent stripping e.g. by splitting it with quotes. With TCFS2, you can use the following workaround (it concatenates multiple quoted strings into single quoted string in parameters so such trick works):
You have to mask \\\ in paths to prevent stripping e.g. by splitting it with quotes. With TCFS2, you can use the following workaround (it concatenates multiple quoted strings into single quoted string in parameters so such trick works):
Code: Select all
TCFS2.exe "/ef" "tem(`em_test \\``\Cloud\`)"