Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sun-barr!lll-winken!elroy.jpl.nasa.gov!swrinde!zaphod.mps.ohio-state.edu!samsung!noose.ecn.purdue.edu!mentor.cc.purdue.edu!ahernsd From: ahernsd@mentor.cc.purdue.edu (Dynastar) Newsgroups: comp.sys.handhelds Subject: Re: HP48: Displaying PICT; is there another way? Message-ID: <11119@mentor.cc.purdue.edu> Date: 24 Apr 91 01:33:59 GMT References: <1991Apr23.175400.8672@nntp-server.caltech.edu> Organization: Purdue University Lines: 31 In <1991Apr23.175400.8672@nntp-server.caltech.edu> tim@nijinsky.ipac.caltech.edu (Tim Conrow) writes: >So what am I missing? How does one update a displayed GROB as fast as >possible in response to a key press, preferably "in place", i.e. w/o >having to go through an \->LCD phase? (How is it done, for example, in >the periodic table display on the EQ LIB card?) If you execute { } PVIEW It will display PICT and place you in scrolling mode, in essence, 'taking over the keyboard'. But if you execute { # 0 # 0 } PVIEW It will display PICT and then go on, not entering the interactive graphics environment. If you want to, for example, display GROB 'A', wait 5 seconds, then display GROB 'B' then wait for a keypress, the following program will do it. (I am typing this straight from the terminal, so bear with me!) \<< PICT { # 0 # 0 } A REPL { # 0 # 0 } PVIEW 5 WAIT PICT { # 0 # 0 } B REPL DO UNTIL KEY END DROP \>> Hope this helps!