I think I can verify this with the following text file.

First I searched for `char` and replaced it with `cheer`.
Then I searched for `w_g` and changed `cheer` in the Replace field to ``.
When I tabbed to the Find Next button, the Replace field change to `cheer`

   JVERSION
Engine: j803/2014-10-19-11:11:11
Library: 8.03.13
Qt IDE: 1.3.1/5.3.2
Platform: Darwin 64
Installer: J803 install
InstallPath: /users/brian/j64-803

NB.
NB.  demo of low level custom graphics in j803 (jqt)
NB.

cocurrent'gltest0'
coinsert 'jgl2'[load 'graph'


setup=: 0 : 0
  pc w closeok; pmove 700 0 640 480;
  cc g isidraw;
  pas 0 gl0
)
gltest0 =: 3 : 0            NB. initialization
  if. (nameclass<'ready')<0 do. ready =: 1 [ wd setup end.
  wd'pshow'
)


w_g_char=: 3 : 0           NB. keyboard handler

  NB. draw a rectangle in upper left:
  glpaint@glrect 0 0 50 50 [ glbrush@glrgb ?3$256

  NB. print the key that was pressed:
  echo a.i.sysdata

  NB. stamp a random bitmap to the screen:
  glpaint@glpixels 50 50 50 50 , ?(50*50)$ 16bfffffffff
)


w_g_mmove=: 3 : 0          NB. mouse move handler

  echo 'msx msy gw gh mbl mbr ctrl shift'=:8{.0&".sysdata

  NB. leave a (disconnected) white pixel after each move.
  glpaint@glpixel msx,msy [ glpen [ glrgb WHITE
)


gltest0''


On Fri, May 8, 2015 at 9:34 AM, chris burke <[email protected]> wrote:

> I could not duplicate this.
>
> Could you let me have an example of exactly what you did? Also, which
> platform and version of J? Thanks.
>
> --
(B=)
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to