Search found 131 matches

by totmad1
23 Nov 2016 17:12
Forum: Tips & Tricks, Questions & Answers
Topic: Toolbar - Enable Color Filters
Replies: 3
Views: 942

Re: Toolbar - Enable Color Filters

I was wondering if SC Button is what is required.
i.e. left click = Button("cofi", 1); //will toggle .
right click = Button("cofi", 2);
by totmad1
27 Oct 2016 16:25
Forum: Script Exchange
Topic: Task scheduler + bacup with path
Replies: 2
Views: 1817

Re: Task scheduler + bacup with path

@ Papoulka
Thanks for the comment.
In answer to your question, I'll quote from my source"The task runs every N days."
You can alter the script to include an "End Date" using a placement of "/ed".
HTH
by totmad1
26 Oct 2016 14:35
Forum: Script Exchange
Topic: Task scheduler + bacup with path
Replies: 2
Views: 1817

Task scheduler + bacup with path

WARNING Use at own risk!!!
This will only create a scheduled task. It will not allow editing or deleting.
If you want to edit you can run

Code: Select all

open "C:\Windows\System32\taskschd.msc"
If you use "BacupWpath", you will have to alter the paths in the script.
TaskScheduler.zip
(1.46 KiB) Downloaded 161 times
by totmad1
17 Oct 2016 21:20
Forum: Script Exchange
Topic: TimeBoxer(personal)
Replies: 2
Views: 1539

Re: TimeBoxer(personal)

Ola pleiades (and thats the limit of my Spanish) I am glad you have posted, should have created an "How to use". It also caused me to find a bug. info.jpg As you can see from image, You can name item to what you want . In this case item 2 is "second 30 mins" . The start column sh...
by totmad1
30 Sep 2016 17:57
Forum: Script Exchange
Topic: TimeBoxer(personal)
Replies: 2
Views: 1539

TimeBoxer(personal)

TimeBoxer.jpg This script maybe overkill? Can be achieved in other ways but I thought this was an interesting variation. Info on timeboxing can be found here, which is a form of time management. https://en.wikipedia.org/wiki/Timeboxing First subject under 'External links' is. http://www.hypnobuster...
by totmad1
23 Sep 2016 16:59
Forum: Script Exchange
Topic: Kataloger
Replies: 10
Views: 3437

Re: Kataloger

Kataloger 4.0 uploaded see first post
I think a vast improvement , but would love to here if the change over from 3.9 to 4.0 needs explanation.
by totmad1
27 Jul 2016 14:42
Forum: Wishes
Topic: Batch folder creation
Replies: 3
Views: 1352

Re: Batch folder creation

:appl: :appl: :appl: (I didn't even start to code, myself :D ).
So a big THANK YOU. I know that I am sure I shall be using them in the future.
by totmad1
27 Jul 2016 11:26
Forum: Wishes
Topic: Batch folder creation
Replies: 3
Views: 1352

Re: Batch folder creation

I have also had this situation and have used a text editor which can add sequenced numbers down a column. Then copied to that input box. So your post made me have a rethink. I regularly use a script I found, (after I had posted a poor imitation) created by TheQwerty » 09 Mar 2012. http://www.xyplore...
by totmad1
14 Jun 2016 16:58
Forum: Tips & Tricks, Questions & Answers
Topic: Key Shortcut for "Show 64-bit Context Menu"?
Replies: 26
Views: 5917

Re: Key Shortcut for "Show 64-bit Context Menu"?

An alternative is to use an onscreen keyboard such as the one I've found at http://cnt.lakefolks.com/
I have tested it and it does work.
You can design your own layout if you want as well.
by totmad1
16 May 2016 21:21
Forum: Script Exchange
Topic: Weekly Reminders
Replies: 2
Views: 1139

Re: Weekly Reminders

Thank You for your comment. Hope you have much use out of it.
I had thought of putting a 'swap' control to change 'hide' to 'show' and vice versa.
Had a rethink on whether it was needed.
by totmad1
16 May 2016 20:33
Forum: Script Exchange
Topic: Weekly Reminders
Replies: 2
Views: 1139

Weekly Reminders

This was a simple idea to provide TV reminders, but can of course be used for any weekly reminder. It was also a good opportunity to develop my skills with ‘html()’. Also to provide an example of ‘include’ which I’ve used in ‘TM1_weekly_demo.xys’ and ‘function’(created by highend) which I’ve used in...
by totmad1
13 Mar 2016 01:14
Forum: Script Exchange
Topic: User Functions Exchange
Replies: 99
Views: 71274

Re: User Functions Exchange

A related function which maybe useful. It uses a previous function posted called "RepTokenPos". FUNCTION swapkeyvalue($string, $sep, $keyvalsep){ set $d; foreach( $item, $string, $sep){ $key= gettoken($item, 1, $keyvalsep); $value=gettoken($item, 2, $keyvalsep); $item=RepTokenPos($item, $k...
by totmad1
25 Feb 2016 21:04
Forum: Script Exchange
Topic: User Functions Exchange
Replies: 99
Views: 71274

Re: User Functions Exchange

Sorry for taking so long to answer but very busy at moment. In response to both your posts, it just shows there's always more than one way to skin a cat. They both have there uses. When I wrote the function it was an end to a means. The speed wasn't top of my list, ease of converting from other prog...
by totmad1
24 Feb 2016 17:27
Forum: Script Exchange
Topic: User Functions Exchange
Replies: 99
Views: 71274

Re: User Functions Exchange

Please note; requires previous posted function RepTokenPos returns sorted list. SelSortList() FUNCTION SelSortList($string, $sep){ // function to sort list using Selection Sort // (there are other sorts but this one is stable and // quick. only drawback for small lists max 50 items) // PLEASE Note u...