Jump to content

Jaundice

Members
  • Posts

    6
  • Joined

  • Last visited

Jaundice's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I've been able to add an image to my GUI, but I'd like to be able to get it to appear relative to it's location, since right now it's absolutely defined, i.e. "C:\Documents and Settings\Username\Desktop\MyAutoitScript\image.jpg" Is there any way to be able to recognize the image location in relation to a directory, so I could just have it check the MyAutoItScript directory for the image and load it where I want it to?
  2. Yes, but i mean is there a way to exclude an image which changes location. The images are randomly generated and placed, but one recurs and changes location. Can you exclude that img?
  3. I'm trying to figure out if there is a way to click any images with a specific pixel color within the whole IE window EXCEPT a certain image URL. Here is my code. #include "IE.au3" While 1=1 ;Finds the "Next" Button and Clicks it. $coord = PixelSearch( 0, 0, 1279, 779, 0xFFFFCC) MouseClick("left",$coord[0],$coord[1]) Sleep(5000) ;HERE IS WHERE I NEED TO DETERMINE A SPECIFIC IMAGE URL NOT TO CLICK Send("{F5}");Refresh the Browser Sleep(5000) WEnd So, what I want it to do is click any of the image links in a group EXCEPT one, so would I use _IEImgGetCollection and then somehow prohibit the clicking of one of those specific images? But the click goes by pixel color so how would I just negate a specific image URL?
  4. Im trying to make a script that will check for a certain image on a page like to check if "www.google.com/google.gif" is present on the current page. Is this possible and would I need to use the IE.au3 package along with it?
  5. This script is very simple (as you can see) and I'm sure any Novice user could create it, but hey I just got the program today. For those who don't know, the Butterfly Tactic in GunZ is Jump, Dash, Slash, Block. This script executes the proper commands to butterfly. The Insta-Butterfly is bound to X by default, but you could change it to anything you want. GunsButterfly.au3
×
×
  • Create New...