Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		Ok I Have Use A Site That Has Diferent Rooms Like A Chat Room There Are Like 20 rooms what i want to do is for it to take me to the room Like so without using wintext i got this far, What I Want It To Do Is Open The Room Sit In The Room Type A Message In The Room Leave Room And So On 

 Any Help It Would Be Most Appretiated 
 
Acc a=acc("" "LISTITEM" log("Chat Lobby" "#45988") "SysListView32" "" 0x1031)
a.Selection()
if(findrx( a.Description "ppl/MostAllowed: 10/10" 0 2)) 
,out
	
 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		how do you open the window when you do it manualy?
	
	
	
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		Double Right Click On The Room And The Room Opens But I Just Want The Room to open without mouse pointers just like it finds the room with 10 people in it without clicking
	
	
	
	
	
 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		try this
Acc a=acc("" "LISTITEM" log("Chat Lobby" "#45988") "SysListView32" "" 0x1031)
a.Selection()
if(findrx( a.Description "ppl/MostAllowed: 10/10" 0 2))
a.DoDefaultAction
wait 2
outp "text"
0.001
key Y
0.001
clo "-"
	
	
	
	
	
 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		a.DoDefaultAction should do this if double click is set as default by the site
	
	
	
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		Error (RT) in Macro6:   0x80020003, Member not found.
	
	
	
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		It dont work it says error :| 
 
	 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		does enter open the chat window?
	
	
	
	
	
 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		what is the chat site it will be easier to help
	
	
	
	
	
 
 
	
	
	
		
	Posts: 12,239
	Threads: 144
	Joined: Dec 2002
	
	
 
	
	
		DoDefaultAction usually does not work with list view controls if the window is not active.
Example with a folder window:
Macro 
act win("" "CabinetWClass") ;;activate the window
Acc a=acc("" "LISTITEM" win("" "CabinetWClass") "SysListView32" "" 0x1001)
a.Selection
a.DoDefaultAction ;;this would fail if the window is inactive (error ... 0x80020003, Member not found)
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		No it dont see this is how it is its a site when u log site there are diferent rooms with diferent ammount of people in the room what i want to do is advertise a site and i want it to pick the rooms with the most people say for example if there are 20 rooms with 9 people in it i want it to open one of thoes rooms sit in room and type a message leave and go to another room type a message and leave and so on 
Acc a=acc("" "LISTITEM" win("chat Lobby" "#34932") "SysListView32" "" 0x1031)
a.Selection()
if(findrx( a.Description "people/MostAllowed: 10/10" 0 2))
,a.DoDefaultAction
wait 2
outp "text"
0.001
key Y
0.001
clo "-"
But this dont work it does not open the room even just by its self like
Acc a=acc("" "LISTITEM" win("Chat Lobby" "#32770") "SysListView32" "" 0x1031) 
a.Selection() 
if(findr a.Description "people/MostAllowed: 10/10" 0 2)) 
,out
	
	
	
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		ok the post that ginteras posted is pretty close it only opens the tbl if i have the room already clicked see what i want it to do is open a room that has 10 people in it thats  why i want to use 
if(findr a.Description "people/MostAllowed: 10/10" 0 2)) 
and open the room with that ammount of people 
 
	 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		seems like you need to create a bot and that would be hard to help you with without knowing the site.(in my opinion anyway)
	
	
	
	
	
 
 
	
	
	
		
	Posts: 160
	Threads: 43
	Joined: Sep 2007
	
	
 
	
	
		I_AM_BACK_2222 Wrote:ok the post that ginteras posted is pretty close it only opens the tbl if i have the room already clicked see what i want it to do is open a room that has 10 people in it thats  why i want to use 
if(findr a.Description "people/MostAllowed: 10/10" 0 2)) 
and open the room with that ammount of people 
whats tbl?
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		Ok This might give you a better point of veiw 
There are alot of rooms i want it to open a room that has 10 people in it and the thing that i want it to do is open the room anyroom that has 10 people type the message leave room and go to another room diferent rooms not the same room and so on if you understand were im coming from,
And the site is a paid site for members that pay to join the chat site and i just want to advertise another site from that site 
 
	 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		i need to know how to put (VK_DOWN) or navigate(,d) to change the room if you know what i meen :>
so how would i put that in this crypt 
Acc a=acc("" "LISTITEM" win("Chat Lobby" "#42684") "SysListView32" "" 0x1031)
a.Selection()
if(findrx( a.Description "People/MostAllowed: 10/10" 0 2))
,a.DoDefaultAction
	
	
	
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		Acc a=acc("" "LISTITEM" win("chat Lobby" "#42458") "SysListView32" "" 0x1031)
wait 2
Key "text"
0.001
key Y
0.001
 ;;Need To Close room
 ;;Need To Open Lobby
 ;;Need To (VK_DOWN) To Other Room
 ;; And Need To Repete Soo On Now Maybe You Got A Better Example 

)
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		well its a tbl that we chat on in the room  :lol:
	
	
	
	
	
 
 
	
	
	
		
	Posts: 82
	Threads: 29
	Joined: Jun 2008
	
	
 
 
	
	
	
		
	Posts: 15
	Threads: 3
	Joined: Jan 2009
	
	
 
	
	
		Duh I need That Too Lmao its not to cheat or play on pp its so i can go room to room typing text without having to mess with it just to advertize a site quit hating
	
	
	
	
	
 
 
	
	
	
		
	Posts: 1,769
	Threads: 410
	Joined: Feb 2003
	
	
 
	
	
		"quit hating"?  don't hate me cuz i'm a spammer?  what should be reviled if not a spammer?!
do this, quit spamming and we won't hate what you do.