I'm working on creating a picasaweb slideshow bbcode, and all that I'm finding are phpbb versions. I'm hoping somebody can help me convert this to vbulletin bbcode.
Code:
BBcode Usage:
[picasa]http://picasaweb.google.com/{INTTEXT}/{IDENTIFIER2}#[/picasa]
HTML replacement:
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js">
</script>
<div id="piks{INTTEXT}{IDENTIFIER2}"> <script>
var flashvars = {
feed: "http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F{INTTEXT}%2Falbum%2F{IDENTIFIER2}%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US",
RGB: "0x000000"
};
var params = {
pluginspage: "http://www.macromedia.com/go/getflashplayer",
allowscriptaccess: "always"
};
swfobject.embedSWF("http://picasaweb.google.com/s/c/bin/slideshow.swf",
"piks{INTTEXT}{IDENTIFIER2}", "600", "450", "9.0.0", "",
flashvars, params);
</script>
</div>
I'm expecting that the {param} tags are going to replace a few things here, I'm just not sure what.
Here is a sample slideshow embed code that I need to chop up somehow:
Code:
<embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="600" height="400" flashvars="host=picasaweb.google.com&hl=en_US&feat=flashalbum&RGB=0x000000&feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fjustinmcfarland0%2Falbumid%2F5472781521410630865%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
Hopefully somebody can help, I'm to the point where I'd be willing to pay for a successful code. Iframe is banned with picasaweb and flickr. I've been doing some intensive searching across the web and it would appear that nobody has picasaweb embedded to their vbulletin installation.
Thanks.