Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post Reply
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

โปรแกรมนี้มีความสลับซับซ้อนมาก การปรับแต่งต้องใช้เวลายาวนาน และควรขยัน backup settings ไว้บ่อยๆ ถ้าปรับแต่งได้ดีแล้วจะทำให้ใช้งานได้คล่องมากๆ มีความสามารถสูงมาก และก็แคร็กได้ยากด้วย

Code: Select all

Go C:\ OPENINLEFT
Go D:\ OPENINRIGHT

CreateFolder
CreateFolder NAME="{date|yyyy-MM-dd} {time|HH.mm.ss}"

FileType NEWMENU
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

How to Create New/Empty Files
https://resource.dopus.com/t/how-to-create-new-empty-files/3760

Code: Select all

FileType NEW .txt
FileType NEW=.txt does not work anymore!
https://resource.dopus.com/t/filetype-new-txt-does-not-work-anymore/7697
https://superuser.com/questions/629813/create-new-text-document-option-missing-from-context-menu/

Code: Select all

[HKEY_CLASSES_ROOT\.txt]
@="txtfile"
"Content Type"="text/plain"
"PerceivedType"="text"

[HKEY_CLASSES_ROOT\.txt\ShellNew]
"NullFile"=""

[HKEY_CLASSES_ROOT\txtfile]
@="Text Document"
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Moving files into dated folders
https://resource.dopus.com/t/moving-files-into-dated-folders/13298

Renaming with Metadata
https://www.gpsoft.com.au/help/opus12/index.html#!Documents/Renaming_with_Metadata.htm

Code: Select all

