Search found 5 matches
- Wed May 14, 2014 7:21 pm
- Forum: Beginners
- Topic: Comparing variable values in looping IF statement
- Replies: 2
- Views: 5481
Re: Comparing variable values in looping IF statement
I could've sworn I actually tried that and it didn't work, but I just tested again and it worked great. Thanks!
- Wed May 14, 2014 6:43 pm
- Forum: Beginners
- Topic: Comparing variable values in looping IF statement
- Replies: 2
- Views: 5481
Comparing variable values in looping IF statement
I have a script where I would like to compare the value of two variables and branch based on whether or not they are equivalent. There is an array variable that has values of Var[1] through Var[n] I want to write something like the following: let>counter=1 while>counter<=n if>%comparisonVariable%=Va...
- Wed May 14, 2014 5:58 pm
- Forum: Beginners
- Topic: Waiting for web page to complete loading
- Replies: 4
- Views: 9042
Re: Waiting for web page to complete loading
Thanks so much for the info!
- Wed May 14, 2014 4:47 pm
- Forum: Beginners
- Topic: Place two text items in memory for later use.
- Replies: 4
- Views: 5077
Re: Place two text items in memory for later use.
This may go beyond what you need, but I recently discovered array variables, which I think are fantastic for storing multiple values. I have a script that needs to store a variable number of variables depending on how it's being used. I need it to start at the top of a column in an Excel worksheet a...
- Wed May 14, 2014 4:37 pm
- Forum: Beginners
- Topic: Waiting for web page to complete loading
- Replies: 4
- Views: 9042
Re: Waiting for web page to complete loading
The way I usually handle this is to look for a single pixel that changes when a page is loading and wait until it has changed back to its regular, non-loading color. I am currently working on a script to automate a process in PeopleSoft. Sometimes PeopleSoft runs very quickly, and other times it can...