Search found 43 matches

by japankid3000
29 Jan 2016, 15:14
Forum: Ask for Help (v1)
Topic: Copy to Notepad
Replies: 3
Views: 1223

Copy to Notepad

How do i select and copy something and have it "paste" to notepad in a chronological order .... If: Copy text to Clipboard ; paste to notepad.txt `n Else: continue FileAppend, c://scripting/notepad.txt I have a clipboard viewer but i want to be able to just copy and have it appended to a txt file in...
by japankid3000
25 Jan 2016, 20:18
Forum: Ask for Help (v1)
Topic: variable on my macro
Replies: 7
Views: 1799

Re: variable on my macro

Why couldn't you just post your code, why make it so you have to download?
by japankid3000
23 Jan 2016, 12:18
Forum: Ask for Help (v1)
Topic: Unable to install AutoHotkey112300
Replies: 11
Views: 5607

Re: Unable to install AutoHotkey112300

What are you talking about? My mistake, but a month or two ago the old ahk website was still up, and i made this mistake, just trying to insure OP did not make my mistakes. The "installer" link on the front page is exactly the same Yes it is, but i had this problem too, so hundreds if not thousands...
by japankid3000
21 Jan 2016, 17:36
Forum: Ask for Help (v1)
Topic: Unable to install AutoHotkey112300
Replies: 11
Views: 5607

Re: Unable to install AutoHotkey112300

I had your same problem its some really minor, completely uninstall/delete all ahk folders(backup scripts obviously).... Go to https://autohotkey.com/ > Click Download > Click Installer >Make Folder in C named AHK >extract to AHK > install Don't download with the old website, only the new one which ...
by japankid3000
21 Jan 2016, 13:34
Forum: Ask for Help (v1)
Topic: PixelSearch PLEASE HELP
Replies: 2
Views: 909

Re: PixelSearch PLEASE HELP

I remember reading in a Python book to not reinvent the wheel, well anyways i watched a Youtube video and noticed Pulover's macro creator has a function to drag a rectangle over my button, and a PixelSearch feature which are both very convenient.
by japankid3000
21 Jan 2016, 12:58
Forum: Ask for Help (v1)
Topic: Imagesearch Problems
Replies: 2
Views: 1042

Re: Imagesearch Problems

Oh i never thought about using several different images to get the click but i am trying to learn use Pixels now.
by japankid3000
20 Jan 2016, 12:34
Forum: Ask for Help (v1)
Topic: PixelSearch PLEASE HELP
Replies: 2
Views: 909

PixelSearch PLEASE HELP

Hello my script will not send clicks to the pixel ColorID , i do not quite understand how i get the X and Y coordinates of the upper left corner of the rectangle to search. I use WinodowSpy and it tells me the coordinates but how do i drag a rectangle to make it more accurate. f1:: CoordMode, Pixel,...
by japankid3000
19 Jan 2016, 12:00
Forum: Ask for Help (v1)
Topic: Imagesearch Problems
Replies: 2
Views: 1042

Imagesearch Problems

My problem is i am trying to un follow people on a list, sometimes ImageSearch will click the images correctly, but then it will skip and not click the same image it clicked before ( the image is same coordinates and same pixels but somehow it will continue and sometimes randomly click the same imag...
by japankid3000
17 Jan 2016, 09:28
Forum: Ask for Help (v1)
Topic: Script to auto delete Gmail trash Topic is solved
Replies: 1
Views: 1168

Re: Script to auto delete Gmail trash Topic is solved

Somebody posted one recently so i'm sure if you google it you can find one but i'm not going to do it.
by japankid3000
15 Jan 2016, 20:06
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 304
Views: 130374

Re: Screen clipping

When i run it, it doesn't show the little ahk icon in my taskbar like with all other scripts i have, so where is the script running . Is it maybe somewhere in c:/ program files ?
by japankid3000
15 Jan 2016, 13:42
Forum: Ask for Help (v1)
Topic: ImageSearch Problem
Replies: 5
Views: 1587

Re: ImageSearch Problem

Thank you!
by japankid3000
15 Jan 2016, 13:28
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 304
Views: 130374

Re: Screen clipping

I was running an old version and updated and now your script works. I have no use for outlook feature, i just want to be able to snip and save it, but when i hold either WindowsKey + Left Click and drag or WindowsKey + Ctrl + Left Click and drag it does not indicate it took a screen clipping or did ...
by japankid3000
15 Jan 2016, 12:21
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 304
Views: 130374

Re: Screen clipping

Had no idea right after my post i would need a new snipping tool!!!

Snipping tool with windows won't snip my image if the image i am trying to snip is too small.

I need to snip tiny little images so i want to use this but when i try to run it i get this.

Image
by japankid3000
15 Jan 2016, 12:06
Forum: Ask for Help (v1)
Topic: ImageSearch Problem
Replies: 5
Views: 1587

Re: ImageSearch Problem

Everytime it clicks the image it does so in the far top left corner, how do i make it click 10 pixels to the right and 2 pixels down. Something like i did below i remember seeing it in other imagesearch questions but can't find one right now. Sleep, 100 ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWid...
by japankid3000
15 Jan 2016, 11:25
Forum: Ask for Help (v1)
Topic: ImageSearch Problem
Replies: 5
Views: 1587

ImageSearch Problem

I want to click Following.png then click Following2.png but when i run my script it just clicks Following.png over and over??? f1:: CoordMode, Pixel, Screen CoordMode, Mouse, Screen Loop { Sleep, 100 ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, C:\Scripting\Following.PNG If Erro...
by japankid3000
15 Jan 2016, 09:13
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 304
Views: 130374

Re: Screen clipping

It is good to know if i ever need a snipping tool i can come here to get it.

Why do you use this though instead of snipping tool that comes with windows?
by japankid3000
14 Jan 2016, 12:32
Forum: Ask for Help (v1)
Topic: Image Search and working directory issue?
Replies: 8
Views: 4255

Re: Image Search and working directory issue?

I finally got it too work. thanks boiler
by japankid3000
13 Jan 2016, 18:14
Forum: Ask for Help (v1)
Topic: Image Search and working directory issue?
Replies: 8
Views: 4255

Re: Image Search and working directory issue?

%A_ScriptDir%\exampleimage.png or % A_ScriptDir "\exampleimage.png" are absolute pathes, so the working directory doesn't matter. That person said the directory doesn't matter isn't that conflicting with you saying it might not be in the right directory..... The image is saved to c:/scripting but n...
by japankid3000
13 Jan 2016, 16:53
Forum: Ask for Help (v1)
Topic: autohotkey for android
Replies: 5
Views: 21731

Re: autohotkey for android

Thanks for those suggestions just downloaded Automate.
by japankid3000
11 Jan 2016, 06:48
Forum: Ask for Help (v1)
Topic: Image Search and working directory issue?
Replies: 8
Views: 4255

Re: Image Search and working directory issue?

I just read up on ImageSearch and Errorlevel but i still can not get it to work for this it always gives me Errorlevel = 2 Do i use SysGet to get %A_ScreenWidth%,%A_ScreenHeight% and change it to the actual number? Do i need to change any of these parameters ,x,y,0,0,%A_ScreenWidth%,%A_ScreenHeight%...

Go to advanced search