=sinister= Posted July 22, 2008 Posted July 22, 2008 #Include <Array.au3> $KeyOfC = _ArrayCreate("C", "D", "E", "F", "G", "A", "B") $KeyOfG = _ArrayCreate("G", "A", "B", "C", "D", "E", "F#") $Keys = _ArrayCreate($KeyOfC, $KeyOfG) MsgBox(0, "Test", _ArraySearch($Keys, "C")) I tried following but it just returns -1
NELyon Posted July 22, 2008 Posted July 22, 2008 The array isn't being populated in the above example, which is why ArraySearch is returning -1. Is this what you're after? #Include <Array.au3> $KeyOfC = _ArrayCreate("C", "D", "E", "F", "G", "A", "B") $KeyOfG = _ArrayCreate("G", "A", "B", "C", "D", "E", "F#") $Keys = _ArrayCreate("") _ArrayConcatenate($Keys, $KeyOfC) _ArrayConcatenate($Keys, $KeyOfG) MsgBox(0, "Test", _ArraySearch($Keys, "C")) Or were you attempting to create a two-dimensional array?
BrettF Posted July 22, 2008 Posted July 22, 2008 #Include <Array.au3> $KeyOfC = _ArrayCreate("C", "D", "E", "F", "G", "A", "B") $KeyOfG = _ArrayCreate("G", "A", "B", "C", "D", "E", "F#") $Keys = _ArrayCreate($KeyOfC, $KeyOfG) MsgBox(0, "Test", _ArraySearch($Keys, "C")) I tried following but it just returns -1 In V3.2.12.0 Helpfile Changelog: _ArrayCreate() documentation has been removed. The function is still present but may be removed at a later time. Scripts should be updated to use the array initialization syntax built into AutoIt. muttley I'm still unsure what you wish to achieve though. Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
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