Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[solved] find accessible object - within specific area
#1
Hi,

Is there a way to find an accessible object in firefox- but within a specific area.

For example,

http://www.reddit.com/r/IAmA/comments/2 ... anna_know/

How would I find the accessible object for the "permalink" link - but only for posts done by "carsales2000"?

Thanks
#2
At first find the area accessible object. Then find the object in the area object. Use Navigate.

Sometimes with navigate can find in single call.
Macro Macro1499
Code:
Copy      Help
int w=wait(3 WV win("- Mozilla Firefox" "Mozilla*WindowClass" "" 0x4))
Acc a.FindFF(w "A" "carsales2000" "class=author submitter*" 0x1005 3 0 "parent next2 first2")
out a.Value

Sometimes need 2 calls.
Macro Macro1499
Code:
Copy      Help
int w=wait(3 WV win("- Mozilla Firefox" "Mozilla*WindowClass" "" 0x4))
Acc a.FindFF(w "A" "carsales2000" "class=author submitter*" 0x1005 3 0 "parent2")
a.FindFF(a.a "A" "permalink" "" 0x1001 3)
out a.Value
#3
thank you for being BALLIN!!!!


Forum Jump:


Users browsing this thread: 1 Guest(s)