Jump to content

Recommended Posts

Posted

example:

Func Gethandle()
    For $I = 1 To 30
        $J = Execute("$A" & $I)
        GUICtrlSetData($J, "")
    Next
$ARRAY =  WinList("PiKaChu")
    For $I = 1 To $ARRAY[0][0]
        $HWND = $ARRAY[$I][1]
        $J = Execute("$A" & $I)
        GUICtrlSetData($J, $HWND)
 Next
EndFunc

I have Get Some error for execute while obfuscator the script

Can you help Me Obfuscator?  or replace Execute  To any  Same Functions

Thanks Brothers

Posted

Obfuscator will never work on this script.

To solve your issue you likely need to use an Array instead of $J1, $J2 ...etc.

Jos

 

Can you help Me rewire  This scripts  not use execute  . i'm Autoit Newbie

thank You very Much

Func Gethandle()
    For $I = 1 To 30
        $J = Execute("$A" & $I)
        GUICtrlSetData($J, "")
    Next
$ARRAY =  WinList("PiKaChu")
    For $I = 1 To $ARRAY[0][0]
        $HWND = $ARRAY[$I][1]
        $J = Execute("$A" & $I)
        GUICtrlSetData($J, $HWND)
 Next
EndFunc

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
×
×
  • Create New...