Hey Julie, In addition to what Larry and Marten suggested you might take a peek at ntp-clips msg# 6522 posted by Steve Veltkamp who had responded to somewhat...
10638
Martyn Folkes
mfolkes
Jul 4, 2003 1:26 pm
I have a clip that may be of some help, or at least give you some ideas. It has been well tested and all bugs found so far have been removed. Beware the long...
10637
Larry Thomas
back3home2003
Jul 4, 2003 1:11 pm
... NTP. ... Hi Julie, I would think that you should have to find a known date that falls on Friday. Then set up variables with the number of days in each...
10636
Julie
readingril
Jul 4, 2003 12:51 pm
Is there a clip function that can do "date math", for lack of a better word for it? Say I wanted to generate a list of Fridays and their dates for the next...
10635
John Parsons
snipsj
Jul 4, 2003 12:46 pm
... The only problem being that Irfanview only supports batch scanning if the scanner does... and as RP said they were using cheep scanners that seems...
10634
hugo_paulissen
Jul 4, 2003 12:08 pm
Hi RP, That sure is a hell of a job ;-). I don't know exactly how you plan to automate this scanning process with NoteTab, so maybe you could give some details...
10633
scheidrp
Jul 4, 2003 11:12 am
Having lurked on the Notetab and the Clips groups for some time now, I finally unashamedly (my spouse always says I have no shame) ask for a whole lot of help....
10632
Dick Gascoigne
bobbit_singa...
Jul 3, 2003 2:01 am
I've written a simple clip to take characters represented as hex values, and build the corresponding AlphaNumeric representation. If it fits what anyone ...
10631
mbl60181
Jul 2, 2003 5:16 pm
Thanks folks for all your suggestions. Looks like what I really need isn't in the current version... something like ^$IsDebugOn$. Maybe Eric will add it in V.5...
10630
Kevin Witherite
KWITHERITE@...
Jul 2, 2003 12:30 pm
Thanks Don that was an immense help. ... From: Don Passenger [mailto:dpasseng@...] Sent: Tuesday, July 01, 2003 2:28 PM To: ntb-clips@yahoogroups.com ...
10629
Alec Burgess
alecb3ca
Jul 2, 2003 2:22 am
RS, (Mike et al) Problem is (I think) that Mike NEVER needs to debug inside the Farclip (presumably its already been thoroughly debugged) but SOMETIMES he's...
10628
Don Passenger
dpasseng
Jul 2, 2003 12:28 am
... affect? (^% vs. %) I think it needs to be the latter. ^!ClearVariable %VariableName% Empties the specified variable. right you are Alan! When you do an...
10627
Alan C.
acummingsus
Jul 1, 2003 10:01 pm
On Tue, 1 Jul 2003 17:28:29 -0400, Don Passenger wrote: <snip code> ... ^!ClearVariable %Acquired_Angle% It's been a while. But didn't I once discover the...
10626
Larry Thomas
back3home2003
Jul 1, 2003 9:58 pm
Hi Hugo, ... Because he will not want the subclip to turn Debug on when it finishes after he has finished testing the main clip and removed the ^!SetDebug On ...
10625
RS
rs032602
Jul 1, 2003 9:50 pm
Mike, ... Then, do it in the FarClip: H=YourFarClip ^!SetDebug OFF [... here the clip's code ...] ^!SetDebug ON Regards, RS...
10624
hugo_paulissen
Jul 1, 2003 9:38 pm
... Mike (et al), Why don't you ^!SetDebug OFF at the beginning of the FARCLIP and switch it back [^!SetDebug] ON at the end of it? Hugo...
10623
Don Passenger
dpasseng
Jul 1, 2003 9:33 pm
... ^!SetWizardLabel "Enter values For Rafter" ^!SET %rise%=^?{Rise of Hip Rafter:}; %run%=^?{Horizontal or Linear length of Hip Rafter:} ^!Set...
10622
Don Passenger
dpasseng
Jul 1, 2003 9:31 pm
oh and yes, spaces are important! in fact you cannot have a space in a variable name ... notice that I used an inderscore in my examples Help says: A variable...
10621
Don Passenger
dpasseng
Jul 1, 2003 8:53 pm
^!Set %Acquired_Angle%=^$Calc(((arctan(^?[Rise of Hip Rafter:]/^?[Horizontal or Linear length of Hip Rafter:]))*180)/3.141593;6)$ at least if your math is good...
10620
Kevin Witherite
KWITHERITE@...
Jul 1, 2003 8:31 pm
Then would you use the variable like such: ^$Calc(26.9987-%Aquired Angle%) Are spaces important in the clip? ... From: Larry Thomas...
10619
Larry Thomas
back3home2003
Jul 1, 2003 8:25 pm
Hi Kevin, ... ^!Set %Acquired Angle%=^$Calc(((arctan(^?[Rise of Hip Rafter:]/^?[Horizontal or Linear length of Hip Rafter:]))*180)/3.141593;6)$ That should do...
10618
Kevin Witherite
KWITHERITE@...
Jul 1, 2003 8:01 pm
Once a number is determined through the use of ^$Calc can that number now be used in the same clip, maybe as a variable? For example: ^$Calc(((arctan(^?[Rise...
10617
mbl60181
Jul 1, 2003 7:43 pm
... Sure could but... I'm calling the ^!Farclip about 10 times in many different places and didn't want to bother with that method. -Mike...
10616
Don Passenger
dpasseng
Jul 1, 2003 7:23 pm
If you look at the is functions here: mk:@MSITStore:C:\Program%20Files92;NoteTab%20Pro\ClipCode.chm::/clip_language_ __testing_condit.htm (you may need to adjust...
10615
Larry Thomas
back3home2003
Jul 1, 2003 7:00 pm
I guess that my two prior posts would suggest ways to use variables as a flag to send a clip to many different places using the form: ^!Set %Command%=Goto...
10614
mbl60181
Jul 1, 2003 6:55 pm
Larry wrote ... Just do ... Yes but... the ^!Farclip is ran several times (over 10) from the clip I'm writting. So this is a mild pain in the dupa. ... I...
10613
Larry Thomas
back3home2003
Jul 1, 2003 6:45 pm
... I think that I have the solution to what you want to do. First set a veriable for the command. ^!Set %Command%=SetDebug On Then place the following code...
10612
Larry Thomas
back3home2003
Jul 1, 2003 5:19 pm
... It doesn;t seem to me necessary to know the status of Setdebug. Just do the following in your code. If SetDebug is on: ^!SetDebug Off ^!Farclip..... ...
10611
RS
rs032602
Jul 1, 2003 5:13 pm
Mike, ... I would turn off debugging before the call to FarClip and enable it afterwards: ^!SetDebug OFF ^!Farclip A_Clip_That_Doesnt_Need_Debugging ^!SetDebug...
10610
mbl60181
Jul 1, 2003 4:54 pm
Does anyone know how to check the status of debug from within a clip? I know that sounds like a silly question but it isn't really... I have a clip that is...