Page 3 of 4 <1234>
Topic Options
#106398 - 2003-11-03 11:10 PM Re: Kixtarter - Kixtart Script Editor
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

About upper/lower-case translations.

In both tools kixref and kixstrip we do translations.
kixref show /translate what the result can be after such translation
  • macro, string = lowercase
  • command = uppercase
  • function = combination of upper/lower-case
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#106399 - 2003-11-03 11:15 PM Re: Kixtarter - Kixtart Script Editor
Kdyer Offline
KiX Supporter
*****

Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
quote:

About upper/lower-case translations.

In both tools kixref and kixstrip we do translations.
kixref show /translate what the result can be after such translation

While this maybe "neat" for KiXref, KiXstrip.. What does this have to with this Editor?

Kent
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's

Top
#106400 - 2003-11-04 02:41 AM Re: Kixtarter - Kixtart Script Editor
ADynes Offline
Starting to like KiXtart
*****

Registered: 2003-10-31
Posts: 184
Loc: Ohio
R2D2-
Look up a couple posts. The next version already has that issue corrected by matching the macros with a macro list, which is tied with my version compatibility setting so only macros that are valid for the version your on will highlight. Also I think it will be o.k. to have anything following a $ be a variable because I dont highlight things inside quotes. Therefor

$ThisWillHighlight = QUOTE But $4.23 this will not ENDQUOTE

Or a better example would be:
? QUOTE The value of $ThisIsntColored is ENDQUOTE + $ThisIs

I think it will work pretty well this way and any variable you put in will highlight.

MCA - kdyer
I'm always open to suggestions but the reason I have them all in uppercase when you do an insert is because I used the 3.61 and 4.21 Kixtart manuals for all my syntax and I tried to follow it to the letter. Its all in uppercase in the manual so mine is too. If I did play with it I probably would go with mixed case (I blieve thats the term for it) for commands and functions with macros still in uppercase. Programming wise it would be easy to do one and not the other the way the color routine is written. Might be a addition, but its really a nice thing to have and not a issue per se.

As before if anyone has any comments, suggestions, or the like please let me know. I do have a comment though..maybe if the forums don't like your post (the last time I typed all this it said HTML wasnt allowed) it should just show you it again and let you edit it and repost. When I hit the back button my text was all gone. I think Ill select all and copy before this reply....

Allan.
_________________________
Kixtarter - KiXtart Script Editor
http://www.AllanDynes.com/

Top
#106401 - 2003-11-04 02:47 AM Re: Kixtarter - Kixtart Script Editor
Les Offline
KiX Master
*****

Registered: 2001-06-11
Posts: 12734
Loc: fortfrances.on.ca
This forum doesn't allow HTML but the scripts forum does. Somebody should do something about it.
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.

Top
#106402 - 2003-11-04 02:55 AM Re: Kixtarter - Kixtart Script Editor
Sealeopard Offline
KiX Master
*****

Registered: 2001-04-25
Posts: 11165
Loc: Boston, MA, USA
However, you could have a variable inside code, thus you're color coding would give incorrect results. For example
code:
$rc=setoption('novarsinstrings','on')
$var='true'
; $var is just text
? 'this is not $var'
$rc=setoption('novarsinstrings','off')
; $var is now a variable
? 'this is not $var'
; $var is just text
? 'this is not $$var'

_________________________
There are two types of vessels, submarines and targets.

Top
#106403 - 2003-11-04 03:40 AM Re: Kixtarter - Kixtart Script Editor
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
none of the forums do allow html tags in sense he is talking about.
this (general) does not allow at all, whereas others do allow some.
to have your HTML allowed, look for postprep.
when you want to post code where there is onclick or similar, do remember to use either postprep or code-tags. otherwise board will complain and not allow your posting.

what comes to loosing your post, weird.
I do have the habit of screwing around and going back and forth before I click submit and it never disappears.
_________________________
!

download KiXnet

Top
#106404 - 2003-11-04 11:29 AM Re: Kixtarter - Kixtart Script Editor
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear Allen,

Ruud is using in his documentation keywords which contains also lower-case letters.
Only on specific places he is using only uppercase letters. See for example his
examples.
Also in all kind of other documentation you can see the same structure f.e. manual

Using upper- and lowercase letters in keywords makes scripts easier to read.
F.e. CompareFileTimes can you see as a concatenation of three words without spaces.

Allen, for us it isn't necessary. We translate them for identical format by one or
our tools. It was only an idea.
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#106405 - 2003-11-04 06:22 PM Re: Kixtarter - Kixtart Script Editor
ADynes Offline
Starting to like KiXtart
*****

Registered: 2003-10-31
Posts: 184
Loc: Ohio
MCA-
I've been going by the Adobe format manuals, in which the name and its use are all in uppercase. Oh well, no biggie though.

Lonkero-
Its random, about 1 of every 5 or 6 times when I hit back the infos gone. Not just here, on a lot of sites. Also my mistake was I used a <-- to point out something and it picked up the < as HTML.

Jen-
My color coding ignores the single quotes, which I need to fix so things within arn't coded. That will be next on the list.

Allan
_________________________
Kixtarter - KiXtart Script Editor
http://www.AllanDynes.com/

Top
#106406 - 2003-11-07 04:18 PM Re: Kixtarter - Kixtart Script Editor
ADynes Offline
Starting to like KiXtart
*****

Registered: 2003-10-31
Posts: 184
Loc: Ohio
I just sent out version 0.9.8 to those that have requested it or are currently hosting my file on thier site. From version 0.9.4 heres some of the important changes:

