FREE UTILITY: AMS E&U (AutoPlay Media Studio Edit & Update)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mz241508
    Forum Member
    • Oct 2006
    • 351

    FREE UTILITY: AMS E&U (AutoPlay Media Studio Edit & Update)

    Well, its simple really, i tried to create a utility that rewrites the whole project and replaces the functions with Application.LoadScript/Application.RunScriptFile/etc which will run script files compiled with LuaCompile but that didn't turn out the way i was hoping it to.

    So i just made it to allow users to open AMS projects, quickly edit and update the project without open AMS 5/6.

    Quick Features:
    • Supports both AMS 5 & AMS 6 projects
    • Every events editable exept for Objects > Quick Action
    • Editable events listed in combobox
    • Resizable


    ScreenShot:
    Click image for larger version

Name:	untitled.JPG
Views:	1
Size:	67.3 KB
ID:	285688

    Download:

    Download
  • jackdaniels
    No longer a forum member
    • Mar 2007
    • 533

    #2
    GOOD WORK mz241508 :yes

    Comment

    • CyberRBT
      Forum Member
      • Nov 2003
      • 155

      #3
      It's nice having all the functions and events in one pull-down list like that. Good idea.

      'Project Details' didn't do anything for me.

      Also, if you're interested in starting in the user's AMS projects folder, I posted a snippet here that gets it for you.

      :yes

      Comment

      • RizlaUK
        Indigo Rose Customer
        • May 2006
        • 5552

        #4
        Yeah, i kinda like the layout too, nice job :yes

        Also, Project Details dosent work for me either
        Embrace change in your life, you never know, it could all work out for the best

        Comment

        • mz241508
          Forum Member
          • Oct 2006
          • 351

          #5
          Minor update

          Minor update
          Version 1.0.0.1
          • Fixed the project details menu item
          • Add Insert button (inserts a few quick functions at the moment)

          Use the same download link above, thanks! :yes

          Comment

          • Jason Pate
            Forum Member
            • Jan 2002
            • 328

            #6
            Nice work, now how about one for SF7? Did you make this with AMS 5/6?

            Comment

            • CyberRBT
              Forum Member
              • Nov 2003
              • 155

              #7
              Nice. :yes

              Comment

              • mz241508
                Forum Member
                • Oct 2006
                • 351

                #8
                @Jason Pate - I try and make it edit SF7 projects and i did make it with AMS 6.0.5.0.

                + What are the extensions for setup factory?
                Last edited by mz241508; 04-13-2007, 04:05 AM.

                Comment

                • mz241508
                  Forum Member
                  • Oct 2006
                  • 351

                  #9
                  Update v1.0.2.0

                  Updated - v1.0.2.0
                  Updates:
                  • Supports Setup Factory Projects (*.sf7)
                  • Added project settings editable for AMS
                  • Added Save/Load scripts function (*.LUA)

                  Use the download link below this time, thanks! :yes

                  Comment

                  • Jason Pate
                    Forum Member
                    • Jan 2002
                    • 328

                    #10
                    Sweet, ok I hope you dont kill me I have another idea for you,

                    A search and replace function, that can loop through all Events. Always a pain you have a message you cant fund, so many places you can put code I always have to work to find a message or something that a user is reporting but I cant remember what tab or screen its on.

                    Comment

                    • RizlaUK
                      Indigo Rose Customer
                      • May 2006
                      • 5552

                      #11
                      lol, i know that feeling

                      what iv started doing is storing my messages like this:

                      Code:
                      g_Title = "Notice"
                      g_Error = _tblErrorMessages[error]
                      g_DeleteError = "There was an error deleting the selected entry."
                      g_DeleteSel = "Please select an item to delete." 
                      g_DeleteConfo = "Are you sure you want to delete this channel."
                      and save them to a lua file and call it in globals and call the dialogs like:

                      Code:
                      Dialog.Message(g_Title, g_DeleteError , MB_YESNO, MB_ICONNONE, MB_DEFBUTTON1);
                      that way when i need to edit the text of a message i know where to go stright away
                      Embrace change in your life, you never know, it could all work out for the best

                      Comment

                      • Jason Pate
                        Forum Member
                        • Jan 2002
                        • 328

                        #12
                        Not worried about editing the text so much as I am about tracking down an error. What part of the script generated the error, if there was a method to have the msg box display the line number and section name that would be a dream.

                        Comment

                        • mz241508
                          Forum Member
                          • Oct 2006
                          • 351

                          #13
                          Can you be more specific on the error message topic, and i'll try and mix it up? :o

                          Comment

                          • bule
                            Indigo Rose Customer
                            • May 2005
                            • 1116

                            #14
                            I think he means refactoring.

                            You can see how it's done in Delphi here:
                            Last edited by bule; 04-13-2007, 09:54 AM.
                            Never know what life is gonna throw at you. ZubTech

                            Comment

                            • Jason Pate
                              Forum Member
                              • Jan 2002
                              • 328

                              #15
                              Want the ability to search the entire project for a string, just a standard "Find and Replace" Like Notepads "Edit" "Replace" feature, SF7 and AM6 have it as well but its per code screen, I would like to ability to do it through out the entire project.

                              Comment

                              Working...
                              X