Jump to content

victor

Active Members
  • Posts

    41
  • Joined

  • Last visited

Profile Information

  • Interests
    Scripting | I check this forum almost everyday

victor's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi as per title , how can i execute autoit script from lua ? from what I can find out I can execute command via os.execute() using lua under window I was wondering if anyone had done something similar before. any help would be greatly appreciated Regard Vic
  2. many thanks,
  3. is it possible to redim 2d array ? ReDim $Array[1][2] $Array[ubound($Array)-1] = [ 1 , "Test"] ReDim $Array[1][2] $Array[ubound($Array)-1] = [ 2 , "Test2"] _ArrayDisplay($Array) I wanted to add new item into 2d array
  4. Hi i have a quick question , how do I split a string into int. I want to sort it numerically Spliting string into int Func _TestSort() $Matrix = "12,21,2,3,1" local $currentmatrix = StringSplit( $Matrix,",",0) _ArrayDisplay($currentmatrix) _ArraySort($currentmatrix) _ArrayDisplay($currentmatrix) EndFunc return - > 1 , 12 2, 21
  5. Thanks , Yes it's for SciTE stdout , I had tried the above code and it seem only the BLUE is working ConsoleWrite('> = Blue' & @LF)
  6. Hi , I wonder if ConsoleWrite can out put different text color ? cheer
  7. I am well aware of the rules , although the example that used in the is for a bot or game , doesn't mean that I am writing one. I am merely asking how to find a position on screen
  8. Hi I wanted to find a position on the screen to set the initial pixel media - removed due to confusing reason Similar to what achieved on the video . the script on the video find the possition of the box on screen automatically. I wonder how it achieved ?. I had tried the PixelSearch function but it doesn't work as there are same colour everywhere. does the pixel search able to read multiple pixel as reference point ? or pattern matching ? Does anyone had any suggestion ? p/s the location of the window change slightly everytimes. Regards,
  9. _WinAPI_InvalidateRect($hWnd) never found it , thanks
  10. Thanks , I was able to make a mark on screen based on the following how do I clear the screen ? . I had tried to release using _WinAPI_ReleaseDC($hWnd, $hDC) but it doesn't work
  11. Hi Everyone, I was wondering if it's possible to mark something on screen. for example a red dot or an image will do. is there anyway that I can mark something on screen and leave it there until the program close? cheers
  12. Hi Everyone, I was wondering if it's possible to mark something on screen. for example a red dot or an image will do. is there anyway that I can mark something on screen and leave it there until the program close? cheers
  13. I seem to be hitting a wall, when I run the code below it skipped a few row in an array when I including the vertical array . please help , I need an fresh eye to point out my error . thanks #include <Array.au3> Global $Matrix_o[1] = ["00"] Global $Matrix_o_height[1] = ["1"] Global $Vertical[10] = [3,3,3,1,3,4] $MatrixType = $Matrix_o findnumber($MatrixType ) Func findnumber($MatrixType) local $landing local $Score[1] local $numberofscore =0 FOR $h =0 to UBound($MatrixType)-1 Step 1 For $i = 0 to UBound($Vertical) - StringLen($MatrixType[$h]) Step 1 for $j =0 to 10 step 1 if $j = $i Then $numberofscore += 1 ReDim $Score[$Score[0] + $numberofscore] $Score[ubound($Score)-1] = $Vertical[$i] & "-" & $i & "-" & $h ; it doesn't skip when I excluded the vertical array ;$Score[ubound($Score)-1] = $i & "-" & $h EndIf Next ; for j Next ; for i NEXT ; for element _ArrayDisplay($Score) EndFunc
  14. Hi Thanks, for the tips. one thing that I don't quite understand is why my code below doent's loop ? like it suppose to ? $vertical = 1 $test = 3 local $bArray[1] $vertical = 1 $test = 3 for $i = 0 to 10 step 1 ReDim $bArray[$bArray[0] + 1] $bArray[ubound($bArray)-1]=$vertical & " " & $test Next _ArrayDisplay($bArray)
  15. Hi Everyone , I have a question about array and i can't find the answer anywhere online. I know you can add an element to an array like below but what about 2D array ? Local $arr[3] ; Make room for three elements ;Assign some data $arr[0]="Element 1" $arr[1]="Element 2" $arr[2]="Element 3" how do i add data for avArray ? Local $avArray[3][3] $avArray[3][3]=[2,5,6] [2,5,6] [5,6,3] [5,5,2] p/s I don 't want to do it all in one go. , I want it to be added one by one Local $avArray[5][3] = [ _ [5, 20, 8], _ [4, 32, 7], _ [3, 16, 9], _ [2, 35, 0], _ [1, 19, 6]]
×
×
  • Create New...