I'm trying to get this to work with Video links on "WebTemplates" pages that are integrated with my vb3.8.2. Can't figure out why they wont work, I think that its got summin to do with the 'regular expression' I made for the definition I created. Can anyone help me out with this.
1) The Web Template ONLY contains the url to the Movie File.
2) The Link to the page is...
http://www.superskunkracing.com/view.php?pg=ssr-vid
3) My RegEx: (
http://www\.superskunkracing\.com/view\.php\?pg=ssr-vid)
4) My Replacement code:
Code:
<object id="MediaPlayer" width="$ameinfo[width]" height="$ameinfo[height]" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components?" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
<param name="filename" value="$p1">
<param name="Showcontrols" value="True">
<param name="autostart" value="false">
<embed type="application/x-mplayer2" src="$p1" name="MediaPlayer" width="$ameinfo[width]" height="$ameinfo[height]" autoplay="false"></embed>
</object>
I've done some reading up on these RE's but still dont understand why I need them, and if I do why must they contain so many varibles if I'm pointing it directly to a Page thats not dynamic in its name. Any insite on this would be deeply appreciated...
Thank you,
xT