home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 5039 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.2 KB

  1. Path: uni-paderborn.de!usenet
  2. From: ths@uni-paderborn.de (Thomas Schwoeppe)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Probleme mit MUI/busy.mcc
  5. Date: 8 Mar 1996 09:28:48 GMT
  6. Organization: University of Paderborn, Germany
  7. Distribution: world
  8. Message-ID: <4houkg$h57@news.uni-paderborn.de>
  9. Reply-To: ths@uni-paderborn.de
  10. NNTP-Posting-Host: hurricane.uni-paderborn.de
  11.  
  12.  
  13. Hi!
  14. I've found a problem/bug using the busy.mcc class for MUI 3.x.
  15.  
  16. When I create an object of busy.mcc in my application object by:
  17.  
  18.    App = ApplikationObject,
  19.    [ ... ]
  20.        MCC_busy = BusyObject,
  21.           MUIA_Busy_Speed, MUIV_Busy_Speed_Off,
  22.        End,
  23.    [ ... ]
  24.  
  25. it appears as expected (BTW, is it normal that the first segment is already
  26. drawn?).
  27. But, when I try to start it via:
  28.  
  29.   SetAttrs(MCC_busy, MUIA_Busy_Speed, MUIV_Busy_Speed_User, TAG_DONE);
  30.   /* Do some stuff */
  31.   SetAttrs(MCC_busy, MUIA_Busy_Speed, MUIV_Busy_Speed_Off, TAG_DONE);
  32.  
  33. it just won't start. The above code should do the following:
  34. Start being busy, do some stuff, stop being busy. 
  35. Any ideas what I might be doing wrong? A short non-working example
  36. is available on request.
  37.  
  38.  
  39. Thomas Schwoeppe <ths@uni-paderborn.de>
  40.  
  41.  
  42.