... Hi Dio, I love those RegEx which do not capture anything. So if we've got a pure one-column list like that we could also write just... ^!Replace...
20951
hsavage
hrs62930
Aug 14, 2010 10:40 pm
... can't find a tutorial for Clipcode! A simple Hello World type code tutorial? I'd like some hints for that! Not just a pointer to a file full of complicated...
20952
Eb
ebbtidalflats
Aug 16, 2010 8:06 am
I'd like to add a couple of points to Flo's comments. ... Using a RegExp is definitely NOT a beginner-level tool in the first place. ... Instead of Toolbar,...
20953
Don
dpasseng
Aug 16, 2010 12:07 pm
... And the group support here is second to none! But having said that, any suggested solution is help being given so let's not be too critical of each others...
20954
Axel Berger
absalom_nemini
Aug 16, 2010 12:29 pm
... There is an alphabetic list with one important snag: "^?", the details of which I always forget, is not in it and quite hard to find every time, meaning...
20955
tom thomas
tom@...
Aug 16, 2010 7:41 pm
I use NoteTab to write coldfusion code. I have the following clip: <cfset q^?[queryName:=^&] = queryNew("^?[ColumnList:=^&]")> <cfset newRow =...
20956
diodeom
Aug 17, 2010 4:44 am
... Your clip could be instructed to treat the ColumList input as an array to retrieve values from one by one, e.g. like that: <cfset q^?[queryName:=^&] =...
20957
flo.gehrke
Aug 17, 2010 9:56 am
... Eb, For a better overview, Ray Fitzgerald created his ToolTips.CLB, last updated in Feb 2000. It's in the ClipClass+Clip Basics+more.ZIP file that Alec...
20958
tom thomas
tom@...
Aug 17, 2010 4:33 pm
This worked exactly the way I wanted it to. Thanks very much, Tom...
20959
Eb
ebbtidalflats
Aug 20, 2010 6:51 pm
Thanks, Flo, I agree, and the most useful file, "Toolbar.txt" contains the descriptions missing from the NoteTab Help file. The clip library isn't bad either,...
20960
Eb
ebbtidalflats
Aug 20, 2010 7:21 pm
Hello clippers, If you have had misgivings about running a downloaded clip, because the library had a "About..." clip, but it didn't explain a specific clip,...
20961
diodeom
Aug 21, 2010 12:14 am
... In this context it might be worth mentioning that for those dodo-heads of us who would actually dare to run a clip with little clue about what it does, the...
20962
Axel Berger
absalom_nemini
Aug 21, 2010 12:45 am
... Yes, this certainly is a good idea. I have begun implementing something similar for my DOS batches, making them give help when called without parameters,...
20963
Mike Breiding - Morga...
wv.mike
Aug 21, 2010 2:03 pm
Greetings, A while back I asked for and received a clip which would concatenate numerous html files into one file. I have a folder with 25 sub folders each one...
20964
flo.gehrke
Aug 21, 2010 5:49 pm
... Wasn't it #19892? You may also have a look at #19286. Flo...
20965
Eb
ebbtidalflats
Aug 21, 2010 6:42 pm
You've lost me there. When I right-click on a clipbar icon, I get clipbar-related utilities. When running a clip from the clipbook, right-clicks generate the...
20966
Axel Berger
absalom_nemini
Aug 21, 2010 7:02 pm
... Sorry, I meant the "edit clip" entry. Whenever I need to remind myself what a clip of mine actually does, that click is right there and best and most...
20967
Eb
ebbtidalflats
Aug 21, 2010 7:12 pm
The problem with ^!Continue is, that it's alternative to OK, CANCEL, EXITS the clip, and IfCancel doesn't work with it. For reasons that have nothing to do...
20968
Axel Berger
absalom_nemini
Aug 21, 2010 7:22 pm
... As I said before, it really IS a good idea and I endorse it, even if being too lazy to implement it myself. For myself, peeking into the source suffices,...
20969
Mike Breiding - Morga...
wv.mike
Aug 21, 2010 8:16 pm
... Yep. You found it. Thanks! -Mike...
20970
diodeom
Aug 21, 2010 10:12 pm
To me it would seem rather late to hint or prompt for the confirmation from within the child clip -- as I understand the only condition where End versus Exit...
20971
diodeom
Aug 21, 2010 11:05 pm
... Granted, if one were to place the :End label in the clip, it could, instead of terminating -- if desired -- resume the execution with some alternative...
20972
Sherry
sherrykochmail
Aug 23, 2010 12:55 am
Hello, Thank you so much, EVERYONE, for answering my request. I am sorry for not responding earlier. But I did read the discussion and finally today I am in...
20973
Mike Breiding - Morga...
wv.mike
Aug 23, 2010 1:43 pm
... For some reason the clip is not concatenating the files in order. The folders are named d1 through d23 In the output file the first text is from D1, the...
20974
bruce.somers@...
bruce.somers
Aug 23, 2010 1:52 pm
... Indeed - it's the usual behavior. It sorts them in lexical order, not numeric as they are names, not numbers. The solution is to 'number39; them 01, 02, 03,...
20975
Mike Breiding - Morga...
wv.mike
Aug 23, 2010 2:07 pm
... But, if I do that then every link which refers to the folder name will break. See:http://epicroadtrips.us/2010/mich-ont/ Thanks, -Mike...
20976
Eb
ebbtidalflats
Aug 23, 2010 3:01 pm
I meant the predefined "END" and "EXIT" labels. ^!Goto EXIT returns control back to the editor. ^!Goto END returns control to the caller of the clip. This...
20977
diodeom
Aug 23, 2010 3:07 pm
... You could try this approach: ^!Menu File/New ;Specify folder containing d1 - d?? subfolders ^!Set %folder%="^?{(T=D)Directory==^%folder%}" ^!Set %i%=0 ... ...
20978
Axel Berger
absalom_nemini
Aug 23, 2010 3:10 pm
... That's what advance planning is for. Luckily you have NoteTab and a mass replace through hundreds of files with links is made easy, BUT you'll then have to...
20979
Mike Breiding - Morga...
wv.mike
Aug 23, 2010 3:25 pm
... Hot dog! Beautiful! One question. Does this line: ^!InsertText **** Day ^%i% ****^p^%txt%^p^p Insert the Page Title text? The reason I ask is the title...