Jump to content

Range of Numbers - simple?


eMOO
 Share

Recommended Posts

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!

Link to comment
Share on other sites

  • Moderators

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
EndSwitch

Looking at the range of numbers you are testing in your posted If statement:

0      $hp20 - 500000         $hp20        82315656
       |                      |
xxxxxxx                       xxxxxxxxxxxxxxxxxxxxx

I think you could run the following Switch - it is a fair bit easier to understand :) :

Switch $pixcolor 
    Case $hp20 - 500000 To $hp20 - 1
        func()
EndSwitch

I hope this helps. :(

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...