Skip to main content
13-Aquamarine
December 25, 2018
Solved

How to Add Custom Frames in Drawing file?

  • December 25, 2018
  • 2 replies
  • 4203 views

Hi,

 

Can anybody help me out for adding custom frames in CED Annotation file?

I tried the method suggested by PTC Tech Support but did not work in my case.

I tried below method of changing the am_customize file as below

 

;(docu-register-frame
;    :UI-name "Custom-A3"
;    :Wm-name ""
;    :file "C:\Custom_Frames\Custom_A3.mi"
;    :default :every time)     ;; T/NIL/:every time

 

 

But this did not work.

Still the same standard Letter sizes and A0.....A4 sizes are showing.

 

Please help....

Best answer by jvadalia-2
Wrong syntax i wrote.
;(docu-register-frame
; :UI-name "Custom-A3"
; :Wm-name ""
; :file "C:\Custom_Frames\Custom_A3.mi"
; :default :every time) ;; T/NIL/:every time

Right syntax solved the issue aa below.
"
docu-register-frame
:UI-name "Custom-A3"
:Wm-name ""
:file "C:/Custom_Frames/Custom_A3.mi"
:default :every time) ;; T/NIL/:every time
"
We have to copy the above syntax for all the frames to configure in am_customize file.

2 replies

16-Pearl
December 26, 2018

Did the frame show up in the drop down list when starting a new drawing?

 

When you said this did not work, what results did you get?

 

How did you create the frame?  Did you save it as a frame?

 

drop.JPGframe.JPG

13-Aquamarine
December 26, 2018
Hi,

Issue is resolved.

Now its working.

Actually It was a syntax error in am_customize file.

Thanks All.
jvadalia-213-AquamarineAuthorAnswer
13-Aquamarine
December 29, 2018
Wrong syntax i wrote.
;(docu-register-frame
; :UI-name "Custom-A3"
; :Wm-name ""
; :file "C:\Custom_Frames\Custom_A3.mi"
; :default :every time) ;; T/NIL/:every time

Right syntax solved the issue aa below.
"
docu-register-frame
:UI-name "Custom-A3"
:Wm-name ""
:file "C:/Custom_Frames/Custom_A3.mi"
:default :every time) ;; T/NIL/:every time
"
We have to copy the above syntax for all the frames to configure in am_customize file.
14-Alexandrite
December 30, 2018

Hi.

I do not know it well, but...

Is the character ' ; ' at the head of every sentence unnecessary?

It means comment.

 

Sorry, I noticed that this question was solved now.

13-Aquamarine
December 29, 2018
Yes it is comments