Results 1 to 4 of 4

Thread: How to make flash movie or .swf file work in spring environment?

  1. #1
    Join Date
    Dec 2011
    Posts
    4

    Unhappy How to make flash movie or .swf file work in spring environment?

    Hi All-

    I am working on a project which involves Spring IOC, ORM, LDAP and Hibernate.
    Everything is fine so far but now one of the requirement is to add the Flash file in to JSP/Servlate page.
    I tried searching for an example but could not find one. May be my search string might not contain the magic word.

    Can some body point me to right direction?

    I have tried embedding the Test.swf file in JSP page but did not work.

    I am using WebLogic 10.3

    Please help.

  2. #2

    Default

    Creating your first Flash Professional CS5 Script
    Follow This Link
    http://www.adobe.com/devnet/flash/ar...createfla.html

  3. #3

    Default Embed Flash script to jsp page

    To Embed Flash Script to JSP Page
    <HTML>
    <HEAD>
    <meta http-equiv=Content-Type content="text/html;
    charset=Big5">
    <TITLE>Embed flash file in jsp page.</TITLE>
    </HEAD>
    <BODY bgcolor="#ffffcc">
    <p><% out.println("This is embedded flash file
    in jsp page."); %></p>
    <div style="position: relative; width: 400px; height:
    300px; overflow:hidden">
    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"

    codebase="http://download.macromedia.com/pub/shockwave/cabs
    /flash/swflash.cab#version=6,0,29,0"
    width="225" height="113">
    <param name="quality" value="high">
    <embed src="pic.swf" quality="high" pluginspage=
    "http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="225"
    height="113">
    </embed>
    </object>
    </div>
    </BODY>
    </HTML>

  4. #4
    Join Date
    Dec 2011
    Posts
    4

    Default

    Thanks it works like a charm.

Posting Permissions

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