PDA

View Full Version : tool ID in flat sheet


seb360
02-14-2008, 10:53 PM
Hi,
I don't want the stamp tool ID in my flat drawing (see green text in screenshot attached)
It's probably a parameter in the sha-shop.lsp, but which one ?

Thanks for your help

seb360
02-21-2008, 03:05 AM
Nobody can help for that ??

Thom Ivancso
02-29-2008, 05:31 PM
Hello seb360,You need to make changes to the sha_demoshop.lsp file in the C:\Program Files\CoCreate\OSD_Modeling_2005\personality\sd_customize\SheetAdvisor folder.In that file you need to do a search for all entries of the Tool ID number that you do not want to display on the flat in this case 07025 and comment out the line that reads :FLAT-TEXT (:TOOL_ID) see below example.


(sha-define-shop-table "connected_v_corner_relief"
:TABLE-TITLE "Connected V-shape Corner Relief"
:COLUMNS
(:MIN_CRN_ANGLE :TOOL_ID :DESCR :MIN_THICK :MAX_THICK :PREFERENCE :ADVICE)
:COLUMN-NAMES
("Min Corn Ang" "Tool Id" "Descr" "Min Thick" "Max Thick" "Pref" "Advice")
:UNITS
( :deg nil nil :mm :mm nil nil)
:CONTENTS
(
( 5 "07025" "7253" 0 100 :NONPREF "-")
)
:KEY (:MIN_CRN_ANGLE)
:DISPLAY (:MIN_CRN_ANGLE :PREFERENCE :ADVICE)
;:FLAT-TEXT (:TOOL_ID)
:HELP "sha_conn_v_c_relief"
; unique, not displayable column entries
:MENU-ENTRY "adapted"
:USABLE-AS-RELIEF
(
:LENGTH_X_ANGLE 0 ; rot angle when bend is in X_POS
:ROTATE-WITH-CORNER t ; rotate relief with bend-bend-angle / 2
:LENGTH t ; dynamic adapted tool length => no size check
)
:BROWSER-ICON "icon_connected_v_co"
:PROF_FNC sha-connected-v-shape-profile
)


I commented out all the ;:FLAT-TEXT (:TOOL_ID) where there was a call to 07025, you will probably want to figure out just which one is creating the text and comment that one out.

hth
Cheers,
Thom

seb360
03-07-2008, 02:32 AM
Works fine, thanks thom

Thom Ivancso
03-07-2008, 03:14 AM
Hello seb360,

Good glad I could help you out.

Cheers,
Thom