lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO > Developer Discussions > Lua Programming Help (L)

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Unread 07-06-2011, 02:35 PM
Fortunis's Avatar
Fortunis Fortunis is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Mar 2011
Location: Leeds, UK
Posts: 72
ListBox number/string error (Help!) [SOLVED]

Heres the scenerio. Im making a Listbox for user input. The input range is 0-9999 and everything works according to plan with this until the next step.
Im placing an if-then-else-end statement in to check that no other characters/letters are used, for the listbox to be wiped clean and a message to the user that they inputted illegal data, but im getting 'attempt to compare number with nil' error.

Is there anything i can do to either allow the lua to ignore the error and carryon with the if-then-else-end statement or allow it to not do an error at all?

heres the code i have at the moment-

Code:
     ImageAmountInput:SetWantsKeyEvents( true );
     
     ImageAmountInput.KeyDown = function( sender, args )
        
        if args.Action == 162 then
            OpWindow:Activate();
            ImageAmountInput:SetSelection( 1, 4 );
            IAI = ImageAmountInput:GetText();
            IAI = tonumber( IAI );

            if  IAI >= 0 and IAI <= 9999 then -- ERROR produced here if non-numerical characters are used in user input box.
                ImageAmountInput:SetSelection( 0, 0 );
            else
                ImageAmountInput:SetText( "" );
                print ( "You entered an illegal entry" );
            end

        end

     end
__________________
Author of Mouse Cursor Highlighter Advanced

Last edited by Fortunis : 07-06-2011 at 03:14 PM.
Reply With Quote
 


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Listbox MrJackdaw Lua Programming Help (L) 3 05-31-2011 04:06 AM
LotRO annoyance number one. Digital_Utopia General Authoring Discussion (L) 3 01-12-2011 09:22 AM
Number Cooldown on Hotbar instead of timer? therams Interface Requests (L) 3 12-19-2010 05:56 AM
SVN error The Old One Site help, bugs, suggestions/questions 5 09-28-2010 03:46 PM
XML Version Number Question Kaylan XML modification help (L) 2 04-02-2007 11:34 AM


All times are GMT -5. The time now is 07:10 PM.


Our Network
EQInterface | EQ2Interface | Minion | WoWInterface | ESOUI | LoTROInterface | MMOUI | Swtorui