alter size of flash movies

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mrcw
    New Member
    • Nov 2008
    • 82

    alter size of flash movies

    Hi I have a flash movie that is bigger than the axShockwaveFlas h placeholder that plays it. The axShockwaveFlas h placeholder expands to the size of the movie.

    I have found a website at http://www.asp.net/web-pages/tutorials/files,-images,-and-media/10-working-with-video but asp is totaly different from c#.

    How can I make the movie shrink to fit in the axShockwaveFlas h placeholder?
  • zmbd
    Recognized Expert Moderator Expert
    • Mar 2012
    • 5501

    #2
    Would be nice to see the rest of your code.
    However, try setting the size to what you want after the player starts somethng like:

    Code:
    (... set up code for the movie..._)
    //*start the movie
    axShockwaveFlash.Play();
    //*
    //*reset the size to what I want it to be now that the
    //*object is loaded and open
    axShockwaveFlash.Size = new System.Drawing.Size(1200, 700);
    //*
    //*restart the player
    axShockwaveFlash.Play();
    (... rest of the code ...)

    Comment

    • mrcw
      New Member
      • Nov 2008
      • 82

      #3
      thank you
      (rest of code 6000+ lines!)

      Comment

      Working...