Request for technical support

#1
Hi Team,

Kindly help us with below queries we got while our evaluation.

1) LISP Loading- After loading the LISP file, when we run 'INO'cmd (For incremental numbering on blocks) an error pops up 'BAD ARGUMENT' . (LISP file is attached)
2) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
3) How to migrate custom/user defined hatch patterns from AutoCAD to IntelliCAD. *(Critical).
4) Since there is no custom hatches in IntelliCAD, user's custom hatch patterns from AutoCAD is converted into SOLID in IntelliCAD when the ACAD .dwg file is opened in IntelliCAD.
5) Tool Palettes customization helps us to add tools to the existing palette. Is it possible to add our own custom/external tool palette?
6) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle which has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Thanks & Regards,
Madhi V

Re: Request for technical support

#3
Hi Team,

Kindly help us with the below queries we got while our evaluation.

1) LISP Loading- After loading the LISP file, when we run 'INO'cmd (For incremental numbering on blocks) an error pops up 'BAD ARGUMENT'. (LISP file is attached)

https://www.dropbox.com/s/gu38l1g9he83j ... y.lsp?dl=0

2) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
3) How to migrate custom/user-defined hatch patterns from AutoCAD to IntelliCAD. *(Critical).
4) Since there are no custom hatches in IntelliCAD, the user's custom hatch patterns from AutoCAD are converted into SOLID in IntelliCAD when the ACAD .dwg file is opened in IntelliCAD.
5) Tool Palettes customization helps us to add tools to the existing palette. Is it possible to add our own custom/external tool palette?
6) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle that has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Thanks & Regards,
Madhi V

Re: Request for technical support

#4
Just fixed the INO lisp, please try again.

Code: Select all

; MatchText.lsp by J.J.Damstra - Copyright ©2005.
; Replaces ANY selected string for another
; 21-06-05   first release
; 09-07-05   tableindicator

(defun c:INO (/ ch_txt ENTITY ENTITYLIST TXT_STR OBJECT pickpnt E-TYPE n ti)
  (defun ch_txt (TXT_STR ENTITY / ENTITYLIST OLD NEW ENT)
      (setq ENT (car ENTITY)
            ENTITYLIST (entget ENT)
            OLD (assoc 1 ENTITYLIST)
            NEW (cons  1 TXT_STR)
            ENTITYLIST (subst NEW OLD ENTITYLIST))
      (entmod ENTITYLIST)
      (entupd ENT)
    )

  (command ".undo" "begin")
;;;(if (> (atof (getvar "ACADVER")) 16.1)(progn
;;;   (setq ti (getvar "TABLEINDICATOR"))(setvar "TABLEINDICATOR" 0)
;;;))
  (setq no(GETINT "\nEnter the starting no:")
	TXT_STR(RTOS no))

  (while (setq ENTITY (nentsel "\nSelect text to change: ")) ; NIL > WEND
    (if (> (length ENTITY) 3) ; insert/dimension/table
      (progn
	(setq OBJECT (car (last ENTITY))
	      ENTITYLIST (entget OBJECT)
	      pickpnt (cadr ENTITY)
	      E-TYPE (cdr (assoc 0 ENTITYLIST)))
	(cond
	  ((= E-TYPE "INSERT")
	   (ch_txt TXT_STR ENTITY)
	   )
	  ((wcmatch E-TYPE "*DIMENSION")
	   (command ".dim1" "newtext" TXT_STR OBJECT "")
	   )
	  ((= E-TYPE "ACAD_TABLE")
	   (command ".tabledit" pickpnt "@#@")
	   (setq ENTITYLIST (entget OBJECT))
	   (foreach n ENTITYLIST
	     (if (eq (car n) 1)
	       (if (eq (substr (cdr n) 1 3) "@#@")
		 (entmod (subst (cons 1 TXT_STR) n ENTITYLIST))
		 )
	       )
	     )
	   )
	  )
	(entupd OBJECT)
	)
      ; else
      (ch_txt TXT_STR ENTITY) ; text/mtext/attribute
      )
    (setq no(+ no 1)
	  TXT_STR(RTOS no))
    )
  ;;;(if ti (setvar "TABLEINDICATOR" ti))
  (command ".undo" "end")
  (princ)
  )

Re: Request for technical support

#5
Dear Team,

Thanks for resolving the issue with LISP file.

Kindly provide us the resolution to the below pending queries :

1) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
2) How to migrate custom/user-defined hatch patterns from AutoCAD to IntelliCAD. *(Critical).
3) Since there are no custom hatches in IntelliCAD, the user's custom hatch patterns from AutoCAD are converted into SOLID in IntelliCAD when the ACAD .dwg file is opened in IntelliCAD.
4) Tool Palettes customization helps us to add tools to the existing palette. Is it possible to add our own custom/external tool palette?
5) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle that has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Thanks & Regards,
Madhi V

Re: Request for technical support

#7
Dear Team,

Thanks for resolving the issue with Custom/User-Defined Hatches.

Kindly help us with below queries as well :

1) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
2) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle that has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Your early response will highly be appreciated.

Thanks & Regards,
Madhi S

Unable to use PRINT STYLE and TRANSPARENCY together.

#9
Hi CMS Team,

Please provide a support on the below mentioned query,

In the PRINT setup page, when the PRINT STYLE(Icad.ctb) is selected and if we select PRINT TRANSPARENCY, an message tab pops up saying....
"Print transparency mode and print style are enabled at the same time and this combination is currently not supported"

Kindly provide a solution where i can use both my print styles with transparency simultaneously.