Mario Madunic wrote:
Was wondering if it is possible to open an alert window? What I want to do is change an alert via <echo> because some users are missing it and have an alert window open stating that there is an error log to view. So far I the code checks to see the size of an error log and if its file size is greater than 0 then output an message on the command window, if not then delete the file.<length file="error\artError${l_Docset}.txt" property="articleErrorFileSize" /> <if> <equals arg1="${reviewErrorFileSize}" arg2="0" /> <then> <delete file="error\revError${l_Docset}.txt" /> </then> <else> <echo /> <echo>There where errors during ingest into the database of the reviews for ${l_Docset}</echo> <echo>Please review the following error file: error\revError${l_Docset}.txt</echo> <echo /> </else> </if>
thinking about this some more, the <splash> task can be used to bring up an image from in a URL. If you can somehow create an image with your text, <splash> can display it for you
-- Steve Loughran http://www.1060.org/blogxter/publish/5 Author: Ant in Action http://antbook.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
