phpBB Forum BBCode for Pano2VR?

Q&A about the latest versions
Post Reply
Johncn
Posts: 3
Joined: Sun Feb 01, 2009 4:30 am

Hello,

I have the same forum software that you use here (phpBB3) on several sites, and want to display the .swf files Pano2VR creates in my pages.

Although I used the Flash tag, the converted panorama I tried only displayed in a phpBB3 forum post as the preview colors of sepia / low res...like this:

Image

So, I am thinking I need to create a BBCode to handle the .swf file...but the phpBB support forums are down today.

I tried this BBCode addition, and it did not work for me:

Code: Select all

[swf]{TEXT}[/swf]

Code: Select all

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="800" height="600">
	<param name="movie" value="{URL}" />
	<param name="quality" value="high" />
	<embed src="{URL}" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="800" height="600">
	</embed>
</object>
Here is a link to the page I was testing on if anyone wants to see it:

http://mushing.bssd.org/forum/viewtopic.php?f=7&t=702

Any help appreciated!

Regards,

JTC
smooth
Posts: 1493
Joined: Sat Sep 09, 2006 7:30 pm

Hmm, I don't know about phpBB3 (never really like the new layout) But I guess it can be modified.

On one of my forums (phpBB2) I use the following code:

Code: Select all

<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" border="0" width="520" height="350">
	<param name="movie" value="http://www.yoursite.com/yourdirectory/yourmovie.swf">
	<param name="quality" value="High">
                <param name="AllowFullScreen" value="true">
                <param name="menu" value="false">
	<embed src="http://www.yoursite.com/yourdirectory/yourmovie.swf" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" name="obj1" width="520" height="350" AllowFullScreen="true" menu="false"></object>
But I also use the MOD for admin HTML.
Here is a link to it working

Regards, Smooth 8)
Image
Post Reply