Search found 29 matches

by uniadv
Thu Aug 27, 2020 3:33 pm
Forum: Beginners
Topic: Changing the CSS using MS Script
Replies: 6
Views: 7450

Changing the CSS using MS Script

Hi, I am stuck with a problem, there is a particular div ("scroll-wrapper") whose style changes on scrolling . Style by default: <div class="scroll-wrapper" style="transform: translate(0px, 0px) translateZ(0px);"> Style on scrolling: <div class="scroll-wrapper" style="transform: translate(0px, -500p...
by uniadv
Wed Aug 26, 2020 6:06 am
Forum: Beginners
Topic: OCRArea captures wrong text most of the time
Replies: 1
Views: 3350

OCRArea captures wrong text most of the time

Hi, I'm facing an issue since long time. Every time I run the script to get text from image, I usually get wrong text out of OCRArea function. I have checked the dimensions of the rectangle many times but it returns wrong text every time. Any idea why this is happening? Is this a bug of MS 15 which ...
by uniadv
Wed Aug 19, 2020 8:15 am
Forum: Beginners
Topic: Mouse speed
Replies: 10
Views: 15198

Re:

Marcus Tettmar wrote:
Tue Mar 18, 2008 12:37 pm
MouseMove moves the mouse TO the desired position - immediately. If you want to see the mouse moving BETWEEN start and finish, then you need lots of MouseMoves. E.g. try this:

Code: Select all

Let>x=0
Repeat>x
  Let>x=x+1
  MouseMove>x,50
  Wait>0.05
Until>x=500
That Worked Perfectly! Thanks.
by uniadv
Wed Aug 19, 2020 8:13 am
Forum: Beginners
Topic: Feature to scroll to the last div or last row of a table
Replies: 2
Views: 3984

Re: Feature to scroll to the last div or last row of a table

Thanks Marcus Tettmar , That worked but not working for "Xpath" . I generally deal with different element by their Xpath because its uniqueness but i guess scrollIntoView doesn't work with Xpath. Temporally I'm using MoveMouse inside the loop to scroll down to find certain element. But is their any ...
by uniadv
Sun Aug 16, 2020 12:58 pm
Forum: Beginners
Topic: Feature to scroll to the last div or last row of a table
Replies: 2
Views: 3984

Feature to scroll to the last div or last row of a table

Hi Team, I'm looking for a feature in Chrome which can scroll the page to the last element of a div or scroll to the last row of a table. I couldn't figure out if its possible. There is a pages which has empty list of div which fills in automatically as we scroll the page. I don't prefer to use eith...
by uniadv
Sat Aug 15, 2020 11:00 am
Forum: Scripts and Tips
Topic: Repeat function until image cant be found
Replies: 6
Views: 15524

Re: Repeat function until image cant be found

You would want to use a FindImagePos statement inside a loop and loop until it returns no matches. Something like: FindImagePos>%BMP_DIR%\needle.bmp,SCREEN,0.7,1,X,Y,NumFound,CCOEFF While>NumFound>0 .. .. do whatever .. FindImagePos>%BMP_DIR%\needle.bmp,SCREEN,0.7,1,X,Y,NumFound,CCOEFF EndWhile Thi...
by uniadv
Fri Aug 14, 2020 5:43 am
Forum: Beginners
Topic: Capturing text of its corresponding targeted heading of a table
Replies: 1
Views: 3290

Capturing text of its corresponding targeted heading of a table

Hi Team, I have been working on capturing the data from table in Chrome depending upon its heading text. In this table "Column 1" contains the heading which is fixed but its position changes throughout the table whenever i run the code. Corresponding to the heading text in "Column 1" , its data pres...
by uniadv
Thu Aug 13, 2020 1:55 pm
Forum: Technical / Scripting
Topic: Comma in eMail
Replies: 8
Views: 11998

Re:

JRL wrote:
Wed Apr 19, 2006 12:10 pm
You could predefine the comma then use the variable in your subject line.

Let>comma=,
....Item1%comma% Item2%comma% Item3 and Item4....

Thanks JRL, Just found what i was searching for. :D :D
by uniadv
Thu Aug 13, 2020 1:34 pm
Forum: Beginners
Topic: Finding total number of rows in "HTML table" or inside "div Element"
Replies: 2
Views: 3862

Re: Finding total number of rows in "HTML table" or inside "div Element"

Thank you Marcus Tettmar, :D
Now i am able to check how many div or rows present in the table. I know its very basic thing, even i looked this solution inside the Knowledge Base earlier but didn't get any success. But thank you again for helping me out.❤️❤️❤️

Regards
Ushahra
by uniadv
Thu Aug 13, 2020 8:52 am
Forum: Beginners
Topic: Finding total number of rows in "HTML table" or inside "div Element"
Replies: 2
Views: 3862

Finding total number of rows in "HTML table" or inside "div Element"

Hi Team, I'm making a project for myself for gathering the data for each row in the Table and another inside the particular div Element . The number of rows in the table varies from 5 to 30. Similarly for the div, it also varies from 10 to 25. Whenever i run the code for table, if the value of "n" s...
by uniadv
Fri Aug 07, 2020 8:59 am
Forum: Beginners
Topic: Can't set focus in new popup chrome window using "setFocus"
Replies: 6
Views: 6521

Re: Can't set focus in new popup chrome window using "setFocus"

Thank you Marcus Tettmar, It worked smoothly :D :D ❤️
by uniadv
Wed Aug 05, 2020 3:35 pm
Forum: Beginners
Topic: Can't set focus in new popup chrome window using "setFocus"
Replies: 6
Views: 6521

Re: Can't set focus in new popup chrome window using "setFocus"

That would be great update to Macro Scheduler particularly for chrome users. :D :D

So when can we expect to get this update?

If it will take time then any alternative to switch chrome browser to its child window?
by uniadv
Tue Aug 04, 2020 1:35 pm
Forum: Beginners
Topic: Can't set focus in new popup chrome window using "setFocus"
Replies: 6
Views: 6521

Re: Can't set focus in new popup chrome window using "setFocus"

Thank Dorian for reply, :D That code partially worked, but while using "OCRWindow" it give everything in messed-up form. Every new window is slightly different so can't use "OCR Screen Rectangle" either. I think "xpath" can be useful to get the text from that new popup chrome window. But for that, t...
by uniadv
Tue Aug 04, 2020 3:33 am
Forum: Beginners
Topic: Can't set focus in new popup chrome window using "setFocus"
Replies: 6
Views: 6521

Can't set focus in new popup chrome window using "setFocus"

Hi, When I run my macro, it open ups a chrome window which has bunch of rows. On clicking each row (by Macro Scheduler), it further open a new popup window with same URL for all but different title. This new popup window is always on top. It's title is like: "{{random title}} - Google Chrome" When I...
Sign up to our newsletter for free automation tips, tricks & discounts