locked
how to display swishmax (.swi) file in web page RRS feed

  • Question

  • User1732498257 posted

    Hi,

    I am very new to ASP.Net development. Is there any way to display the swishmax (.swi) file in asp.net web page ?

    I want to use swishmax file as banner in the main page of my web application. I do not have the 4th version of swishmax but the former version of swishmax.

    In my swishmax software, there is no option for export -> gif. Instead, it has the following shown export options.

    1. swf
    2. html+swf
    3. avi
    4. exe (projector)
    5. copy html tp clipboard

    SwishMax Export Option

    Please help me a way to use .swi file in asp.net page ?

    Tuesday, September 24, 2019 9:44 AM

All replies

  • User753101303 posted

    Hi,

    SWF needeed browser plugins to play and is deprecated now. Not sure what does "copy html to clipboard" (if 2 or HTML and css animations ?)

    Depending on how complex it is you could maybe use https://thoughtbot.com/blog/css-animation-for-beginners instead or try rather http://board.flashkit.com/board/forumdisplay.php?17-SWiSH-Help maybe if you need further help.

    Tuesday, September 24, 2019 11:13 AM
  • User-719153870 posted

    Hi Kuttans,

    Maybe you can try to export your swishmax file to a .swf file, and then you will find a lot of links about how to show swf in html.

    Here's one you can refer to:

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <div>
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  width="778" height="168">
                    <embed runat="server" src="~/files/Car.swf" type="application/x-shockwave-flash" width="425" height="344"></embed>
                </object>
            </div>
        </form>
    </body>
    </html>

    Hope this could help.

    Best Rgard,

    Yang Shen

    Wednesday, September 25, 2019 8:24 AM