Search found 81 matches

by robchoc
11 Feb 2020 20:52
Forum: User Help / Bug Reports
Topic: Detect colour on screen
Replies: 2
Views: 11181

Re: Detect colour on screen

That's just opened up a whole world of possibilities. The view-source: works in Firefox too.

Thanks :)
by robchoc
11 Feb 2020 16:06
Forum: User Help / Bug Reports
Topic: Detect screen touch
Replies: 1
Views: 8211

Detect screen touch

I have a simple loop:

Code: Select all

scroll=100;
loop=0;

while (loop <50)
{
sendKey(93);
sleep(scroll);
loop = loop + 1
}
Is there a way to exit this loop if the screen is touched?

Thanks for all the help.
by robchoc
09 Feb 2020 11:45
Forum: User Help / Bug Reports
Topic: Detect colour on screen
Replies: 2
Views: 11181

Detect colour on screen

I have a simple script that presses page down every 200ms and is repeated 50 times. The reason I do this is to quickly visually inspect the screen for any red highlighted areas. Then when I have spotted one I can then try to find it and click on it, lots of manual scrolling to find it. I want to kno...
by robchoc
08 Feb 2020 09:45
Forum: User Help / Bug Reports
Topic: Paste() not working.
Replies: 5
Views: 14186

Re: Paste() not working.

Is there a way around this?


So is it possible to do a long press (no root) until paste pops up and then click that?

EDIT: I got it to work using sendkey ctrl + V
by robchoc
07 Feb 2020 10:05
Forum: User Help / Bug Reports
Topic: Paste() not working.
Replies: 5
Views: 14186

Re: Paste() not working.

I'm using Firefox

And this is my script that paste does not work, focus works just fine:

Code: Select all

focusById("mib"); (I got that using info from show overlay)
sleep(3000);
paste();
by robchoc
06 Feb 2020 12:24
Forum: User Help / Bug Reports
Topic: Paste() not working.
Replies: 5
Views: 14186

Paste() not working.

I have a very simple script and want to be able to paste the contents of the clipboard into the search box in a browser.

I can get my cursor to show in the search box but when I use paste() it does nothing. What am I doing wrong?

Thanks for the help.
by robchoc
29 Jan 2020 11:50
Forum: User Help / Bug Reports
Topic: Hidden screen elements
Replies: 2
Views: 7238

Hidden screen elements

https://pasteboard.co/IScDPGd.png Before I press info https://pasteboard.co/IScJhmW.png After I press info https://pasteboard.co/IScDPGd.png I'm trying to get the INFO for the element that is hidden under to top bar under AM that came on when I press Info. Is there a way to find out more informatio...
by robchoc
28 Jun 2019 09:17
Forum: General
Topic: App monitoring
Replies: 1
Views: 11769

App monitoring

Is there a way to use Automagic to monitor an app?

I have an app the uses the wifi heavily and was wondering what sites it is visiting. Is there a way to create a list of visited URLs?

Thanks
Rob
by robchoc
19 Dec 2018 09:32
Forum: User Help / Bug Reports
Topic: Hidden elements by overlay
Replies: 2
Views: 7129

Hidden elements by overlay

Is there a way to get the element details of the element behind the close button?

I have tried very carefully clicking and I just can't get to it.


Image
by robchoc
18 Dec 2018 16:58
Forum: User Help / Bug Reports
Topic: Control UI within Chrome
Replies: 3
Views: 8855

Re: Control UI within Chrome

I'm willing to learn. :idea: :D

I can get the element if I look at the source code on the PC:

Code: Select all

<ng-transclude class="x-hidden-focus"> 10 points </ng-transclude>
How would I make it think I clicked on it?