Search found 52 matches

by pleiades
15 Sep 2022 10:27
Forum: Wishes
Topic: Tag List Icon Support
Replies: 1
Views: 786

Tag List Icon Support

Hello, Would it be possible to add icons on tags? This feature is similar to the Customize File Icons but for tags. The Tag List could have another column for the source of the icon of the tags. In viewing the tags the user can cycle through an iconized tag or tags without icons. I found this thread...
by pleiades
23 Aug 2020 12:10
Forum: Script Exchange
Topic: How to move then extract archives in 1 script?
Replies: 3
Views: 1875

Re: How to move then extract archives in 1 script?

Create a variable that contains the location (it is needed twice) Create a variable with all selected items without path < your moveto command > is this correct? When I run it, I have 3 options and when I chose the first one, it create the correct folder but I can't make the $location to work on th...
by pleiades
19 Aug 2020 13:33
Forum: Tips & Tricks, Questions & Answers
Topic: [TOPIC CLOSED] +++ BREAKING NEWS: XY Switches Programming Language +++
Replies: 254
Views: 134332

Re: +++ BREAKING NEWS: XY Switches Programming Language +++

xy123 wrote: 16 Aug 2020 20:57 I thought VB6 coders are switching to Xojo? Not similar enough, or something else?
https://docs.xojo.com/UserGuide:Migrati ... sual_Basic
will this might work instead?
by pleiades
21 Jul 2020 16:02
Forum: Script Exchange
Topic: How to move then extract archives in 1 script?
Replies: 3
Views: 1875

How to move then extract archives in 1 script?

Hello, I would like to combine 2 scripts that would move then extract archives without user input. I'm using this to move archives/files into folders by date moveto "D:\reference\<date yyyy>\<date mm>\<date dd>",,,2,,-1,1,, and then use Extractor.exe to extract the archives inside the fold...
by pleiades
18 May 2018 00:14
Forum: Bug Reports
Topic: Access is denied in creating folders in Stablebit
Replies: 3
Views: 1643

Re: Access is denied in creating folders in Stablebit

thanks highend, i did the authenticated users and still not allowing creating folders, access is still denied. is this considered a bug? are you using stablebit drivepool?
by pleiades
17 May 2018 00:26
Forum: Bug Reports
Topic: Access is denied in creating folders in Stablebit
Replies: 3
Views: 1643

Access is denied in creating folders in Stablebit

Hi, I'm testing out stablebit drivepool, https://stablebit.com/ https://www.youtube.com/watch?v=kDCMpVgZb4g , it creates a large virtual volume of all your hard disk. I set the virtual volume to use letter drive V:\, the bug i encounter is that when you want to create/move a folder or move more than...
by pleiades
22 Oct 2017 01:14
Forum: Wishes
Topic: Custom icon column as labels
Replies: 1
Views: 1067

Custom icon column as labels

Hi, the custom icon column is a column with icons on it like labels, this can be combined with labels, you create a collection of icons and you assign it to the column but only icons will be shown Collection of Icon :!: Priority :?: Not Priority __________ :D Approved :whistle: Pending :cry: Not App...
by pleiades
19 Oct 2017 23:01
Forum: Wishes
Topic: Custom copy - copy/move along files with same filename
Replies: 2
Views: 1231

Custom copy - copy/move along files with same filename

Hi, there are files with same filename like a subtitle and a video file, managing them will be faster if you can set custom copy operation to copy/move files with the same filename together as companion files. with this you don't need to go looking for it because you know they will follow for folder...
by pleiades
19 Oct 2017 01:23
Forum: Wishes
Topic: Custom copy customize dialog
Replies: 0
Views: 1106

Custom copy customize dialog

Hi,

sometimes you copy a file and it has the same name and size but you are not sure if its the same file, I like to suggest a custom copy customizable dialog. for the example, you can add a hash to the dialog and the person can compare if its the same file or not.

thank you
by pleiades
02 Oct 2017 04:51
Forum: Script Exchange
Topic: AHK_RunFromEdge - Fast XYplorer Scripts Launcher
Replies: 4
Views: 2790

Re: AHK_RunFromEdge - Fast XYplorer Scripts Launcher

Just found this out, amazing work! :tup: :tup: :tup:
by pleiades
02 Oct 2017 03:20
Forum: Script Exchange
Topic: Hash a File then copy the hash to clipboard
Replies: 3
Views: 1862

Re: Hash a File then copy the hash to clipboard

SammaySarkar, thank you for your help and code! I understand I need to learn scripting.

Highend, thank you for your advice, I will try that foreach loop.
by pleiades
01 Oct 2017 05:25
Forum: Wishes
Topic: Labels and Tags stored in extended attributes
Replies: 4
Views: 2020

Re: Labels and Tags stored in extended attributes

Okay, I check it out and its saves metadata directly to the file, will these metadata change the hash value of the file?
by pleiades
30 Sep 2017 11:24
Forum: Script Exchange
Topic: How to cycle sortby?
Replies: 2
Views: 1467

Re: How to cycle sortby?

Thank you SammaySarkar for your guidance, :tup: :tup: I was able to make it work, sort of. here is the code if anyone needs it. The code cycles between Name and Created Column, if you want other column just add more case statement. $sort = get("Sort"); switch ($sort) { case "Name,a&qu...
by pleiades
30 Sep 2017 11:09
Forum: Script Exchange
Topic: Hash a File then copy the hash to clipboard
Replies: 3
Views: 1862

Hash a File then copy the hash to clipboard

Hello everyone,

I like to hash a file then copy the hash to the clipboard after.

This is what I got, some codes are from Hash script I found here

Code: Select all

$File = get('SelectedItemsPathNames')

$Sha1 = hash('sha1', $File, '1')
 
copy $Sha1 ;

What is wrong with this?