Embeding FLASH Movies

Read the article this discussion is about


  1. helper2
  2. Umais
  3. SandyMcC
  4. kishannarasiah
  5. that_is_nana

This archived discussion is "read only".
For the corresponding "live" discussions, post in the active topic forum here.



Top 1.   Feb 9, 2002 12:58 AM

» helper2 - Advanced Options for Embedding Flash Movies

Though the basic idea of putting a Flash movie on a web page is essential, there are other methods that make the movie a bit more than a small area on your browser. Please note that not all movies are a candidate for the following expanded use of the browser.

The original embedding HTML code gives you an area for the movie of 500 pixels by 500 pixels:

<object width="500" height="500">
<param name="movie" value="filename.swf">
<embed src="filename.swf" width="500" height="500">
</embed>
</object>

Advanced embedding (uses 100% of the browser or 100% of the width of the table that you have placed the movie):

<OBJECT WIDTH=100% HEIGHT=100%>
<PARAM NAME=movie VALUE="filename.swf">
<PARAM NAME=quality VALUE=high>
<EMBED src="filename.swf" WIDTH=100% HEIGHT=100% TYPE="application/x-shockwave-flash" PLUGINSPAGE="http: //www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</EMBED>
</OBJECT>

NOTE: An extra space was added after the "http:" of the PLUGINSPAGE link so that Suite101 did not truncuate the link -- you must remove this space.

The advanced method includes a link for the browser to automatically download Flash if it is not on the client (user) machine.

-- posted by helper2


Permalink Print Discussion Print Discussion Email Discussion Email Discussion Join the latest discussions Join the latest discussions

Top 2.   Feb 12, 2002 4:18 AM

» Umais - Re: Advanced Options for Embedding Flash Movies

In response to message posted by helper2:

Thanks for posting the message. I have written width and height parameters in pixels only because in the start of article, it is clearly written that you are expected to be an HTML expert and any HTML expert is well aware of these things.

The second idea is good if the user has not already FLASH Plugin installed in his browser. I was already willing to add it.

I shall appreciate that you found time in reading my articles and hoping for further suggestions in future and previous articles.

-- posted by Umais


Permalink Print Discussion Print Discussion Email Discussion Email Discussion Join the latest discussions Join the latest discussions

Top 3.   Feb 15, 2002 11:21 AM

» SandyMcC - :)

I find I don't have the time I used to take to play with my pc, but I do like to read these articles. Thanks for all your patient, easy going lessons!

-- posted by SandyMcC


Permalink Print Discussion Print Discussion Email Discussion Email Discussion Join the latest discussions Join the latest discussions

Top 4.   Jul 29, 2002 4:28 AM

» kishannarasiah - embedding swf in HTML

i have a swf file and i have embedded in HTML.
now i want to give a hyperlink(href) for that,
how to give that?
the link should be given only in html not in flash file like "GetURL".

example

codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0"
id="Movie3" width="268" height="70">





width="268" height="70"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">

this doesn't work.but how can i do the above?
when click on the swf it should direct to another HTML page.

reply needed very urgent?

-- posted by kishannarasiah


Permalink Print Discussion Print Discussion Email Discussion Email Discussion Join the latest discussions Join the latest discussions

Top 5.   Sep 4, 2004 1:53 AM

» that_is_nana - How can I hyperlink a ShockwaveFlash object in ASP.

How can I hyperlink a ShockwaveFlash object in ASP.NET ? It must be in HTML code not in flash editor .
Thanks .

-- posted by that_is_nana


Permalink Print Discussion Print Discussion Email Discussion Email Discussion Join the latest discussions Join the latest discussions

Please follow the guidelines set forth in the Suite101 Posting Etiquette when adding to the discussion.