I have two problems:
a) I am a beginner
b) my english is not good
I am looking for someone who speaks german and who can give me some answers and tips or who can write a little script for read out web pages.
I bought markroscheduler pro and webrecorder.
I am looking for a german speaking supporter
Moderators: Dorian (MJT support), JRL
-
- Newbie
- Posts: 1
- Joined: Tue Jun 22, 2010 3:56 am
- Location: Germany
I compliment you on your use of the English language ! I think you will have no trouble getting your points across.
If you could clarify a bit what you are trying to do it would help to formulate an answer.
HTTPRequest> command "reads" web pages.
Here is a little sample as an example:
If you could clarify a bit what you are trying to do it would help to formulate an answer.
HTTPRequest> command "reads" web pages.
Here is a little sample as an example:
Code: Select all
Input>zip_code,Enter a zipcode to find out the current weather
Let>URL=http://www.briansutton.com/wx/weather.html?id=%zip_code%&length=10&unit=s&#current
HTTPRequest>URL,,GET,,HTMLResponse
Let>String1=<td width="41%" height="24" align="center" valign="top">
Let>String2=</td>
Length>String1,String1_length
Position>String1,HTMLResponse,1,StartAt
Add>StartAt,String1_length
Position>String2,HTMLResponse,StartAt,EndAt,FALSE
Let>myLen=EndAt-StartAt
MidSTr>HTMLResponse,StartAt,myLen,myWeather
MessageModal>The current weather for zipcode %zip_code% is %CRLF%%CRLF%%myWeather%