YAFLogo

Posted by: cpjok - Saturday, 27 September 2008 13:06:19
Hey dose anyone know how i can get my YAF to allow SWF siggys. i have this good SWF file siggy but i dont know how to get it to allow them Thats the code i want it to allow [code]
[/code]

Posted by: test2005 - Sunday, 28 September 2008 08:15:27
Have you tried adding a BBcode Extension entry for SWF files?

Posted by: cpjok - Tuesday, 30 September 2008 01:34:19
nope as i dont know what that is

Posted by: test2005 - Tuesday, 30 September 2008 11:51:32
[quote=cpjok]nope as i dont know what that is[/quote] If your running v1.9.3.3, go to Admin >> BBCode Extensions and click the "Add" link. You can review the "YouTube" extension already included to get an idea of what needs to go where. Don't ask me for RegEx advise! I suck at it! :P HTH :)

Posted by: cpjok - Thursday, 9 October 2008 11:15:00
this is version checker thing Version Check You are running Yet Another Forum.net version 1.9.1.8. The latest available version is 1.9.1 released 01/09/2007. and i carnt find it

Posted by: Steviepunk - Wednesday, 5 November 2008 12:59:40
Don't suppose anyone has had a look at the RegEx for doing the flash. I've had a look a the YouTube RegEx but I can't figure out how to include width and height parameters, what I've come up with looks like this: \[flash (?([1-9]*)): (?([1-9]*))\](?(.*?))\[/flash \] (note, there should be no space after the : I just had to add one otherwise it would show as a smily!) I'm not 100% sure that is correct though, it should match on the following [flash 450:300]myflash.swf[/flash] Anyone able to advise? I'm on 1.9.1.8, so I'll need top code this in (will upgrade to 1.9.3 at some point, but I don't think that will be for a while)

Posted by: vash - Saturday, 8 November 2008 15:37:11
I hope that the good hearted men and women at this forum will provide us enlightenment with BBCodes. I also wanted to create BBCodes to Embed videos from Veoh, MetaCafe, Google, Yahoo and The likes. But the RegEx is too complicated for me to comprehend. :( Let's just wait for Jaben or Test2005 for their suggestions :-d

Posted by: Steviepunk - Monday, 10 November 2008 14:32:33
ok, I got the flash stuff figured out Here is the match expression [code] \[flash (?([0-9]+)):(?([0-9]+))\](?(.*?))\[/flash\] [/code] This is the replace function [code] [/code] or the plain embed tag you asked about [code][/code] This will match the following [code][flash 400:300]test.swf[/flash][/code] with 400 being the width and 300 being the height and, of course, test.swf being the file/URL you want to show.