--- In [email protected], "chunwaihome" <chunwaih...@...> wrote:
>
> Hi all
>
> 1)I use arb script and find there is lag about 2-3 seconds the
> word has appeared after typing.But it has no happen with the
> other pproconfig.
>
> Anyone can give me some comments about this
I had the same experience when I tried ARB (long time ago). I don't use it, but
just had a look at it. I see it creates an event using event.createMS(1,1,cmd)
The minimum time for event.createMS is 20 ms. Might work better if you change
it to event.createMS(20,1,cmd)
The notes in the script say it is using an event to prevent ARB from having an
error when the error is in cmd. But understanding that, you could probably
remove the event and use do instead. do(cmd)
>
> 2) How i replace " with the other character
>
> e.g. ppDesc=replacechars(bos"i,"" ")
>
> it dont work.
Use "\x22" for double quote.
replacechars("bos\x22i","\x22 ")
>
> thx
>
You're welcome.
Regards,
Sheri