Mode: Standard Wildcard Rename
Old name: *
New name: {datetaken|D#yyyy-MM-dd}\{datetaken|D#yyyy-MM-dd} {datetaken|T#HH.mm.ss} {name}
Modify capitalization: Lower-case Extension
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

How to create folder name with tomorrow(next date)?
https://resource.dopus.com/t/how-to-create-folder-name-with-tomorrow-next-date/26984

Code: Select all

function OnClick(clickData)
{
    var myDate = DOpus.Create.Date();
//  myDate.Add(543,"y");
	
    var myDateString = myDate.Format("D#YYYY-MM-dd T#HH.mm.ss");

//  CreateFolder NAME="{date|yyyy-MM-dd} {time|HH.mm.ss}"

    DOpus.Output(myDateString);
    clickData.func.command.RunCommand("CreateFolder INLINE      NAME=\"" + myDateString + "\"");
//  clickData.func.command.RunCommand("CreateFolder NOSEL       NAME=\"" + myDateString + "\"");
//  clickData.func.command.RunCommand("CreateFolder READAUTO=no NAME=\"" + myDateString + "\"");
}
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

...
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

...
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Display > Colors and Fonts > File and Folder Colors > File display background > File display background > Background = White
Display > Colors and Fonts > File and Folder Colors > File display background > File display background > Destination Background = White

Display > Colors and Fonts > File and Folder Colors > Files and folders > Folders > Unselected Text = Black

Display > Colors and Fonts > Other Colors > File display border - Destination > Active border - Destination > Text = White
Display > Colors and Fonts > Other Colors > File display border - Destination > Active border - Destination > Background = 216,216,216
Display > Colors and Fonts > Other Colors > File display border - Destination > Inactive border - Destination > Text = White
Display > Colors and Fonts > Other Colors > File display border - Destination > Inactive border - Destination > Background = 216,216,216
Display > Colors and Fonts > Other Colors > File display border - Source > Active border - Source > Text = White
Display > Colors and Fonts > Other Colors > File display border - Source > Active border - Source > Background = 27,145,241
Display > Colors and Fonts > Other Colors > File display border - Source > Inactive border - Source > Text = White
Display > Colors and Fonts > Other Colors > File display border - Source > Inactive border - Source > Background = 27,145,241

Display > Colors and Fonts > Other Colors > File display icon > Dual Lister = 250,200,50 (Yellow)

Display > Options > Lister title bar > Display full path = ON

Display > Status Bar > Use two independent status bars when in dual display mode = ON
Display > Status Bar > Keep status bars at the bottom of the Lister = OFF

Display > Transition Animations > Enable transition animations = OFF
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

File Displays > Border > Display as a toolbar > Click on destination's toolbar only changes state = ON
File Displays > Border > Display close button = OFF

File Displays > Mouse > Allow file selection when clicking to activate Lister = OFF
File Displays > Mouse > Allow file selection when clicking to switch source/destination state = ON
File Displays > Mouse > Double-click on file display background = ON
File Displays > Mouse > Double-click on file display background > Command = "Go UP"

File Displays > Options > Use Tab key to switch source/destination in dual-display Listers = ON
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

File Display Modes > Details > File selection / highlighting style = Full row
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

File Operations > Copy Options > Ask for confirmation before overwriting existing files = ON
File Operations > Copy Options > Ask for confirmation before overwriting read-only files = ON
File Operations > Copy Options > Ask for confirmation before merging existing folders = ON
File Operations > Copy Options > Automatically select newly copied files = OFF
File Operations > Copy Options > Automatically manage file copy queues = OFF

File Operations > Deleting Files > Ask for confirmation before commencing delete = ON
File Operations > Deleting Files > Delete to Recycle Bin where possible = ON
File Operations > Deleting Files > Ask for confirmation for each selected file before deleting = ON
File Operations > Deleting Files > Ask for confirmation for each selected folder before deleting = ON

File Operations > Double-click on Files > Double-click on files in a Lister > Open unregistered file types in text viewer if they appear to be plain text = "D:\software\PC-Doctor\tool\EmEditor\EmEditor.exe"

File Operations > Options > Deselect files used in functions = OFF
File Operations > Options > Detect external file changes on network drives = OFF
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Folders > Folder Behavior > Automatically save manual sort order where possible = OFF
Folders > Folder Behavior > Select previous folder when going Up = ON

Folders > Folder Display > Show day names in date columns = OFF

Folders > Global Filters > Hide hidden files = OFF
Folders > Global Filters > Hide protected operating system files = OFF
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Folder Tree > Appearance > Full-row selection = ON
Folder Tree > Appearance > Show Folder Tree header = OFF

Folder Tree > Options > Collapse non-selected branches = ON
Folder Tree > Options > Collapse non-selected branches > Unless open in other tabs = ON
Folder Tree > Options > Expand branches when dragging over the tree = OFF
Folder Tree > Options > Expand 'My Computer' when tree opens = ON
Folder Tree > Options > Horizontal scrolling style = Fully automatic scrolling
Folder Tree > Options > Horizontal scrolling style > Prevent scrolling during drag and drop = ON
Folder Tree > Options > Position selected item in the middle of the tree = ON
Folder Tree > Options > Share single tree between dual file displays =ON
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Internet > Proxy > Use a proxy server for HTTP access = OFF
Internet > Updates > Check for news and program updates = OFF
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Miscellaneous > Advanced > button_editor_advanced = True
Miscellaneous > Advanced > copy_buffer_size = 10 M
Miscellaneous > Advanced > ftp_copy_buffer_size = 10240
Miscellaneous > Advanced > image_res_units = Centimetres
Miscellaneous > Advanced > image_size_units = Centimetres
Miscellaneous > Advanced > max_md5_file_size = 1 (Ignore file sizes and never automatically calculate file hashes)

Miscellaneous > Windows Integration > Add layout and other items to Desktop context menu = OFF
Miscellaneous > Windows Integration > Add icon to the Taskbar Status Area = OFF
Miscellaneous > Windows Integration > Make Directory Opus the default handler for FTP sites = OFF
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Toolbars > Options > Alt-Click to edit Toolbar buttons = ON
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Launching Opus > Default Lister > Ignore folder format of Default Lister = ON
Launching Opus > Default Lister > Ignore toolbars of Default Lister = ON
Launching Opus > Default Lister > Update Default Lister automatically when closing a Lister = ON

Launching Opus > From the Desktop = Disable

Launching Opus > From the Taskbar Icon = Disable

Launching Opus > Startup > Startup settings > Launch Directory Opus automatically on system startup = OFF
Launching Opus > Startup > Startup settings > Show introductory start window = OFF
Launching Opus > Startup > Listers opened automatically when Directory Opus starts = Open the Listers that were open when the program was last closed
Launching Opus > Startup > Shutdown > Shutdown Directory Opus when the last Lister closes = ON
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Favorites and Recent > Recent List > Enable Recent List, maximum size = ON, 20
Favorites and Recent > Recent List > Include virtual folders = ON
Favorites and Recent > Recent List > Ignore filesystem folders that are only transited = ON
Favorites and Recent > Recent List > Lister History = 20

Favorites and Recent > SmartFavorites > Enable SmartFavorites system = ON
Favorites and Recent > SmartFavorites > Number of SmartFavorites folders = 20
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Directory Opus: รวมรายการที่ต้องปรับแต่ง

Post by tong »

Folder Tabs > Options > Display folder tabs = When Needed
Post Reply