<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WP Marketing &#187; Tag: hana_flv_player_template_call - Recent Posts</title>
		<link>http://wpmarketing.org/forum/tags/hana_flv_player_template_call</link>
		<description>Wordpress for Internet and Affiliate Marketing</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 12:52:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wpmarketing.org/forum/search.php</link>
		</textInput>
		<atom:link href="http://wpmarketing.org/forum/rss/tags/hana_flv_player_template_call" rel="self" type="application/rss+xml" />

		<item>
			<title>hanadaddy on "Insert flv into template theme files"</title>
			<link>http://wpmarketing.org/forum/topic/insert-flv-into-template-theme-files#post-58</link>
			<pubDate>Mon, 09 Nov 2009 12:23:04 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">58@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Hello kneelinghorse,&#60;/p&#62;
&#60;p&#62;Please note that &#60;code&#62;&#38;lt;?php&#60;/code&#62; and &#60;code&#62;?&#38;gt;&#60;/code&#62; are used to indicate the PHP script code. Therefore you should not use &#60;code&#62;&#38;lt;?php&#60;/code&#62; and &#60;code&#62;?&#38;gt;&#60;/code&#62; again when &#60;code&#62;&#38;lt;?php&#60;/code&#62; is already used to indicate the start of PHP script. Therefore, you can just take those &#60;code&#62;&#38;lt;?php&#60;/code&#62; and &#60;code&#62;?&#38;gt;&#60;/code&#62; out.&#60;/p&#62;
&#60;pre&#62;

&#38;lt;?php

if (function_exists('hana_flv_player_template_call')){
$hana_arg=&#34;
video='$videolink'
splashimage='$splashimage'
player='2'
width='180'
height='150'
more_2=\&#34;showStopButton: false, showScrubber: false, showVolumeSlider: false,showMuteVolumeButton: false,
showFullScreenButton: false, showMenu: false, controlsOverVideo: 'locked',controlBarBackgroundColor: -1,
controlBarGloss: 'none', usePlayOverlay:false \&#34;
&#34;;
echo hana_flv_player_template_call($hana_arg);

}
?&#38;gt;
&#60;/pre&#62;
&#60;p&#62;Thanks for using hana flv player.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kneelinghorse on "Insert flv into template theme files"</title>
			<link>http://wpmarketing.org/forum/topic/insert-flv-into-template-theme-files#post-56</link>
			<pubDate>Sun, 08 Nov 2009 01:55:13 +0000</pubDate>
			<dc:creator>kneelinghorse</dc:creator>
			<guid isPermaLink="false">56@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I am trying to create a video page template.  I essentially want to call a custom field from a page to fill in the video and splashimage fields.  So from your template theme code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php&#60;br /&#62;
if (function_exists('hana_flv_player_template_call')){&#60;br /&#62;
	$hana_arg=&#34;&#60;br /&#62;
video='http://www.kneelinghorse.com/wp-content/plugins/hana-flv-player/babyhana.flv'&#60;br /&#62;
player='2'&#60;br /&#62;
width='180'&#60;br /&#62;
height='150'&#60;br /&#62;
more_2=\&#34;showStopButton: false, showScrubber: false, showVolumeSlider: false,showMuteVolumeButton: false,&#60;br /&#62;
showFullScreenButton: false, showMenu: false, controlsOverVideo: 'locked',controlBarBackgroundColor: -1,&#60;br /&#62;
controlBarGloss: 'none', usePlayOverlay:false \&#34;&#60;br /&#62;
&#34;;&#60;br /&#62;
	echo hana_flv_player_template_call($hana_arg);&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I would like to do something like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?php	$videolink = get_post_custom_values($key = 'videolink'); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php	$splashimage = get_post_custom_values($key = 'splashimage'); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
if (function_exists('hana_flv_player_template_call')){&#60;br /&#62;
	$hana_arg=&#34;&#60;br /&#62;
video='&#38;lt;?php echo $videolink; ?&#38;gt;'&#60;br /&#62;
splashimage='&#38;lt;?php echo $splashimage; ?&#38;gt;'&#60;br /&#62;
player='2'&#60;br /&#62;
width='180'&#60;br /&#62;
height='150'&#60;br /&#62;
more_2=\&#34;showStopButton: false, showScrubber: false, showVolumeSlider: false,showMuteVolumeButton: false,&#60;br /&#62;
showFullScreenButton: false, showMenu: false, controlsOverVideo: 'locked',controlBarBackgroundColor: -1,&#60;br /&#62;
controlBarGloss: 'none', usePlayOverlay:false \&#34;&#60;br /&#62;
&#34;;&#60;br /&#62;
	echo hana_flv_player_template_call($hana_arg);&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Is this possible?  Or am I going about this all wrong?&#60;br /&#62;
Thank you in advance for any help!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

