Hi David, Look in Options | Internet and see if it is in front of the field for the <a href... ... Happy Clip'n! Jody http://www.notetab.net Subscribe,...
Hi Sheri, Harvey and Eric, I'm sorry about not sending a reply in earlier. I have found the same thing in times past about the search disk features via a Clip...
... Jody, et al, In the case of my clip, as I said, I kind of stumbled onto the answer via the process of trying many combinations. It's all a matter of ...
Hi Harvey, ... ^!ProgIniLoad ^!ProgIniSave have always been a pain for me. I still end up doing it on a do it till it works basis it seems, but the example in...
Hi Peter, PS> Having some sort of viewer to see the ASCII number of invisible characters would be handy for troubleshooting text files. A reference for ASCII...
Hi, I'd like to delete all empty lines in a document, but I can't get it done. What I tried so far is this: a) I used the ^!Replace command in regex mode and...
Hi Ralf, ... The ^p token is used for CR/LF, a new line, so two of them look for two lines with no data in between. H=Remove Empty Lines ^!Replace "^p^p" >>...
Well, I did it. I hope some of you will try it. In addition to having Perl installed, you will probably need to install at least one package/module (Config- ...
Sheri, Very nice! I dug out my SAMS, "Teach Yourself Perl in 24 Hours" and have been reviewing it in light of the recent Perl discussions. The Perltk really ...
Hi Sheri, Interesting idea to: from Perl, specifically from your sub routine named SaveVariables, call (via commandline) the NoteTab clip that then runs the...
... Hi Larry, I definitely empathize, I'm almost over something that has lasted nearly two weeks. Perl in "24 hours"? LOL. SAMS also has a 3 week teaching...
Hi Alan, ... Hahaha. <grinning ear to ear> ... You always say that. I'm not over your head, I just persisted until it worked. The subs are pretty similar,...
... Sorry, got distracted and didn't finish the sentence. Meant to say, when you Alt+Tab you get to see my icon instead of the TK default icon. Sheri...
Hi Sheri, Thank you! for sharing your accomplishment. It's useful and it'll also help my understanding as I (slowly) learn higher levels of Perl. ... Likely...
I'm sure that this script has already been done by someone and I don't want to re-invent the wheel. I want to be able to strip out images and/ or tables from...
You're more sure than I am rdeckard1! LOL I strip tags all the time and for me it's either everything or nothing.. I'm not saying what you want to do can't be...
You can use this: H="tag buster" ^!Replace "</*^?[What tag?=_FONT|I][^>]*>" >> "^?[Replace with?=]" IRWA Leave the "replace with" part blank and it's...
Michael Gerholdt
keywordz@...
Feb 8, 2003 3:39 am
9811
Hi If I make a mistake in the quicklist say d:\html\midi\*.clb or wish to remove entries from the quicklist the only way is to edit the ini , the only problem...
As I understand it, it only reads the ini when the program is first started. I am not aware of a way to make NoteTab read the ini without a re-start. I believe...
Hi Larry, Dave, ... I think ^!ProgIniLoad is supposed to force a current read of the ini except for the autoload section. help > help on clip programming >...
... Larry, David and Alan, It's been a long time since I've used Notetab Standard, or, in my case, SuperNoteTab. That was way back when I wasn't real sure...
I have many clips that check and change some ini parameters, but occasionally a manual ini edit is required. Any time I need to do that I close NoteTab and...
Hi What I can do select line by line and place each line into 3 variables ,Read and then moves to the next line into the same 3 variables , small portion below...
... Hi David, To process a file line by line: ^!Jump Doc_Start ^!SetWordWrap Off ... ^!Select EOL ^!Set %var1%="^$GetSelection$" ;more processing ^!Jump +1 ...