shiv Posted August 1, 2013 Share Posted August 1, 2013 Hi AutoIT Team, I am using a application which has 4 check boxes.and whose ID's are "[CLASS:Button; INSTANCE:1]" "[CLASS:Button; INSTANCE:2]" "[CLASS:Button; INSTANCE:3]" "[CLASS:Button; INSTANCE:13]" Now what i want? Step1: I want to use an Array to store the values for the above mentioned ID's. Step2: Can i use ControlCommand(" ", " ", "[CLASS:Button; INSTANCE:1]", "IsChecked") to know that the check box is checked or not. I want to use array in place of [CLASS:Button; INSTANCE:1] inside the controlcommand Step3: I want to get the message which describe the value for the step2 Kindly Help Link to comment Share on other sites More sharing options...
Edano Posted August 1, 2013 Share Posted August 1, 2013 (edited) hmm i think we want to see some sort of code, we are no teachers and we don't do codes for others for free. Edited August 1, 2013 by Edano [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] Link to comment Share on other sites More sharing options...
shiv Posted August 1, 2013 Author Share Posted August 1, 2013 yeah, But this is AutoIT help and support.what does it mean then? Link to comment Share on other sites More sharing options...
Edano Posted August 1, 2013 Share Posted August 1, 2013 help and support, not do me this and that [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] Link to comment Share on other sites More sharing options...
shiv Posted August 1, 2013 Author Share Posted August 1, 2013 I was trying the the code by using Autoit Help. But i did not understand the array Clearly. That's why i asked for the help. What,s wrong. Link to comment Share on other sites More sharing options...
JohnOne Posted August 1, 2013 Share Posted August 1, 2013 Here's some code. #include <Array.au3> Local $aArray[4] = ["[CLASS:Button; INSTANCE:1]", "[CLASS:Button; INSTANCE:2]", "[CLASS:Button; INSTANCE:3]", "[CLASS:Button; INSTANCE:13]"] _ArrayDisplay($aArray) Now post yours. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 1, 2013 Moderators Share Posted August 1, 2013 vis,If you concatenate the code like this it should work: Local $aInstance[4] = [1, 2, 3, 13] For $i = 0 To 3 ControlCommand(" ", " ", "[CLASS:Button; INSTANCE:" & $aInstance[$i] "]", "IsChecked") NextM23 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 Link to comment Share on other sites More sharing options...
spudw2k Posted August 1, 2013 Share Posted August 1, 2013 Nice Melba. Edano 1 Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
shiv Posted August 1, 2013 Author Share Posted August 1, 2013 John/Matt, Thanks a lot! Link to comment Share on other sites More sharing options...
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