Beachball cursor Help

Richard Gaskin ambassador at fourthworld.com
Mon Nov 8 16:01:36 EST 2010


Jim Hurley kindly noted a misspelling in one of my example handlers.

This:

on SetupProgress pMax
      set the startValue of sb "progress" to 0
      set the endValue of sb "progress" to pMax
      set the thumbpos of sb "progress" to 0
      show db "progress" -- typo: this is a scrollbar, not a database :)
end SetupProgress


...should be:

on SetupProgress pMax
      set the startValue of sb "progress" to 0
      set the endValue of sb "progress" to pMax
      set the thumbpos of sb "progress" to 0
      show sb "progress" -- fixed
end SetupProgress


Thanks Jim!

--
  Richard Gaskin
  Fourth World
  LiveCode training and consulting: http://www.fourthworld.com
  Webzine for LiveCode developers: http://www.LiveCodeJournal.com
  LiveCode Journal blog: http://LiveCodejournal.com/blog.irv



More information about the use-livecode mailing list