Search found 10 matches

by FruehBird
31 Jul 2018 18:00
Forum: Tips & Tricks, Questions & Answers
Topic: OBJ and FBX preview handler
Replies: 2
Views: 831

Re: OBJ and FBX preview handler

Yeah, doesn't look like it will work :(

Thanks for helping!
by FruehBird
26 Jul 2018 18:44
Forum: Tips & Tricks, Questions & Answers
Topic: OBJ and FBX preview handler
Replies: 2
Views: 831

OBJ and FBX preview handler

I was trying to add the new 3D viewer in windows 10 to the preview handlers but I can't seem to find a way to get the GUID for the Mixed Reality Viewer. I have found the 3DViewer.exe in the following location: C:\Program Files\WindowsApps\Microsoft.Microsoft3DViewer_4.1804.19012.0_x64__8wekyb3d8bbwe
by FruehBird
25 Sep 2017 20:39
Forum: Script Exchange
Topic: There and back again
Replies: 6
Views: 1709

Re: There and back again

looks like that did the trick. Everything seems to work fine now!

Thank you for your help highend!
by FruehBird
25 Sep 2017 20:05
Forum: Script Exchange
Topic: There and back again
Replies: 6
Views: 1709

Re: There and back again

Yes exactly! I didn't realize you could use the matched groups in regexreplace. So This is what I have so far and the if/else statements don't seem to work how I would expect. $current = <curpath>; $Pathway = (strpos( $current , 'P:')+1); if ( $Pathway ){ $remote = regexreplace( $current , "^(?...
by FruehBird
25 Sep 2017 18:32
Forum: Script Exchange
Topic: There and back again
Replies: 6
Views: 1709

Re: There and back again

Wow quick search works really well! Thank you. The problem is that I might be in a deeper level of the directory. for example. P:\ClinetName_1\JOB-001_JobName\JobSubfolderA\JobSubfolderASubfolderA. When switching back and forth I always want to be in the root JOB-XXX_JobName folder and would have to...
by FruehBird
25 Sep 2017 17:07
Forum: Script Exchange
Topic: There and back again
Replies: 6
Views: 1709

There and back again

I have a network path and a local path that a lot of files get passed to and from. Previously I was able to use regexreplace to swap out the drive letter and then just use goto. However, the network path now has an additional folder and I can't seem to figure out how to strip out that additional fol...
by FruehBird
11 Apr 2017 00:03
Forum: Tips & Tricks, Questions & Answers
Topic: goto location on another drive
Replies: 2
Views: 727

Re: goto location on another drive

Ahh didn't even realize that was there! Thanks for the help Highend. Works perfect now :)
by FruehBird
10 Apr 2017 19:55
Forum: Tips & Tricks, Questions & Answers
Topic: goto location on another drive
Replies: 2
Views: 727

goto location on another drive

I am trying to get a script working that will take the selected folder and go the the same location on an identical drive and if that folder does not exist, create one. here is the code I am using: // Check to see if selected is a folder if (exists(<curitem>) == 2) { $path = status "<curitem>&q...
by FruehBird
28 Mar 2017 18:02
Forum: Tips & Tricks, Questions & Answers
Topic: Getting the network path of a local path
Replies: 3
Views: 1424

Re: Getting the network path of a local path

That did the trick!

Thanks highend.
by FruehBird
28 Mar 2017 16:56
Forum: Tips & Tricks, Questions & Answers
Topic: Getting the network path of a local path
Replies: 3
Views: 1424

Getting the network path of a local path

Is there a way to get the network path like \\COMPUTERNAME\$J\FolderMain\SubFolder\file.txt from your local files? What I am looking for is adding a right click option to copy the local file/folder and have it generate the network path that can be accessed from another machine on the same network. F...