Log in

View Full Version : Script for clicking An Alphabet to show in another window with audio embeded



jek
01-12-2011, 03:21 PM
Hi guys:

Happy New Year.

I am looking for a script that will allow me to :

1) Click on a thumbnail and it will open in a new window
2) The New Window will have sounds embeded in each "Alphabet" and Picture on the Page
3) It will be great if the script can be compatible withr "Joomla 1.5 CMS" orthwise I can struggle with HTML or Xml files if it comes to that
4) Preferrably a free script will be okay. But if not free, I will not mind paying an affordable price for it.

Here is a link that shows exactly what I am looking for. The capability for embedding sounds in each character and image on a webpage:

http://www.donquijote.org/spanishlanguage/alphabet/

I appreciate your assistance.

Thanks.

cindylou
01-12-2011, 03:58 PM
hi jek...ahm, you may browse on the blogs here in DD...there are tons of codes for that...PHP is compatible with joomla and there are tons on the blogs section here...try checking it :)

bluewalrus
01-12-2011, 06:43 PM
That is using flash and a new window. The new window part is pretty easy.


<a href="somewhere.html" target="_blank"><img src="thumb.gif" alt="thumb" /></a>

There are other ways to do this I think the '_blank' may be deprecated now. You could use php on the new page to grab the record for example


<a href="somewhere.php?letter=a" target="_blank"><img src="thumb_a.gif" alt="A thumb" /></a>

Then on the somewhere page


$letter = $_GET['letter'];

Then send that $letter to the flash. That $letter can also be used to display the logo and text on the page. I don't think there is a script made on here for this yet. You might be able to find one on google and modify it. You just need the a flash player for sound, the letter sound files, and your logos.