Insert Blocks from library - is it possible to avoid the scale and rotation prompt?

aridzv
edited January 2022 in 2D Drafting
Hi.
I'm using a user defined block library, and when draging a block in to the drawing (or duble clicking on a block icon),
after selecting the insertion point the software prompt me in the command line to set the rotation angle and insertion scale, and then it go to the attribute window.
is it possible to avoid the scale and rotation part and move straight to the attribute window,
just like it work with the insert command,where both the rotation and scale use the system default values?
ATTDIA Variable is set to 1.
ATTREQ Variable is set to 1.

thanks,
Ari.

*EDIT:
I eventually used lisp to avoid it:
(defun c:IA (/ osm )
(command "INSERTALIGNED" "~" pause "" "" )
(princ)
)