Author Topic: 2014 Command Line  (Read 2533 times)

0 Members and 1 Guest are viewing this topic.

hermanm

  • Guest
2014 Command Line
« on: November 16, 2013, 11:06:32 PM »
Truncates AutoLISP prompts.
First glance, appears to hose final 5 characters.
Command line is docked, & is the width of the (30") monitor.
CL prompts from native ACAD commands are unaffected.
Any suggestions?
« Last Edit: November 17, 2013, 09:34:07 PM by hermanm »

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: R14 Command Line
« Reply #1 on: November 17, 2013, 02:48:35 AM »
hehehehe

he said 'R14'

Does it truncate all your prompts ?
I use a floating command line about 30 characters wide and have no issues ...
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Crank

  • Water Moccasin
  • Posts: 1503
Re: R14 Command Line
« Reply #2 on: November 17, 2013, 04:23:34 AM »
I think you have to change the variable CLIPROMPTUPDATE.
Vault Professional 2023     +     AEC Collection

hermanm

  • Guest
Re: R14 Command Line
« Reply #3 on: November 17, 2013, 09:38:00 PM »
I think you have to change the variable CLIPROMPTUPDATE.

No, has no effect.
Installed SP1. No joy.

@ Kerry:
OK, showing my age.:)
Since you are not seeing the anomaly, suggests configuration issue, as opposed to fundamental defect.
Thx. for feedback.

hermanm

  • Guest
Re: 2014 Command Line
« Reply #4 on: January 15, 2014, 11:27:44 AM »
Believe I have this sorted.
Appears (getstring) prompt string must end with a "space" character, otherwise prompt is truncated at the first preceding space character.

Thus,
Code - Auto/Visual Lisp: [Select]
  1.  (defun C:Test ()
  2.   (getstring (strcat "\nFoo" " bar" " spong"))
  3.   (princ)
  4.  )
  5.  
Gets truncated (command line only, not textscreen) to "Foo bar"
Which did not happen in ACAD 2012.

Whereas,

Code - Auto/Visual Lisp: [Select]
  1.  (defun C:Test ()
  2.   (getstring (strcat "\nFoo" " bar" " spong "))
  3.   (princ)
  4.  )
  5.  

Prints "Foo bar spong "

Can anyone else confirm this anomaly?