Search found 31 matches

by mydarkpassenger
23 Oct 2015 14:08
Forum: Bug Reports
Topic: xyplorer locking up on 64 bit windows 7
Replies: 1
Views: 832

xyplorer locking up on 64 bit windows 7

While using xyplorer on my Windows 7 main machine and media server both seem to lock up quite a bit when copying files or even navigating. I remember hearing others complain about this with 64 bit Windows 7 awhile back but I never saw any solutions. Any idea what I can do to correct the issue?
by mydarkpassenger
06 Sep 2015 18:13
Forum: Script Exchange
Topic: Is there a way to easily get all jpg files in a folder
Replies: 2
Views: 1184

Re: Is there a way to easily get all jpg files in a folder

admin wrote:

Code: Select all

text quicksearch("*.jpg");
Thank you. Worked perfectly!
by mydarkpassenger
06 Sep 2015 17:29
Forum: Script Exchange
Topic: Is there a way to easily get all jpg files in a folder
Replies: 2
Views: 1184

Is there a way to easily get all jpg files in a folder

I'm trying to get a list of all jpg files in a folder and save it to a list. I say a selfilter to command but it doesn't appear to let me save the selection. I can also loop over the folders but this seems very inefficient. Any help?
by mydarkpassenger
31 Aug 2015 04:16
Forum: Script Exchange
Topic: 2 strings that appear identical are not coming up equal
Replies: 2
Views: 1148

Re: 2 strings that appear identical are not coming up equal

Not really a perfect solution but what I found is the result appeared to be appending a carriage return at the end. I tried using a regexreplace to take care of any characters I didn't want, but that didn't work. What I ended up doing was appending a semi-colon to my program output and using it as t...
by mydarkpassenger
31 Aug 2015 01:11
Forum: Script Exchange
Topic: 2 strings that appear identical are not coming up equal
Replies: 2
Views: 1148

2 strings that appear identical are not coming up equal

I wrote a small program in c# which I call with runret. The program takes the current file path and does some modifications and returns an updated path. The path appears to come out correctly. However, xyplorer's scripting engine keeps telling me it's an invalid path. Even when I copy and paste the ...
by mydarkpassenger
06 Jul 2015 18:09
Forum: Script Exchange
Topic: Using PHPStorm and an IDE for xys scripting
Replies: 0
Views: 1500

Using PHPStorm and an IDE for xys scripting

I decided to see if I could use PHPStorm as an IDE for xys scripts (due to it's similarities to PHP) and it's working relatively well. For those who are interested, I decided to write down what I did for those who might want to try it out. BTW, the reason I wanted to use PHPStorm is because it gives...
by mydarkpassenger
04 Jul 2015 19:22
Forum: Wishes
Topic: Could we get alt syntax to make it more PHP IDE friendly?
Replies: 0
Views: 757

Could we get alt syntax to make it more PHP IDE friendly?

The language syntax is very PHP like in nature. I decided to try and see if I can make it work in an IDE like PHPstorm so I can have refactoring support, syntax highlighting (although I'm aware of things like akipad and notepad++), auto-completion for functions with their proper signature, being abl...
by mydarkpassenger
02 Jul 2015 21:29
Forum: Script Exchange
Topic: XYS syntax highlighting for Notepad++
Replies: 20
Views: 9810

Notepad++ syntax highlighting

Made modifications to the current Notepad++ syntax highlighting to give it a white background with colors that (I consider) are easy on the eyes. I also put the newer keywords in there and separated them into different colors. For example branching statements like end, return, break, continue have a...
by mydarkpassenger
02 Jul 2015 21:01
Forum: Script Exchange
Topic: User Functions Exchange
Replies: 99
Views: 70164

Custom range function

Just wrote a quick range function which will allow you to search through number ranges either positively or negatively by custom steps and put into a list. I put check in to protect against people passing with 0 steps (infinite). Here's the function:     function range($from, $to, $step=1, $seperato...
by mydarkpassenger
02 Jul 2015 20:52
Forum: Script Exchange
Topic: I was curious where the scripting language was imported from
Replies: 2
Views: 1191

Re: I was curious where the scripting language was imported

Thank you I was just curious. Love the new functions, that's a huge improvement for such a minor upgrade.
by mydarkpassenger
02 Jul 2015 20:24
Forum: Script Exchange
Topic: I was curious where the scripting language was imported from
Replies: 2
Views: 1191

I was curious where the scripting language was imported from

I was reading awhile ago that the regular expression engine used in xyplorer is an import of another program and I was wondering whether xyplorer's script engine is an import as well. I noticed that default variables are possible with the new functions in the recent release and I didn't even see tha...
by mydarkpassenger
02 Jul 2015 12:52
Forum: Script Exchange
Topic: Is there a way to use regexmatches and select a grouping?
Replies: 4
Views: 1554

Re: Is there a way to use regexmatches and select a grouping

That doesn't use regexmatches (which you've asked for) :P What are you trying to achieve here? [\[\s]* \s* is enough. Sorry I use a brackets and space in my names ex. abc-123 to [ abc-123 ] to try and make them cleaner. I didn't specify it in my comment because I was trying to keep it simple. Then ...
by mydarkpassenger
01 Jul 2015 18:32
Forum: Script Exchange
Topic: Is there a way to use regexmatches and select a grouping?
Replies: 4
Views: 1554

Re: Is there a way to use regexmatches and select a grouping

that would be a boon to have! Figured out a way. However, I was hoping for something cleaner. It will match but unfortunately you need to account for the whole string to match because it just replaces contents you find. Unmatched content is left intact: $name = "abc-123"; $results = regex...
by mydarkpassenger
01 Jul 2015 18:28
Forum: Wishes
Topic: Way to make script symlinks from inside xyplorer
Replies: 109
Views: 22742

Re: Way to make script symlinks from inside xyplorer

Thank you both for the help. I'll check them out! :)
by mydarkpassenger
01 Jul 2015 17:52
Forum: Wishes
Topic: Way to make script symlinks from inside xyplorer
Replies: 109
Views: 22742

Way to make script symlinks from inside xyplorer

I'm like to see a feature to be able to generate symbolic links from inside of xyplorer through scripts.