1. Running a script can besent to its own console (default) or the internal output window. The console is like running it form a command prompt and is much more stable

2. Thing inside single quotes no longer get highlighted, like it was for double quotes.

3. Has the ability to change the case of macros to upper, and command and functions to either mixed case or upper case.

4. Install should put a single shortcut on the desktop instead of its own group. Also readme file is available from the help menu.

The rest of the changes were little bug fixes here and there. Hopefully those that have recieved the file will replace the ones on there site with the new install, it will be called Kixtarter098.msi to indicate the new version. Thanks for all that have emailed/posted. If you find anything else please let me know.

Allan.
_________________________
Kixtarter - KiXtart Script Editor
http://www.AllanDynes.com/

Top
#106407 - 2003-11-07 11:50 PM Re: Kixtarter - Kixtart Script Editor
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
haven't got it by this time...
_________________________
!

download KiXnet

Top
#106408 - 2003-11-08 10:14 AM Re: Kixtarter - Kixtart Script Editor
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear Jooel,

We send you a copy of it.
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#106409 - 2003-11-08 03:44 PM Re: Kixtarter - Kixtart Script Editor
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear Jooel,

We get our mail back. Possible there is a size limit for posts on hotmail.

Feedback
quote:

----- Doorgestuurd bericht van postmaster@mail.hotmail.com -----
Datum: Sat, 8 Nov 2003 01:24:07 -0800
Van: postmaster@mail.hotmail.com
Antwoorden aan:postmaster@mail.hotmail.com
Onderwerp: Delivery Status Notification (Failure)
Aan: scripting@wanadoo.nl

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

Jooel_Nieminen@hotmail.com

----- Einde doorgestuurd bericht -----

Can we send it to another address?
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#106410 - 2003-11-09 08:41 AM Re: Kixtarter - Kixtart Script Editor
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
sure, adpryner already had my real addy and wonder why he didn't send it there.
jooel dot nieminen at gwspikval.com

and yes, hotmail has limit.
for single mail I think the limit is 1M and box total size limit is 2M.
_________________________
!

download KiXnet

Top
#106411 - 2003-11-10 12:10 AM Re: Kixtarter - Kixtart Script Editor
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear Jooel,

Your profile contains the hotmail address. It was very logic, that Andy sends it to this
mail address.
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#106412 - 2003-11-09 03:06 PM Re: Kixtarter - Kixtart Script Editor
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
well, that mistake can happen.
last time he sent to my real addy (as I ask him to in this very topic) but hey, one can easily forget, right?
_________________________
!

download KiXnet

Top
#106413 - 2003-11-09 03:34 PM Re: Kixtarter - Kixtart Script Editor
Les Offline
KiX Master
*****

Registered: 2001-06-11
Posts: 12734
Loc: fortfrances.on.ca
MCA,
With the never-ending battle of spam, it is very common for ppl to not publish their work email address but rather to use something that is disposable. I do the same thing.
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.

Top
#106414 - 2003-11-10 10:30 AM Re: Kixtarter - Kixtart Script Editor
Co Offline
MM club member
***

Registered: 2000-11-20
Posts: 1342
Loc: NL
That's why I use netscape mail... there is a 5 mb limit and no spam jet.. [Big Grin]
_________________________
Co


Top
#106415 - 2003-11-10 02:09 PM Re: Kixtarter - Kixtart Script Editor
ADynes Offline
Starting to like KiXtart
*****

Registered: 2003-10-31
Posts: 184
Loc: Ohio
Lonkero-
I did send it to your real address, I'll send another copy. Also I think I found space to host so hopefully I'll be editing my original post with a address in the near future.

Allan.
_________________________
Kixtarter - KiXtart Script Editor
http://www.AllanDynes.com/

Top
#106416 - 2003-11-10 03:28 PM Re: Kixtarter - Kixtart Script Editor
ADynes Offline
Starting to like KiXtart
*****

Registered: 2003-10-31
Posts: 184
Loc: Ohio
To all-

I found some permenant space to host the file. Please see the original post if you want to download it. The current version is 0.9.8. Heres the known bugs (which have bene corrected in the next revision but not in this one):

1. Fixed a bug during some resizing or minimizing window that was causing a "Run-time Error '380'".
2. Fixed a bug on settings form that prevented the Upper Case option from filling in when form loaded.
3. Kixtart location dialog will look in the current path and the windows directory on startup if Kix32.exe was not previously specified. Also if Kixtart was not specified and a run is attempted it will prompt for the location instead of erroring out.

Anything else let me know about.

Allan
_________________________
Kixtarter - KiXtart Script Editor
http://www.AllanDynes.com/

Top
#106417 - 2003-11-11 07:31 AM Re: Kixtarter - Kixtart Script Editor
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
I anyways uploaded the file on my server.
http://www.gwspikval.com/jooel/files/kixtarter
is the place.
Kixtarter.msi gives the latest version which currently is same as:
Kixtarter098.msi
_________________________
!

download KiXnet

Top
Page 3 of 4 <1234>


Moderator:  Arend_, Allen, Jochen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Mart 
Hop to:
Shout Box

Who's Online
0 registered and 323 anonymous users online.
Newest Members
Audio, Hoschi, Comet, rrosell, PatrickPinto
17880 Registered Users

Generated in 0.074 seconds in which 0.026 seconds were spent on a total of 13 queries. Zlib compression enabled.

Search the board with:
superb Board Search
or try with google:
Google
Web kixtart.org