Author Topic: Move UCS icon  (Read 1920 times)

0 Members and 1 Guest are viewing this topic.

MeasureUp

  • Bull Frog
  • Posts: 465
Move UCS icon
« on: June 25, 2013, 02:11:36 AM »
I know that the UCS icon can be dragged from one point to another.
But how to get it work in the code?
For example, I want to move it from (5,10,15) to (100,50,25). Is it possible?
Thanks for your help.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Move UCS icon
« Reply #1 on: June 25, 2013, 02:19:50 AM »
Let's see if I understand ...

What does the UCS Icon Represent ??
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.

Tharwat

  • Swamp Rat
  • Posts: 710
  • Hypersensitive
Re: Move UCS icon
« Reply #2 on: June 25, 2013, 02:21:27 AM »
Not that sure , but try this .

If the ucs is located as per origin , try the first one , otherwise the second line of code may do the job .

Code: [Select]
(command "_.ucs" '(95. 40. 10.) "")

Code: [Select]
(command "_.ucs" '(100. 500. 25.) "")

MeasureUp

  • Bull Frog
  • Posts: 465
Re: Move UCS icon
« Reply #3 on: June 25, 2013, 09:09:06 PM »
Thanks. It didn't work because I used commas, like:
(command "_.ucs" '(100,500,25) "")

Tharwat

  • Swamp Rat
  • Posts: 710
  • Hypersensitive
Re: Move UCS icon
« Reply #4 on: June 26, 2013, 12:08:28 AM »
Thanks. It didn't work because I used commas, like:
(command "_.ucs" '(100,500,25) "")

Not a problem