Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Mathias (Author)

Pages: 1 ... 131 132 133 134 [135] 136 137 138 139 ... 172
3351
Feature Requests and Suggestions / Re: Search
« on: April 08, 2013, 14:54:14 »
(Since search is not something that is change in the beta versions. This is not a "beta version" issue)

Searching binary files for text parts can be tricky, When searching for ASCII strings in binary files make sure that "search content as : ASCII" or "Unicode" if set to auto it will try to autodetect and with binary files it does not always autodetect correct and text matches might fail.

3352
The standard Next tab/Prev tab keys can not be changed.

But you can change tab using script. But only to a fixed tab like
MC.SetActiveTab PANEL=ACTIVE TAB=2

But I can add so it can do Next/Prev tab there like this.
MC.SetActiveTab PANEL=ACTIVE TAB=NEXT
MC.SetActiveTab PANEL=ACTIVE TAB=PREV

Then you create a user defined command with that command and assign you own keys for that.

3353
Support and Feedback / Re: Showing folder size in virtual
« on: April 01, 2013, 15:30:58 »
You can change how the size should be shown.
Menu > Configuration > Explorer Panel setting > Display tab

And Under "Detailed View Mode"
You can configure how size should be shown..  Auto/Bytes/Megabytes/Gigabytes

3354
No need since you can use Multiple [N] tags and then you can build the new name and skip characters at fixed positions

3355
You can also you multiple [N] tags in the name
Like [N1,4]-[N6,200]

The first tag will take 4 char. starting at pos 1.
The second tag will take 200 char (or to the end of the filename) starting at pos 6.
meaning character at position 5 is removed.


3356
Feature Requests and Suggestions / Re: unlocker
« on: March 31, 2013, 22:04:56 »
Menu > Tools > Find Opened/Locked files

It will find what process has a file opened/locked and you can also send a close/kill command to that process.

3357
If you have created an account on the forum and you get that the account needs to be approved before you can write a post.
Then you account got flagged by the Anti-Spam filter.

You then need to go to http://multicommander.com/contact and send a message that you want to be approved.
(Do not forgot to specify what forum name you use)
I will then approve your forum account and you will get access to it.

I ignore all automatically sent approval requests for new accounts since 99% of all accounts that get flagged with requiring approval is because they are spam-bots or user that are flagged in a global database as a user that are just posting ads/spam.

3358
If after you created an account on the forum and you get that the account needs to be approved before you can write a post.
Then your account got flagged by the Anti-Spam filter.

You then need to go to http://multicommander.com/contact and send a message that you want to be approved.
(Do not forgot to specify what forum name you use)
I will then approve your forum account and you will get access to it.

I ignore all automatically sent approval requests for new accounts since 99% of all accounts that get flagged with requiring approval is because they are spam-bots or user that are flagged in a global database as a user that are just posting ads/spam.

3359
Support and Feedback / Re: manually change Split Size
« on: March 31, 2013, 16:06:54 »
No yet

3360
A Login window should be shown and are shown when I try here. But there are some situation where it is not show.

A workaround is to save the password for that network resource in windows by checking the checkbox in the user/password window or adding password for network resource for in accounts.


3361
The Multi-Rename tool is found in Menu

Select the files you want to rename then go to Menu > Extensions > MultiRename

You can used the [N] tag to cut the entire filename or parts of it like [N10,2] That is from character 10 with the length of 2.

And you use the Search and Replace part to remove/replace substring and you can enter a space there and if you replace it with nothing it will be removed.
You have a live preview there that will show you want the names will be

3362
Beta Releases / MultiCommander v3.1 BETA - Rule Based Coloring
« on: March 31, 2013, 15:48:04 »
MultiCommander v3.1 (1385) BETA Contains support for rule based coloring of file items.
However this feature is still under development and not everything with it works yet.
For example there is no user interface yet for configure the rules and it will not load/save the rules between restarts.

