Is this posable with background

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • nitrobry
    Forum Member
    • Mar 2007
    • 72

    Is this posable with background

    my project would open with a background picture and a button, the button would then open a folder / other page where my background pictures are, then you can click any picture to change the project background.

    Can this be done
  • JDog37
    No longer a forum member
    • Feb 2008
    • 566

    #2
    Hm

    Are you ref. to a page jump?

    Comment

    • nitrobry
      Forum Member
      • Mar 2007
      • 72

      #3
      No page jump isnt what i want.

      I would like to click a button to open a folder, where my background pictures are, then by clicking or double click of the mouse, the picture would change the project background.

      Comment

      • ShadowUK
        No longer a forum member
        • Oct 2007
        • 1322

        #4
        Originally posted by nitrobry View Post
        No page jump isnt what i want.

        I would like to click a button to open a folder, where my background pictures are, then by clicking or double click of the mouse, the picture would change the project background.
        Simply put.

        Code:
        Filename = "AutoPlay\\Images\\Background.png";
        
        for K, V in Application.GetPages() do
        	Application.SetPageProperties(V, {BackgroundType = 2, ImageFilename = Filename});
        end

        Comment

        Working...
        X