Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 6 of 6
  1. #1
    Join Date
    Sep 2002
    Posts
    39

    2 New Features: Spell Checker & a NOT parameter

    #1) A spell checker for checking all those dialog & other window types.

    #2) a NOT parameter. The NOT parameter would be for like, "IF %Variable% NOT = THIS". This would check to make sure that the %Variable% is not equal to "THIS". Of course, there are ways of making it so that you can find this information out anyways, but this would be a time & effort saver.

  2. #2
    Join Date
    Jul 2001
    Location
    Indigo Rose Software
    Posts
    1,834

    Re: 2 New Features: Spell Checker & a NOT parameter

    For your #2, there is currently an operator to check if one operand is not equal to the other operand. You can either use != or <> to accomplish that condition.
    Darryl
    Indigo Rose Corporation

    Product Guides: AMS80 | SUF9 | TU30 | VP30 |MSIFACT |DeltaMAX

  3. #3
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728

    Re: 2 New Features: Spell Checker & a NOT parameter

    There's also a unary not operator, so if you want to test if something is false, you can use:

    <pre>if( !%variable% )
    // only do this if %variable% is false
    end if</pre>
    --[[ Indigo Rose Software Developer ]]

  4. #4
    Join Date
    Sep 2002
    Posts
    39

    Re: 2 New Features: Spell Checker & a NOT parameter

    Well, the "NOT" operator is much more user friendly IMO. Anyways, good to know there is an existing alternative. Better than the way I have been doing it I suppose (2nd variable that sets a true or false value).

  5. #5
    Join Date
    Sep 2002
    Posts
    39

    Re: 2 New Features: Spell Checker & a NOT parameter

    I tried doing

    if (!%variable% = TRUE)
    display dialog
    end

    &amp; it didn't work. Any other ideas?

  6. #6
    Join Date
    Sep 2002
    Posts
    39

    Re: 2 New Features: Spell Checker & a NOT parameter

    nevermind, I got it working. thanks anyways.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts