Note: You are currently viewing documentation for Moodle 3.9. Up-to-date documentation for the latest stable version of Moodle may be available here: Multimedia plugins FAQ.

Multimedia plugins FAQ: Difference between revisions

From MoodleDocs
(→‎See also: forum discussion link)
mNo edit summary
Line 8: Line 8:
You can add specific dimensions to the end of the attribute HREF inside the anchor <A> tag.
You can add specific dimensions to the end of the attribute HREF inside the anchor <A> tag.
<pre>
<pre>
<a href="link-to-some-flash-file.swf?'''d=480x640'''">Flash File</a>
<a href="link-to-some-flash-file.swf?d=480x640">Flash File</a>
</pre>
</pre>
where 480x460 are the dimensions in pixels that you wish to use.
where 480x460 are the dimensions in pixels that you wish to use.

Revision as of 17:08, 21 February 2013

What is the best way of Embedding media in Moodle?

  1. Interesting discussion on Moodle Mahem list: https://groups.google.com/forum/?pli=1#!topic/moodlemayhem/txt_5pNwATk
  2. Playing Flash FLV & SWF in MOODLE 2.0: http://moodle.org/mod/forum/discuss.php?d=163374

How can I have embedded media resized appropriately?

You can add specific dimensions to the end of the attribute HREF inside the anchor <A> tag.

<a href="link-to-some-flash-file.swf?d=480x640">Flash File</a>

where 480x460 are the dimensions in pixels that you wish to use.

See also