eMOO Posted April 12, 2010 Posted April 12, 2010 I've looked pretty hard for this, maybe what I am searching for, or maybe how I am is wrong. I need a simple way to use a range of numbers without having to type every number in the range. Example of the scope of the range I need: 1 - 82315656 it is for reading a pixel color in decimal using PixelGetColor() here is my attempt at a work around, there must be an easier way. If Not($pixcolor < $hp20 - 5000000 or $pixcolor > $hp20 or $pixcolor = $hp20) then func() I am just a basic MACROer so... i'm not very good at this Thanks in advance!
Moderators Melba23 Posted April 12, 2010 Moderators Posted April 12, 2010 eMOO,A Switch structure might be the thing you are looking for as it can test for (multiple) ranges:Switch <expression> Case <value> [To <value>] [,<value> [To <value>] ...] statement1 EndSwitchLooking at the range of numbers you are testing in your posted If statement:0 $hp20 - 500000 $hp20 82315656 | | xxxxxxx xxxxxxxxxxxxxxxxxxxxxI think you could run the following Switch - it is a fair bit easier to understand :Switch $pixcolor Case $hp20 - 500000 To $hp20 - 1 func() EndSwitchI hope this helps. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now