Script files run by entering at AutoCAD's command prompt:
SCRIPT
The Select Script File window appears showing you all files with extension .SCR
Select the Script file you want to run.
In this case I named the script file ResourceFile.scr then click the Open button

Note the drawing file is named Drawing1.dwg and does not match with the name of the Block you want to insert ResourceFile.dwg
AutoCAD will then run the commands as you entered them in the Script file:

In this case I changed the Script file from my last post to look like this:
(defun script-cancel ()(command)(command "resume"))
_.-insert ResourceFile 0,0
(script-cancel)
_.-insert *Block_1 0,0 1 0
The Script first defines a lisp function called script-cancel that would cancel the current active command and continue to resume with the next commands in the Script.
Then the Script executes the Insert command as you showed in your menu macro.
After entering the insertion point of 0,0 the Script runs the (script-cancel) function to cancel the remainder of the Insert prompts and continues to Resume to the next Insert command sequence in the Script.
Since the forum does not support the attachment of Script files, I've attached the entire Script file using extension .txt. When you save the attachment just rename the file as ResourceFile.scr. Then AutoCAD's Script command will see this in the Select Script File window.