Display of Favorites Folders/Files menu via different methods
Posted: 19 Nov 2017 17:37
Hi Don, I noticed a bug in the way Favorite Folders or Favorite Files is displayed. When displayed via a small script (e.g., $f=favs('d');
load "$f", ,s;), the display is fine. If displayed using the Favorite > Favorite Folders menu or using CID #550 the display doesn't interpret the <tab> character or any unicode symbols as shown below.
A simple script loaded with $f=favs('d');load "$f", ,s; Note: The UC stands for the unicode character that doesn't display on the forum. You can ignore the execute side since it has no bearing on the issue. Thanks.
As you can see below, the Fav Folders menu looks fine when run from a script.When run from CID #550, the menu displays unicode special characters but doesn't interpret the <tab> character.When run from the Favorites Menu, neither the <tab> character or the unicode symbol in interpreted properly.
load "$f", ,s;), the display is fine. If displayed using the Favorite > Favorite Folders menu or using CID #550 the display doesn't interpret the <tab> character or any unicode symbols as shown below.
A simple script loaded with $f=favs('d');load "$f", ,s; Note: The UC stands for the unicode character that doesn't display on the forum. You can ignore the execute side since it has no bearing on the issue. Thanks.
Code: Select all
"XY scripts<tab>AHK scripts UC|D:\Graphics\Icons\xy.ico" if($rmb==1) {goto D:\Tools\AutoHotkey\AHKscripts\;} else {goto D:\Tools\XYplorer\Scripts\;} unset $rmb;
"Home [C:\]<tab>Downloads UC|:home" if($rmb==1) {goto G:\Downloads\;} else {#1401;} unset $rmb;
"Wallpaper<tab>Photos UC|D:\Graphics\Icons\wallpaper_08.ico" if($rmb==1) {goto H:\Pictures\;} else {goto G:\Wallpaper\1920x1080\;} unset $rmb;