Jump to content

KutayAltinoklu

Members
  • Posts

    10
  • Joined

  • Last visited

About KutayAltinoklu

  • Birthday January 1

Recent Profile Visitors

226 profile views

KutayAltinoklu's Achievements

Seeker

Seeker (1/7)

4

Reputation

  1. Forum Rules1. Do not ask for help with AutoIt scripts, post links to, or start discussion topics on the following subjects:Launching, automation or script interaction with games or game servers, regardless of the game.
  2. Okay I Noticed I Forget to place .DLL Files Than Put Them To My Script And It Works Here is the Fixed Files Of My Script. #include 'ImageS.au3' $x = 0 $y = 0 $ara = _ImageSearchArea("Zip.bmp", 1, 1, 0, @DesktopWidth, @DesktopHeight, $x, $y, 0) If $ara = 1 Then MsgBox(0, "1", "") Else MsgBox(0, "0", "") EndIf ImageSearchExample.zip
  3. Please Close This Topic I Fix My Problem On my Own.
  4. Thanks For Your Helps I Tried To do it , it always turn me 0 ım searching the forum for 5 hours and its still not working Also I will give you guys Files to understand if ım doing .bmp wrong. #include "ImageSearch.au3" global $y = 0, $x = 0 $Search = _ImageSearchArea('Zip.bmp', 1,0,0,@DesktopWidth,@DesktopHeight,$x,$y,0) If $Search = 1 Then MsgBox(0,"","Good") ElseIf $Search = 0 Then MsgBox(0,"","Bad") EndIf
  5. Thank All Whoever Try To Help Me The Problem is At The End Of The MsgBox(0, $UserData1, $UserData2) Dosent return anything and ım using msgbox understand is it gettin my Datas #include <StaticConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiButton.au3> #include <EditConstants.au3> #include <ComboConstants.au3> $Forma = GUICreate("Form", 291, 261, -1, -1, -1, -1) $Ext = GUICtrlCreateCombo("..", 50, 50, 193, 21, -1, -1) GUICtrlSetData(-1, "") GUICtrlCreateLabel("Manager", 70, 20, 193, 15, -1, -1) GUICtrlSetFont(-1, 10, 900, 0, "Arial Black") GUICtrlSetColor(-1, "0x008000") GUICtrlSetBkColor(-1, "-2") GUICtrlCreateLabel("Enter HexCode", 80, 80, 193, 15, -1, -1) GUICtrlSetFont(-1, 10, 900, 0, "Arial Black") GUICtrlSetColor(-1, "0x008000") GUICtrlSetBkColor(-1, "-2") $HexCode = GUICtrlCreateInput("", 50, 109, 193, 20,) GUICtrlSetState(-1, BitOR($GUI_SHOW, $GUI_ENABLE, $GUI_ONTOP)) Global $BilgiGonder = GUICtrlCreateButton("Bilgileri Gönder", 50, 212, 193, 30, -1, -1) GUICtrlSetFont(-1, 12, 900, 0, "Arial Black") GUICtrlSetColor(-1, "0x008000") $Colour = GUICtrlCreateCombo("", 50, 169, 193, 21, -1, -1) GUICtrlSetData(-1, "") GUICtrlCreateLabel("Manager", 70, 142, 193, 15, -1, -1) GUICtrlSetFont(-1, 10, 900, 0, "Arial Black") GUICtrlSetColor(-1, "0x008000") GUICtrlSetBkColor(-1, "-2") GUISetState(@SW_SHOW, $Test) ; ------------------------------------------------------------------------------ ;ComboBox() Değişkenlerini Ayarlar. ; ------------------------------------------------------------------------------ GUICtrlSetData($Ext, ".txt|.ini|") GUICtrlSetData($Colour, "Red|Blue|Black|Pink|Dark Blue|Magenta|White|Brown") While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $BilgiGonder $UserData1 = GUICtrlRead($Ext) ExitLoop Case $BilgiGonder $UserData2 = GUICtrlRead($Colour) ExitLoop Case $BilgiGonder $UserData3 = GUICtrlRead($HexCode) ExitLoop EndSwitch WEnd MsgBox(0, $UserData1, $UserData2)
  6. Awesome Work Just I Want To Say Thanks For Developing.. Also İts Open source Code So we can improve(ı cant ı dont have skill like you) Also Learn Something From Your Script
  7. First Of All Thanks For Helping me. #include <File.au3> Local $ErrorFile = FileOpen(@ScriptDir & "\Log\Error.log", 1) Func logTest() _FileWriteLog($ErrorFile, "Test") EndFunc Call ("logTest")
  8. Thank You Very Much You Just Saved My Life I Have Signed Up To Say Thank You But I Think I Love Autoit So I will use my account to.
×
×
  • Create New...