new site for content

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • 2epro
    New Member
    • Jun 2008
    • 25

    new site for content

    2e-Pro.com hosts projects and content.


    We will be adding soon :

    Buttons / Images / Backgrounds / Panels / Icons / Fonts


    Code:
    www.2e-pro.com
  • Imagine Programming
    Indigo Rose Customer
    • Apr 2007
    • 4252

    #2
    Nice, thanks! i like miniTUNEZ, an option for adding your own streams would be nice just a thought
    Bas Groothedde
    Imagine Programming :: Blog

    AMS8 Plugins
    IMXLH Compiler

    Comment

    • 2epro
      New Member
      • Jun 2008
      • 25

      #3
      i been dying to remake that, unfortunaley i lost that non compiled code, but im sure i could remake it in 5 secs...

      how could i do such a thing as user streams...

      I think i could manage loading 1 stream, but i dont know about saving them into the prog, ???

      Comment

      • Imagine Programming
        Indigo Rose Customer
        • Apr 2007
        • 4252

        #4
        How about saving them into an inifile, or xml i'll make you an example
        Bas Groothedde
        Imagine Programming :: Blog

        AMS8 Plugins
        IMXLH Compiler

        Comment

        • Imagine Programming
          Indigo Rose Customer
          • Apr 2007
          • 4252

          #5
          Here you go, this allows you to add new Streams as you see you can add your standard streams
          Attached Files
          Bas Groothedde
          Imagine Programming :: Blog

          AMS8 Plugins
          IMXLH Compiler

          Comment

          • 2epro
            New Member
            • Jun 2008
            • 25

            #6
            loading and checking out script now TY

            Comment

            • 2epro
              New Member
              • Jun 2008
              • 25

              #7
              ok lemme get this straight your saving a table of data to an ini file, then reading it later... ?

              im not too sharp on saving to a table or loading from a table can u do a simple example of both plz..

              Comment

              • Imagine Programming
                Indigo Rose Customer
                • Apr 2007
                • 4252

                #8
                Sure tomorrow i don't have much time right now
                Bas Groothedde
                Imagine Programming :: Blog

                AMS8 Plugins
                IMXLH Compiler

                Comment

                • RizlaUK
                  Indigo Rose Customer
                  • May 2006
                  • 5552

                  #9
                  Rave-in-a-Box
                  lol, sounds cool, but i have no sound here, i will check it all out when i get home :yes
                  Embrace change in your life, you never know, it could all work out for the best

                  Comment

                  • Imagine Programming
                    Indigo Rose Customer
                    • Apr 2007
                    • 4252

                    #10
                    Originally posted by 2epro View Post
                    ok lemme get this straight your saving a table of data to an ini file, then reading it later... ?

                    im not too sharp on saving to a table or loading from a table can u do a simple example of both plz..
                    Well the saving is actually not a table, i just add the new item to a listbox and use INIFile.SetValue to also add to the inifile. I use a table for loading them again though...
                    Code:
                    sPath="Autoplay\\Docs\\list.ini"
                    tSections=INI.GetSectionNames(sPath)
                    --[[ returns a table containing all the [IniSection] "tags" and puts them in a table (without the [ and ]) then with a for loop you can add them to a listbox.]]
                    
                    For i, v in tSections do
                    --[[This does an action for all the items in the table, i stands for the current number being processed in the table, v stands for the value of the current number and "in tSections" means that it's processing that table.]]
                    --With INIFile.GetValue you then just use it like this:
                    sStream=INIFile.GetValue(sPath, v, "stream")
                    
                    --so to be clear, v is the name, sStream is the StreamURL
                    ListBox.AddItem("ListBox1", v, sStream)
                    end
                    Bas Groothedde
                    Imagine Programming :: Blog

                    AMS8 Plugins
                    IMXLH Compiler

                    Comment

                    • Imagine Programming
                      Indigo Rose Customer
                      • Apr 2007
                      • 4252

                      #11
                      Did you get it working?
                      Bas Groothedde
                      Imagine Programming :: Blog

                      AMS8 Plugins
                      IMXLH Compiler

                      Comment

                      • 2epro
                        New Member
                        • Jun 2008
                        • 25

                        #12
                        like i said i recently formatted my pc and lost all my am6 am7 files so i have no backup. unless theres a way to convert an exe back to am7 i have to start over from scratch...

                        Comment

                        • Imagine Programming
                          Indigo Rose Customer
                          • Apr 2007
                          • 4252

                          #13
                          hmm what a pitty righT?:P ah well maybe we'll come up with something later:P
                          Bas Groothedde
                          Imagine Programming :: Blog

                          AMS8 Plugins
                          IMXLH Compiler

                          Comment

                          • 2epro
                            New Member
                            • Jun 2008
                            • 25

                            #14
                            maybe you could start a poll on here to see if the application is worth restarting from scratch. I wouldnt mind starting the project if it had public interest.


                            :yes

                            Comment

                            Working...
                            X