|
Since Version 4.1 IM includes the new Dialog Manager (DM). It can do all the old "Popup Manager" could do and much more.
If you used the old "Popup Manager" or the file downloader in your macros, you need to make a few changes in your macros in order to prepare them for Version 4.1 and the new Dialog Manager. All changes can be done by editing the macros. Re-recording is not required.
1. ONPOPUP has been replaced by ONDIALOG. The new command can handle more kinds of dialogs, runs much faster and supports more than one instance.
2. SAVEAS TYPE=FOLDER, this command has been replaced by
SAVEAS TYPE=CPL FOLDER=* FILE=+_{{yyyymmdd_hhnnss}}
"CPL" stands for "complete" as the complete web page is saved.
SAVEAS TYPE=FILE, this command has been replaced by
SAVEAS TYPE=HTM FOLDER=* FILE=+_{{yyyymmdd_hhnnss}}
The new SAVEAS command also supports the formats MHT (Web Archive format) and TXT (plain text file).
FOLDER=* indicates that the default download folder is used. You can specify your own folder with FOLDER=c:\my_folder
3. Downloads: The commands !DDIR, !DEXT have been replaced by
ONDOWNLOAD FOLDER=* FILE=+_{{yyyymmdd_hhnnss}}
The download extensions are now handled automatically, and the download directory and file can be set with FOLDER=c:\yourdir and FILE=abc . The file extension is added automatically.
FOLDER=* indicates that the default folder is used.
4. !EXTRACTPOPUP has been replaced by !EXTRACTDIALOG
5. SET !POPUPMANAGER has been replaced by SET !DIALOGMANAGER
6. SET !FILEEXTRACT has been replaced by the FILE= parameter in the new SAVEAS command:
SAVEAS TYPE=EXTRACT FOLDER=* FILE=yourfilename.csv
FOLDER=* indicates that the default download folder is used. You can specify your own folder with FOLDER=c:\my_extract_folder
More details about the new commands can be found in the online user manual.
|