#15651 - 2002-01-02 10:39 PM
I am new!!!
|
debbie
Fresh Scripter
Registered: 2002-01-02
Posts: 5
|
My job is requiring to learn Kixtart. I have about 3 months of scripting experience and not sure where to start implementing kixtart. Any suggestions?
|
|
Top
|
|
|
|
#15652 - 2002-01-02 10:49 PM
Re: I am new!!!
|
Kdyer
KiX Supporter
   
Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
|
Debbie,Welcome! You are at the right place. You will find that people here are pretty friendly. Some resources for you - Brainbuzz - Forum and example scripts scripting@wanadoo.nl - scripting, tools & other stuff The Kixtart Archives, Ruud has provided some good "real-time" examples of what to do with the commands within Kixtart. If you ask questions, we usually try to be "gentle."  HTH, - Kent
|
|
Top
|
|
|
|
#15654 - 2002-01-04 11:01 PM
Re: I am new!!!
|
Anonymous
Anonymous
Unregistered
|
Welcome Debbie! I think it's a good idea to start reading the manuel. So you know how you can get some variables. If you have any questions you can alway post them here.
|
|
Top
|
|
|
|
#15656 - 2002-01-05 01:25 AM
Re: I am new!!!
|
J-me
Fresh Scripter
Registered: 2001-12-20
Posts: 21
Loc: Denver CO
|
One helpful thing for me is looking at the UDFs (User Defined Functions) that have been posted. They are very easy to implement, and keep you from having to reinvent the wheel. There are a lot of things all of us do over and over these will help A LOT. Plus you get some insight on how to actually apply commands you may not understand.
|
|
Top
|
|
|
|
#15657 - 2002-01-05 02:40 AM
Re: I am new!!!
|
NTDOC
Administrator
   
Registered: 2000-07-28
Posts: 11634
Loc: Space
|
Hello Debbie... hope your still around.Here is an example screen for a logon. Copy the code from below and paste into MS Word, then copy again from Word and paste into your favorite text editor and save it as some sample name. Then run it from a DOS Box like this: KIX32.EXE sample.kix code:
; Sample logon screen - Ron Lewis aka NTDOC CLS SMALL Color b+/n BOX (0,0,24,79,GRID) ; background grid Color b/n ;BOX (2,3,11,77,┼ ;) ; shadow of the box BOX (2,3,13,77,┼ ;) ; shadow of the box Color g+/n ;BOX (1,2,10,76,FULL) ; Green box BOX (1,2,12,76,FULL) ; Green box Color b+/n IF ((@TIME > "00:00:00") AND (@TIME < "12:00:00")) AT(9,5) "Good Morning @fullname" AT(10,5) "You are entering the @domain domain." Color r+/n AT(11,5)"Please wait - Network authentication is being verified . . ." Color b+/n ELSE Color b+/n IF ((@TIME > "12:00:00") AND (@TIME < "18:00:00")) AT(9,5) "Good Afternoon @fullname" AT(10,5) "You are entering the @domain domain." Color r+/n AT(11,5)"Please wait - Network authentication is being verified . . ." Color b+/n ELSE AT(9,5) "Good Evening @fullname" AT(10,5) "You are entering the @domain domain." Color r+/n AT(11,5)"Please wait - Network authentication is being verified . . ." Color b+/n ENDIF ENDIFColor w+/n AT (2,5) "Userid : " ; label for user and network identification text strings AT (3,5) "Full Name : " AT (4,5) "Workstation : " AT (5,5) "NT Domain : " AT (6,5) "Logon Server : " Color y+/n AT (2,20) @userid ; macro's for user and network identification text strings AT (3,20) @fullname AT (4,20) @wksta AT (5,20) @domain AT (6,20) @lserver ; Lists the authenticating server Color w+/n AT (15,10) "Please press any key to continue..." get $ ?
[ 05 January 2002: Message edited by: NTDOC ]
|
|
Top
|
|
|
|
Moderator: Jochen, Allen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Arend_, Mart
|
0 registered
and 384 anonymous users online.
|
|
|