Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I've made this code, this is at the beginning of my program. It works fine with typing the letters but with mouse clicking only the last one "S" letter is active - only this is blue.
Is it possible to make somehow all the letters available also for click on it ?
(if (null global:min_r)
(setq global:min_r 3.0)
)
(if (null global:delta_r)
(setq global:delta_r 0.1)
)
(if (null global:width) ;; width of the changed ARCs in the polyline
(setq global:width 0.25)
)
(if (null global:change_width)
(setq global:change_width "Y")
)
(if (null global:side)
(setq global:side 0.1)
)
(if (null global:mode)
(setq global:mode 0) ;; 0=fillet, 1=left-right increase
)
(setq tmp (getstring (strcat "\nRAD_C_V04: [W]idth of the changed ARCs:<"
(rtos global:width)
"> "
"[C]hange the width? Yes/No <"
global:change_width
"> "
"[O]ption: 0:fillet - 1: left/right width increase <"
(itoa global:mode)
"> "
"[M]inimum radius <"
(rtos global:min_r)
"> "
"[D]elta radius <"
(rtos global:delta_r)
"> "
"[S]ide distance of wave increase <"
(rtos global:side)
"> "
) ;_ strcat
) ;_ getstring
) ;_ setq
Solved! Go to Solution.