Jump to content

kritya

Members
  • Posts

    10
  • Joined

  • Last visited

kritya's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks for the reply. Yes that game has screent shot option. But how do i use it using auto it ?
  2. Hi , I am making an app which works on loop and capturing screen shots. #include <ScreenCapture.au3> sleep(5000) _Main() Func _Main() Local $hBmp[10] $i=0 while $i<10 ; Capture full screen $hBmp[$i] = _ScreenCapture_Capture("GDIPlus_Image"&$i&".jpg") $i=$i+1 sleep(1000) Wend EndFunc ;==>_Main This works perfectly fine unless I launch a full screen application such as a game. What it does , is just capture the first shot and then saves it all over. Help me over this please. Thanks
  3. Yes , I know that. I am not good with regex but yea I can search it but wasn't able to find on this And well by using StringMid() I made that. Thanks all. Code : #include <Array.au3> $string="1 2 3 4 5 6 7 8 9 1011" $len=StringLen($string) MsgBox(0,"",$len) $len=$len/4 Local $arr[$len+1] MsgBox(0,"",$len) For $i=0 To $len $arr[$i]=StringMid($string,$i*4+1,4) Next _ArrayDisplay($arr) Any Better way of doing this or any kind of problem in this that may be faced in BIG strings or is the best method ? Thanks
  4. Hi, I have string , which I want to split into strings of equal size(characters) lets say 4 or 5. Did some searching. Found this $aNumber = StringRegExp($string, "\d{4}", 3) This only works on numbers and not on general string. Please Help me. Thanks
  5. Well I mean to say that when u got the data please pm me. I am also trying to make something like that.
  6. Well i also want something like this. But can't yet make something. P.s: If u want i can test the code for you.
  7. Well things like in-game chat or some kind of notifications , etc
  8. Ok. But it still doesnt works on full screen games. and I know some softwares like Teamspeak 3 and Mumble who have overlay which do work.
  9. Thanks for the replies But using BitOr($WS_POPUP + $WS_VISIBLE), 0x08000000) Gives me an error.
  10. Hi, I was trying to make an overlay GUI which could be displayed above all the open windows(including games , etc) I tried to do something with Koda and made something(code is below) it works for all windows except full screen games. Is the some style or ex-style I have missed or added an extra one ? If there is any other way of making an overlay that too would of course work #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 615, 440, -1, -1, BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP,$DS_MODALFRAME), BitOR($WS_EX_OVERLAPPEDWINDOW,$WS_EX_TOOLWINDOW,$WS_EX_TOPMOST,$WS_EX_WINDOWEDGE,$WS_EX_LAYERED)) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Thanks
×
×
  • Create New...