However. You can setup the rule based coloring using Multi-Script.  And you can then load that script automatic during startup, or button or hotkey or whatever you want, Since it is script based you can have different color setup and change between then with a command that you call.

All the rule based file coloring is done with 4 Multi-Script functions

FileColoringClear();
FileColoringAddRule(...);
FileColoringSetColor(...);
FileColoringRefresh(...);

You can combine multiple rules and only if all of the nested rules are true, then the color is set.

All the rule are matches from the first to the last inserted rule. If a match is found for a file it will then
stop searching for another rule to match. So if you having trouble getting the correct color it might be because of the order
the rules are setup.

You first create a rule using FileColoringAddRule(...) and it will return a "rule handle" you then use that rule handle to set a color.

Code: [Select]
FileColoringAddRule(<parent rule if any, else 0> , <field> , <match type> , <value> );
When settings the color to a rule, you can specify both a text and background color. However the background color is only shown IF the options
"Use file specified background color" / "Use folder specified background colors" are enabled.
And to use use the default set background color use an empty string as background color.
eg.
Code: [Select]
FileColoringSetColor(  $rule , "#FF0000" , "" ); // Use the default specified background color.

Example.
Code: [Select]
// First we need to remove all existing rules. DO NOT FORGET TO DO THIS.
FileColoringClear();

@var $rule = 0;

// if file extension is jpg, bmp, png, or gif
$rule = FileColoringAddRule(0, "Ext" , "Is", "jpg|bmp|png|gif" );
FileColoringSetColor( $rule , "#FF0000" , "#00FF00" );

$rule = FileColoringAddRule(0, "Ext" , "Is", "zip|rar|7z" );
FileColoringSetColor( $rule , "#FF9954" , "#00FF00" );

// wildcard march the namepart of the filename
$rule = FileColoringAddRule(0, "namepart" , "wildcard", "*-Invoice-201?-*" );
FileColoringSetColor( $rule , "#4455FF" , "#00FF00" );

// match substring from the full filename  will match "MyFile_abcdef.txt" and "myFile.edf"
$rule = FileColoringAddRule(0, "Fullname" , "contains", "edf" );
FileColoringSetColor( $rule , "#44FFFF" , "#00FF00" );

// If file size is more then 10.000.000 bytes
$rule = FileColoringAddRule(0, "Size" , "MoreThen", "10000000" );
FileColoringSetColor( $rule , "#BB9988" , "#00FF00" );

// If date is before 2013-01-01 00:00:00 (Date MUST be ISO formatted.)
$rule = FileColoringAddRule(0, "Date" , "Before", "2013-01-01 00:00:00" );
FileColoringSetColor( $rule , "#444433" , "#00FF00" );

// Combine two rules.  if Size is MoreThen 10.000 bytes AND file extension is "txt"
$rule = FileColoringAddRule(0, "Size" , "MoreThen", "10000" );
$rule = FileColoringAddRule($rule, "Ext" , "Is", "txt" );
FileColoringSetColor( $rule , "#FF3299" , "#00FF00" );

// Revalidate all file coloring.
FileColoringRefresh();

Current supported Field

Fullname
Namepart
Ext
Size
Date
= More to be added, for example File Attributes, and any properties provided by extension. (Like MultiRename )


Match Type

Is        - If a string or numeric values matches exactly (String match is not case sensative) (Fullname,namepart,ext,size)
Wildcard  - If a wildcard value matches (Fullname,namepart,ext)
RegExp    - If regular expression matches ( Fullname,namepart,ext) (Not Implemented yet)
Contains  - If a substring exists  (Fullname,namepart,ext)
Beginwith - Not implemented. Use wildcard for now (using wildcard for this is slower, but works)
Endswith  - Not implemented. Use wildcard for now (using wildcard for this is slower, but works)
LessThen  - If a numeric value is less then specified value (Like size)
MoreThen  - If a numeric value is more then specified value (Like size)
Before    - If a date value is before specifed value
After     - If a date value is after specifed value
Has       - If any of the specified flags are set. (used for attribute, Not implementet yet)

