news
About Elegant Chaos
info
About me and my friends
people
Software from Elegant Chaos
software
Other stuff...
stuff

Progress

An XCMD which displays a dialog window containing a status message and a progress bar, to give feedback on the progress of lengthy operations.

error


[last exit to hypercard] [externals index] [download Progress]

Description

This simple XCMD allows you to give some feedback when a lengthy operation is being performed. It puts up a Finder-style progress dialog, which contains a couple of lines of text and a rectangular bar indicating how much of a task has been completed

The window is created with the create command, and controlled through the use of the comment, progress and heading properties.

Example script

on mouseUp
  Progress create,"hello mum!",,"Times",18
  show window progress
  
  repeat with n = 1 to 20
    set the progress of window "progress" to n/20
    set the comment of window "progress" to "n is" && n
    wait 10 ticks
  end repeat
  
  close window "progress"
end mouseUp

[last exit to hypercard] [externals index] [download Progress]

This page was created automatically, on 25/03/1999 from version 3.0d4 of Last Exit To Hypercard.