Results 1 to 7 of 7
  1. #1
    Limit67's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    139
    Reputation
    10
    Thanks
    9

    .ahk screenshot when 'tell' message received

    Was hoping someone could help me with a .ahk script. I'd like it to take a screenshot when somebody sends me a 'tell' message. I figure it would go something like:

    - Do a pixel search of the far bottom left, wouldn't even need to be that large of an area to save resources.
    - if Yes, take a Screenshot using some type of program (I'd use *******)


    Thanks for any and all help!

  2. #2
    CrazyJani's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2,475
    Reputation
    170
    Thanks
    15,666
    Quote Originally Posted by Limit67 View Post
    I'd use *******
    You'd use what? I'd use the default windows screenshot program

  3. #3
    Limit67's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    139
    Reputation
    10
    Thanks
    9
    I'd probably use Dr0pb0x. Why is that *******? Window's screenshot would work too.

  4. #4
    CrazyJani's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2,475
    Reputation
    170
    Thanks
    15,666
    Quote Originally Posted by Limit67 View Post
    I'd probably use Dr0pb0x. Why is that *******? Window's screenshot would work too.
    Why would you want screenshots of your tells anyway?

  5. #5
    Limit67's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    139
    Reputation
    10
    Thanks
    9
    Quote Originally Posted by CrazyJani View Post
    Why would you want screenshots of your tells anyway?
    It has a lot of utility actually.
    Last edited by Limit67; 08-01-2014 at 12:32 PM.

  6. #6
    Limit67's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    139
    Reputation
    10
    Thanks
    9
    This is what I have so far. Any help?
    Code:
    #NoEnv
    SetWorkingDir %A_ScriptDir%
    CoordMode, Mouse, Window
    SendMode Input
    #SingleInstance Force
    SetTitleMatchMode 2
    DetectHiddenWindows On
    #WinActivateForce
    SetControlDelay 1
    SetWinDelay 0
    SetKeyDelay -1
    SetMouseDelay -1
    SetBatchLines -1
    
    
    F3::
    Macro1:
    Loop
    {
    	CoordMode, Pixel, Screen
    	PixelSearch, FoundX, FoundY, 0, 1000, 250, 1200, 0x00E1EF, 0, Fast RGB
    	If ErrorLevel
    	{
    		MsgBox, 49, Continue?, Image / Pixel Not Found.`nPress OK to continue.
    		IfMsgBox, Cancel
    			Return
    	}
    	If ErrorLevel = 0
    	{
    		Send, {PrintScreen}
    		Sleep, 5000
    	}
    }
    Return
    
    
    F8::ExitApp
    Last edited by Lovroman; 08-02-2014 at 02:34 PM.

  7. #7
    Limit67's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    139
    Reputation
    10
    Thanks
    9
    I've done it. no need for help.

Similar Threads

  1. Replies: 10
    Last Post: 02-04-2014, 01:19 PM
  2. [WTS] Phone Forwarding Serivce - Messages receiving
    By Frought in forum User Services
    Replies: 12
    Last Post: 02-04-2014, 02:48 AM
  3. [Help Request] Combat Arms taking screenshots when pressing 'Insert'
    By Mike in forum Combat Arms Help
    Replies: 6
    Last Post: 11-01-2011, 01:56 PM
  4. [Solved] Combat Arms taking screenshots when pressing 'Insert'
    By Mike in forum Combat Arms Help
    Replies: 13
    Last Post: 11-01-2011, 04:38 AM
  5. Replies: 0
    Last Post: 07-28-2008, 01:35 PM