= More matching type will be added. Specially for date/time matching.


3363
Beta Releases / Multi Commander v3.1 BETA Build 1385
« on: March 31, 2013, 15:42:54 »
Multi Commmander v3.1 (Build 1385) BETA -  90+ Changes

This BETA contains the beginning of Rule Based coloring of file items.
Read more here.
 
Changes since build 1379
ADDED - Rule based file coloring. (Alpha) (However no UI to configure it yet)
ADDED - MultiScript functions to set the rule based file coloring.


Changes in previous beta

How to update to beta version

3364
Beta Releases / Multi Commander v3.1 BETA Build 1379
« on: March 26, 2013, 19:11:36 »
Multi Commmander v3.1 (Build 1379) -  80+ Changes

Changes since build 1374
  ADDED - CustomCommand MC.Explorer.SizeFolder
  ADDED - CustomCommand MC.Explorer.SizeItemFocus
  FIXED - Wrong color was shown on focus item when deselected multiple items.
  FIXED - QuickSearch activation issue fixed.
  FIXED - Some hotkeys did not work after previous version.
  FIXED - 1 Crash problem reported by Crash report system.


Changes in previous beta

How to update to beta version

3365
Support and Feedback / Re: set focus to a folder
« on: March 26, 2013, 13:39:35 »
with ALL it is going to size all the folders at the current path.. so if you stand in C:\ all folder there will get sized.

3366
Support and Feedback / Re: delete language files
« on: March 26, 2013, 09:58:13 »
You can delete all except English.

3367
Support and Feedback / Re: set focus to a folder
« on: March 26, 2013, 09:55:47 »
Doing folder sizing parallel is not a good idea. I would make the harddrive work like a crazy frog on drugs. And doing so on the system drive the whole machine can hang for a bit. (since Windows access to pagefile will be blocked because of all the disk activity)
(Unless if you have a SSD. )

3368
Support and Feedback / Re: hotkeys not working
« on: March 26, 2013, 09:48:18 »
Don't know. some keys can't be overwritten.. most can

3369
Support and Feedback / Re: hotkeys not working
« on: March 26, 2013, 08:07:57 »
They are called OEM keys because they are extended key from the keyboard standard layout.

3370
Support and Feedback / Re: hotkeys not working
« on: March 26, 2013, 07:57:14 »
Make sure the file is writable.

OEM2, and so on is windows internal name for some keys..


3371
Support and Feedback / Re: slow rename on executable files
« on: March 26, 2013, 07:54:39 »
MC does not handles them different. But AV software might wake up and do some scanning of the exe file since it might think that it is a new file.

3372
Support and Feedback / Re: Ctrl + left click
« on: March 26, 2013, 07:49:35 »
With commander style setup you toggle selection of files using right mouse button. (when using mouse), or insert key using keyboard. or space

You can tweak how the selection method should work in settings, You can also change what action the mouse button should have under the mouse configuration page.
When selecting Windows Explorer Style setup some of this settings are change. It is possible to change every thing manually.



3373
Support and Feedback / Re: history and session information
« on: March 26, 2013, 07:43:11 »
No.. only if you go into help>Cleaup user data and selects to delete it.

3374
Support and Feedback / Re: hotkeys not working
« on: March 26, 2013, 07:41:33 »
I'm able to assign  "Alt + .  (dot)" to Show Properties and it works after restart too.

type ":goconfig" and makesure that the file CustomKeymappings.xml gets updated when you save you keymapping.



3375
Beta Releases / Re: Funciont Keys broken in v3.1 build 1374
« on: March 26, 2013, 05:19:22 »
Strange.  I know some special keys broke, But I have not found that the F-keys does not work.
Have you done some special key-customizations ? or something ?
What setup do you use the default CommanderStyled setup.. or Explorer Styled setup ?


Pages: 1 ... 131 132 133 134 [135] 136 137 138 139 ... 172