Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 9 of 9
  1. #1
    Join Date
    Feb 2005
    Posts
    2

    Cannot arrange items

    On one page, I am having 2 items on it. One is a Flash file and another one is a jpg file. I am trying to arrange the flash file to back (Behind the jpg file), it does not go behind.

    Anybody got any idea?

  2. #2
    Join Date
    Jan 2000
    Posts
    2,002
    Short answer: Can't be done.

    Long answer: Do a search on the forums here you'll find some lengthy discussions.

  3. #3
    Join Date
    Feb 2005
    Posts
    2
    My goodness, just spend almost for $300 for a piece of software that has the feature Arrange when right click but it does not work as it suppoed to....

    I don't think this is complicate to program, why isn't there a fix for this?

  4. #4
    Join Date
    Jan 2000
    Posts
    2,002
    The problem is that the flash object is hosted inside of a window and the image file is just drawn on the background window. So, the flash window is always on top of image objects since they are a part of the BG window. It is not a bug per-se but rather an issue with Macromedia flash.

  5. #5
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728
    Quote Originally Posted by delphi
    I don't think this is complicate to program, why isn't there a fix for this?
    It is complicated. In fact, because of the way flash is rendered, it's practically impossible to implement that sort of thing in autoplay 5.0. Autoplay uses very advanced drawing methods to make things like object transparency possible, and the flash renderer is only designed for rendering to its own window. Because flash is in a separate window, there is no way to arrange it behind autoplay's objects.

    We have ideas for architecture changes that could make it possible, and this is something we plan to investigate for the next major version (6.0).
    Last edited by Lorne; 02-23-2005 at 03:05 PM.
    --[[ Indigo Rose Software Developer ]]

  6. #6
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    You can use the SetMask DLL that I've developed to mask out the area of the Flash Movie that you want your image to show through.

    here's a thread with an example:
    http://www.indigorose.com/forums/sho...ash+background

    for more on SetMask follow the link in my signature.

    Quote Originally Posted by delphi
    On one page, I am having 2 items on it. One is a Flash file and another one is a jpg file. I am trying to arrange the flash file to back (Behind the jpg file), it does not go behind.

    Anybody got any idea?

  7. #7
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728
    Good tip, you can use the setmask.dll to reveal a portion of the autoplay area behind the flash object. You just can't place an image object translucently over the flash object (e.g. you can't have a button with a dropshadow appear superimposed over the flash object).
    --[[ Indigo Rose Software Developer ]]

  8. #8
    Join Date
    Jan 2005
    Posts
    26

    I don't know if this helps, but try this

    I was recently trying to do something similar. In my program I want to show a flash animation if the processor is good enough, if not, it will show a JPG

    speed = Registry.GetValue(HKEY_LOCAL_MACHINE, "HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\ 0", "~MHz", true)

    if (String.ToNumber(speed) < 1000)
    then
    Flash.SetVisible("Flash2",false)
    Flash.SetEnabled("Flash2",false)
    Image.SetVisible("Image1",true)
    Image.SetEnabled("Image1",true)

    end

  9. #9
    Join Date
    Aug 2003
    Location
    Maine, USA
    Posts
    1,695
    Using <div> layers (z-index) in a web object, you could have a jpg over Flash.

Similar Threads

  1. Replies: 6
    Last Post: 12-01-2004, 12:45 PM
  2. over 1'000'000 items in a data base
    By Josué Alba in forum AutoPlay Media Studio 5.0
    Replies: 9
    Last Post: 11-23-2004, 08:41 PM
  3. What Happens to Comments, Blank Lines, Disabled Items at build time?
    By kpsmith in forum AutoPlay Media Studio 4.0
    Replies: 1
    Last Post: 11-11-2002, 09:49 AM
  4. How do choose the order of items
    By hank in forum Setup Factory 6.0
    Replies: 1
    Last Post: 08-15-2002, 02:56 PM
  5. Tip: Variable number of text items determined at runtime
    By csd214 in forum Setup Factory 6.0
    Replies: 1
    Last Post: 12-10-2001, 12:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts