eduBuzz Training & Support

 

SupportAdvancedTips

Page history last edited by David Gilmour 6 mos ago

How can I embed a TeacherTube video on an edubuzz blog?

  • Go to your Plugins menu, and activate WordPress Video Plugin.
  • On your TeacherTube video's page, click the "Embed Video" option.
  • Copy the embed code from the box labelled Embeddable w/out Video Search: that will give you a bundle of code like this:

 

<embed src="http://www.teachertube.com/skin-p/mediaplayer.swf" width="425" height="350" type="application/x-shockwave-flash" allowfullscreen="true" menu="false" flashvars="height=350&width=425&file=http://www.teachertube.com/flvideo/69570.flv&image=http://www.teachertube.com/thumb/69570.jpg&location=http://www.teachertube.com/skin-p/mediaplayer.swf&logo=http://www.teachertube.com/images/greylogo.swf&searchlink=http://teachertube.com/search_result.php%3Fsearch_id%3D&frontcolor=0xffffff&backcolor=0x000000&lightcolor=0xFF0000&screencolor=0xffffff&autostart=false&volume=80&overstretch=fit&link=http://www.teachertube.com/view_video.php?viewkey=a02405591215cce600e6&linkfromdisplay=true&recommendations=http://www.teachertube.com/embedplaylist.php?chid=59"></embed>

 

  • Look for the section which is shown in bold above, and note down the number highlighted above in red.
  • In your blog post or page, enter this code to tell your blog to embed that TeacherTube video.
[teachertube <video number>]
 
Be sure to use square brackets as shown, and replace <video number> with the number you noted down earlier.
For the example above, you would enter: [teachertube 69570]
 

You can get more help on this plugin, which handles a wide range of video sites, on the WordPress Video Plugin's Instructions page.

 

 

How do I offer a "Subscribe by email" option on an eduBuzz weblog?

Every WordPress blog offers, at a special address known as its RSS feed address, a list of the latest posts. How many are in that list, and how much information is included in each entry, can be tweaked (Options / Reading / Syndication Feeds).

 

That list of latest posts can be turned into an email newsletter using the free RSS to Email service provided by Feedblitz.

 

Benefit: People who don't have time to visit your site regularly will get an email notification, usually daily, every time new posts are added.

 

Basic steps are:

  • Sign up with Feedblitz (free), and click the activation email you'll receive.
  • Choose to Create a new Newsletter
  • Specify the feed address of your blog as the info source: this is your blog's address with /feed on the end, e.g edubuzz.org/blogs/myblog/feed
  • Design your newsletter
  • Publish it and take a note of the email subscription link's address.
  • Make that available to your audience in your Blogroll links.

 

You can go further and include the basic HTML for the Feedblitz button in your blog sidebar. To do that use a Text widget. The code in your widget will look like this

 

 

 <a href="http://www.feedblitz.com/f/?Sub=373625"><img src="http://www.feedblitz.com/i/da/373625.bmp" alt="Feedblitz button"></a>

 

 


 

How do I create a link to something part way down a page or post?

You might want to do this, for example, if you've created a long page and want to create a set of "Contents" links at the top.

 

This is a two-step process:

 

  • First,  place a special, invisible marker called an anchor at the destination location.

 

  • Then, create a hyperlink which links to that anchor.

 

To create the anchor, go to the text, typically a heading, that is to become the destination. Here we'll use the text "Section 2". Use the Code tab to add an anchor like this:

 

<a name"section2"></a>Section 2

 

This creates an anchor named section2 just in front of the text. In the WordPress Visual Editor a small anchor symbol will be displayed, but the appearance of the live page won't change.

 

Next, link to the anchor. If we are linking within the same page, there's no need to specify the full address (URL) of the anchor.

  • Select the text, say "Section 2" that has to become the hyperlink.
  • Click the "Insert/Edit link" button on the Editor toolbar (it looks like a chain link).
  • Type in the destination as #section2  (there is no need in this case to include "http://")
    • The # symbol denotes we are linking to an anchor.
    • In a similar way we can link to an anchor on a different page by simply adding the # symbol and the anchor name to the end of the URL for the page.

 

 

Finally, test it.

 

 

How do I include a table in my Posts or Pages?

This is quite easy to do, and more to the point, gives great results. Pop over to the Dunbar Primary Parents site to see an example.

It's done using a little HTML , but don't let that put you off. HTML is just a way of including labels (called tags) that tell your browser where the various building blocks of the table start and end. It's a bit like dictating a  description to a typist, and it's not as hard to learn as it looks!

 

  • <table> marks the start of the table, and </table> the end of the table.
  • <tr> marks the start of each row, and </tr> the end of each row.
  • <td>marks the start of a cell (table data), and </td> the end of a cell.

You can find out more about using HTML for tables on tutorial sites such as HTML Dog.

 

Here's the code behind the Dunbar example which you could copy and paste to get started. A few lines have been removed to save space here. You'll need to switch off the normal visual editor as described above.

 

You'll see the <table> tag also tells the browser that the table should use the full width of the page (width="100%"), that it should be aligned to the left (align="left"), should have no border (border="0") and should not have any blank space, or padding, between the text in each cell and the cell's edge (cellpadding="0").

 

<table width="100%" align="left" border="0" cellpadding="0" cellspacing="0">

<tr><td><b>Class</b></td><td><b>Teacher</b></td></tr>

<tr><td>Harbour Room</td><td>Ms C Gilfillan/Mrs L McPheat</td></tr>

<tr><td>Seashore Room</td><td>Mrs R Murray</td></tr>

<tr><td>Lighthouse Room</td><td>Miss E Skene</td></tr>

<tr><td>Castle Room</td><td>Mrs Imrie/Mrs Long</td></tr>

<tr><td>P1A</td><td>Mrs D Sheerin</td></tr>

<tr><td>P1B</td><td>Miss K Martin</td></tr>

<tr><td>P1C</td><td>Mrs C Dillon</td></tr>

<tr><td>P1D</td><td>Miss A Foster</td></tr>

<tr><td>P6C</td><td>Mrs D Wightman</td></tr>

<tr><td>P7A</td><td>Mrs J Legge</td></tr>

<tr><td>P7B</td><td>Mrs S Wong</td></tr>

<tr><td>P7C</td><td>Mrs P Melvin</td></tr>

</table>

 

The result should look something like this (except here width = "400"):

Class Teacher
Harbour Room Ms C Gilfillan/Mrs L McPheat
Seashore Room Mrs R Murray
Lighthouse Room Miss E Skene
Castle Room Mrs Imrie/Mrs Long
P1A Mrs D Sheerin
P1B Miss K Martin
P1C Mrs C Dillon
P1D Miss A Foster
P6C Mrs D Wightman
P7A Mrs J Legge
P7B Mrs S Wong
P7C Mrs P Melvin

 

If you've got this far go and get a coffee - you've earned it!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


How do I embed videos from sites other than the standard ones offered by the "Embed a Media File" button (the yellow toolbar button labelled "A")?

 

The "A" button lets you just copy-and-paste the URL of videos hosted on Google video, DailyMotion, YouTube etc. But what if the video you want to embed is elsewhere? That's where the next button along, "Embed a Flash SWF Movie", is used.

 

First, copy the embed code from the site. It will look something like this:

<object width="406" height="294">

<param value="flvPath=http://www.edutopia.org/media/0937_overview_assess/overview_assess.flv&pPath=http://www.edutopia.org/media/0937_overview_assess/overview_assess.jpg" name="FlashVars"/>

<param value="best" name="quality"/>

<param value="false" name="play"/>

<param value="http://www.edutopia.org/media/videofalse.swf" name="movie"/>

<embed id="video" width="406" height="294" type="application/x-shockwave-flash" src="http://www.edutopia.org/media/videofalse.swf" play="false" pluginspage="http://www.macromedia.com/go/getflashplayer" name="video" quality="best" flashvars="flvPath=http://www.edutopia.org/media/0937_overview_assess/overview_assess.flv&pPath=http://www.edutopia.org/media/0937_overview_assess/overview_assess.jpg"/>

</object>

 

First, don't worry about how horrible it looks!

 

Step 1:

Pick out the basic bits we need, which are:

 

Step 2:

Click the "Embed Flash Movie"  button and answer the prompts. That will insert the basic code in your post, like this:

 

[kml_flashembed movie="http://www.edutopia.org/media/videofalse.swf" width="406" height="294" /]

 

As you can see, though, this doesn't identify either the actual video to play, or the preview picture to show.

 

 

 

Step 3:

We'll now specify which video to play (.flv file), and where to find the preview image. Here we need to provide a path to the actual video file (the .flv) and to the .jpg image that's used to provide a preview. Examine the embed code above, and you'll see a couple of variables being set to do this, flvPath and pPath. To add them, we add a new section, using the syntax:

fvars=" variable1=value1 ; variable2 = value2 "

 

Here's the end result:

 

[kml_flashembed movie="http://www.edutopia.org/media/videofalse.swf" width="406" height="294" fvars=" flvPath=http://www.edutopia.org/media/0937_overview_assess/overview_assess.flv ; pPath=http://www.edutopia.org/media/0937_overview_assess/overview_assess.jpg "/]

 

If you want to get into the details of the syntax for embedding Flash movies, there are more details here: http://kimili.com/plugins/kml_flashembed

 

 

 

 

 

 


Comments (0)

You don't have permission to comment on this page.