How 2 save active file to a temp file then apply a tool..

How 2 save active file to a temp file then apply a tool..

2
NewbieNewbie
2

    Jan 10, 2008#1

    hi all,
    I'm creating a tool in ue, which save active file to a temp file, then pass the temp file to another tool. what is troubling me is how to save current active file to a temp file...any help is appreciated!!

    6,603548
    Grand MasterGrand Master
    6,603548

      Re: How 2 save active file to a temp file then apply a tool.

      Jan 10, 2008#2

      You could use a macro which does first the save to a temp file and then runs the user tool you have configured. Something like:

      Clipboard 9
      ToggleBookmark
      SelectAll
      Copy
      EndSelect
      GotoBookMark -1
      ToggleBookmark
      NewFile
      Paste
      SaveAs "C:\Windows\Temp\Testfile.tmp"
      CloseFile
      ClearClipboard
      Clipboard 0
      RunTool "case-sensitive name of your user tool"
      Best regards from an UC/UE/UES for Windows user from Austria

      2
      NewbieNewbie
      2

        Jan 11, 2008#3

        Mofi,
        Thank you in advance!