Jump to content

flyingmarsii

Members
  • Posts

    3
  • Joined

  • Last visited

flyingmarsii's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Much quicker than 2 seconds,but you can add sleep(2000) before Wend. But I think Geir1983's opinion is more effective
  2. Maybe you need use StringRegExp() While 1 $text=ControlGetText("[CLASS:tooltips_class32]","","") $strtxt = StringMid($text, 1, 1) $var = StringRegExp($strtxt,'\bc',1) If $var = 1 Then ;sorry i'v plus extra $strtxt here before,so I delete it Exit EndIf Wend My suggestion,
  3. #include <array.au3> Local $i Local $Reward[7],$oTemp[7] For $i = 1 To 2 ;FindPicE is a function from a Dll called dmsoft,Its returned value such as (No.|intX|intY) to sign out a picture in windows. $Reward[$i] = $dm.FindPicE(0, 0, 1600, 900, 'Reward'&$i&'.bmp', "000000", 0.5, 0) $oTemp[$i] = StringSplit($Reward[$i],"|",3) MsgBox(0,0,$oTemp[$i][1]) Next Exit The $oTemp[$i][1] is Dyadic array,But What I wanna to get is unary array. How can I make it ??? I've tried to Local $oTemp[7][3] but i'm failed
×
×
  • Create New...