Scripting! How is it done and where can it be learned? Are there scripting programs, or do you just pull it all outta your head?
Well... Zubaz will tell you i never code anything myself, i "Take" what i need. The truth is, he is very close to the truth. The BEST way to find code is to first determine what you are trying to do.
For instance, how about checking the time between 2 dates (for say a COUNTDOWN program of some sort).
I first look at my favorite place GOOGLE and do a simple search: "vbscript date difference"
by looking at the first 2 or 3 links i find this:
olddate = "6/26/43"
nowdate = Now
Diff = DateDiff("s", nowdate, olddate)
So now i have something i can stick into DX.
The other way is to IMPORT widgets into DX that do what you are looking for (asking permission of course!), and looking thru the code to see what they did.
I will try and cover this as well (when i start this...)