Search found 13 matches

by Mr_Inc
10 Oct 2024 16:38
Forum: Script Exchange
Topic: CC snippet - EXIF GPS coordinates
Replies: 21
Views: 12800

Re: CC snippet - EXIF GPS coordinates

Thanks for the reply.

Google Maps can accept locations directly in Degrees Minutes and Seconds format without resorting to converting to decimal.

So I just replaced the last line with:

Code: Select all

open 'https://www.google.com/maps/place/'.$gps;
and it worked a treat! Yay!
by Mr_Inc
10 Oct 2024 00:36
Forum: Script Exchange
Topic: CC snippet - EXIF GPS coordinates
Replies: 21
Views: 12800

Re: CC snippet - EXIF GPS coordinates

Holy thread resurrection.......! I stumbled across this suggestion for a Custom Column and got it to work nicely as described (with a couple of formatting amendments in the script to make it Google Maps URL friendly). https://i.imgur.com/v7pivNI.png How could this GPS column/data be made to open Goo...
by Mr_Inc
04 Feb 2021 21:36
Forum: Tips & Tricks, Questions & Answers
Topic: Scripting the Tab Background Color
Replies: 7
Views: 1392

Re: Scripting the Tab Background Color

Is there a similar feature to script for the colors of the breadcrumb on each Pane?
by Mr_Inc
04 Feb 2021 19:20
Forum: Tips & Tricks, Questions & Answers
Topic: Scripting the Tab Background Color
Replies: 7
Views: 1392

Re: Scripting the Tab Background Color

Thank you. I thought that was the case!

Any other way to do it 'programmatically" via a script?
by Mr_Inc
04 Feb 2021 19:16
Forum: Tips & Tricks, Questions & Answers
Topic: Scripting the Tab Background Color
Replies: 7
Views: 1392

Scripting the Tab Background Color

Is it possible to script the #542 Command to set the tab background color?

Thanks
by Mr_Inc
28 Sep 2010 01:59
Forum: Script Exchange
Topic: Swap ALL Panes
Replies: 3
Views: 1744

Re: Swap ALL Panes

It's a bit clunky but does what I need it to do. I couldn't find out how to stop the tree list refreshing on each tab load, it would look neater if the refresh was suspended as the script executed. "admin" advised the Swap "All" feature was not available, and as the Save Tab scri...
by Mr_Inc
28 Sep 2010 01:02
Forum: Script Exchange
Topic: Swap ALL Panes
Replies: 3
Views: 1744

Swap ALL Panes

Not sure if anyone is interested in this modification to this script for saving the tabs in any pane: http://www.xyplorer.com/xyfc/viewtopic.php?p=43943#p43943 But I wanted the ability to swap the entire panes around with all the tabs moving between the panes. I succeeded with this hash up of the ab...
by Mr_Inc
28 Sep 2010 00:07
Forum: Tips & Tricks, Questions & Answers
Topic: Tree refresh whilst running a script
Replies: 1
Views: 755

Tree refresh whilst running a script

In Excel VBA it is possible to turn off all screen updating whilst macros are run, and on when finished. This makes macros run faster if there is quite a bit of screen refreshing in the spreadsheet. Is there any similar function in XYplorer to turn screen refresh off and on in a script?
by Mr_Inc
27 Sep 2010 23:50
Forum: Script Exchange
Topic: Save Tabs using Script
Replies: 18
Views: 7013

Re: Save Tabs using Script

If been playing around with this script to see if I could automate the swapping of panes and ALL their tabs. The "Swap Pane" function swaps tabs between panes and wasn't what I was after. Anyway, I've had some success in doing this but I've noticed with the save portion of the script, the ...
by Mr_Inc
27 Sep 2010 17:59
Forum: Wishes
Topic: Swap Panes
Replies: 11
Views: 2966

Re: Swap Panes

I have two panes with multiple tabs on each; when I select "swap panes" it just swaps two tabs, not the panes. Is there a setting somewhere which controls this behaviour? I'd like the full panes to swap with all the tabs in them. Thanks.
by Mr_Inc
27 Sep 2010 14:19
Forum: Tips & Tricks, Questions & Answers
Topic: Tab groups
Replies: 19
Views: 6142

Re: Tab groups

admin wrote: Take #352 instead (= "Close all tabs but the current one that are not locked nor have a Home set. No confirmation prompt!").
Thank you! Perfect!
by Mr_Inc
27 Sep 2010 13:23
Forum: Tips & Tricks, Questions & Answers
Topic: Tab groups
Replies: 19
Views: 6142

Re: Tab groups

This is possible if you don't mind doing a bit of manual jiggery-pokery in making it work. Here's a script: #353; goto "ENTER YOUR TAB LOCATION HERE"; #340; goto "ENTER YOUR TAB LOCATION HERE"; ... So the principle is simple. It closes all your current tabs but one and then open...