Jump to content

darkangel37

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by darkangel37

  1. what should i put? sorry im kinda newbie here
  2. for emails word.txt file contain some hello,hi, dear. and bunch of shortcut greetings
  3. hello im trying to automate random greetings word from .txt file and write/send some strings but it gives me error please be gentle to me im kinda newbie thank you $File = FileReadToArray("words.txt") $RandomWords = $File[Random(0, UBound($File) - 1, 1)] send ("$RandomWords") sleep (1000) send ("{enter}")
  4. errr okay guys im a complete newcomers/newbie and wrong... but i just followed what you said sir melba23 so created a new topic @_@
  5. sorry but im a complete newbie here on comunity please don't throw me away like rat .. all of us start from scratch and start from newbie. is that how they treat newcomers/newbies? i am using google search and i found this forum and i thought using this macro for flash internet games is okay... because i googled this and this came up '?do=embed' frameborder='0' data-embedContent>> the thread clearly he is using it for game automation but. he never banned or topic lock this is so unfair you banned me and closed all my topics while his topic is stil alive in this forum @.@ where is my justice '?do=embed' frameborder='0' data-embedContent>>
  6. Hi I'm newbie using autoit so please guys be gentle ) so i make a flash internet browser script it perfectly works on single pixelsearch loop , but I cannot make it work if I put another 2 pixelsearch is there something wrong? help here's my script HotKeySet ("{HOME}", "Start") HotKeySet ("{END}", "_Exit") While 1 Sleep(200) WEnd Func Start() While 1 $colorgreen = PixelSearch ( 0,0, @DesktopWidth, @DesktopHeight, 0x00FF00) If Not @error Then MouseClick ( "Left" , $colorgreen[0], $colorgreen[1] , 1,1) ;spam left click on the green-color areas Sleep(100) Else PixelSearch(0, 0, @DesktopWidth, @DesktopHeight, 0xFF0063) If Not @error Then SoundPlay(@WindowsDir & "\media\tada.wav", 1) ;Alert me using very loud noise when it founds pink color lol Sleep(100) Else Send("{F5}") ;Refresh button EndIf EndIf WEnd EndFunc Func _Exit() Exit EndFunc
×
×
  • Create New...