Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 4 1 2 3 4
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
working and looking good gizmo.

Feedback :

1. Its the mark up panel i know but when you finish with the
code + description in FF the drop list is in the way of the output.

2. If you dont enter a description in the box, the tags are left visible ]desc[ ]/desc[ ive reversed the braces to help.

Apart from that, i moved our prefered vids up and down in the tpl file and all is well wink

Awaiting user feedback.


BOOM 7.6.+ rocks....
Sponsored Links
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
In all honesty, your users really need to enter a description... Search engines and visually impaired users can't see the video, so the topic of the page will just be your responses... I guess I could seperate the description into its own area though at the bottom of the list... But again, I recommend that if you're going to post a video that you should post a description no matter what... Plus it's not like you can't remove the tags...

On #1 i'm not sure i get what youw ant... It loads fine for me in FireFox so I guess it's just a miss communication...

BTW, I stole the markup info from the text size box and used the doprompt script, so the behavior of the dropdown will directly reflect that of what the font type/size dropdowns work.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Were used to just adding the code,
the subject of the topic normally covers any description that's required. I don't think its needed mate.

Its feedback not criticism, its one of the best mods i have installed.

If it can be edited that the "[desc]" tags don't show if nothing is entered then i say you have a solid add-on wink

but i'm glad your happy to share smile


BOOM 7.6.+ rocks....
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Well, you could go through the js file and take out the desc options for every tag type if you want to remove the option for the description... I still stand behind the current methodology, but I'll build a seperate js addon for you since you don't want it that way.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Just for mark:
Code
/* Start Gizmo's Video Embedding Options */
if (action == "break") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[break]" + thisVideo + "[/break]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "googlevideo") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[googlevideo]" + thisVideo + "[/googlevideo]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "liveleak") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[liveleak]" + thisVideo + "[/liveleak]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "loowavideo") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[loowavideo]" + thisVideo + "[/loowavideo]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "myspacevideo") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[myspacevideo]" + thisVideo + "[/myspacevideo]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "revver") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[revver]" + thisVideo + "[/revver]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "sdeluxe") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[sdeluxe]" + thisVideo + "[/sdeluxe]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "yahoovideo") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[yahoovideo]" + thisVideo + "[/yahoovideo]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
if (action == "youtube") {
var thisVideo = prompt(enterVideo, "");
if (thisVideo == null){return;}

insertAtCaret(document.replier.Body, "\n[youtube]" + thisVideo + "[/youtube]\n" );
document.replier.texteditor.focus();
showHideElement('vembed', 'hide');
return;
}
/* End Gizmo's Video Embedding Options */

Simply replace the section in the js file and you'll no longer be prompted for a description.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Sponsored Links
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Updated my initial post with an alternate method for those who do not want the desc tag (though highly recommended that you use the one which does use it)


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Cheers Gizmo,
i'm not saying there not important, but if they auto cancelled them self out if the box was empty at the prompt would keep all happy smile

Easy to say than done i know.

The description is a nice touch, but on my forums members just throw a topic title up and embed the video end.

Thanks for the "Just for mark code" wink


BOOM 7.6.+ rocks....
Joined: Feb 2007
Posts: 329
Yarp™
Yarp™
Offline
Joined: Feb 2007
Posts: 329
Originally Posted by Mark_S
Thanks for the "Just for mark code" wink

I'm gonna give that version a go to when 7.2.2 is released! Allthough we only offer google video and youtube yet.

Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
That's what i done stripped out some of the others in the .tpl file and shuffled them around and put you tube at the top wink


BOOM 7.6.+ rocks....
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
'eh I like alphabetical listing wink... So when I added SuperDeluxe (watch adult swim? it's the one they highly advertise, so it's rather large) I decided to sort them like that since there where so many video items now...



UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Sponsored Links
Joined: Dec 2006
Posts: 17
Newbie
Newbie
Offline
Joined: Dec 2006
Posts: 17
Does post 1 have the most complete update of this code all in one?

Where can I see and use this mod in operation?

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Post #1 contains all current code and is updated on a regular basis.

As for where to see it in action My Video Studio


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 482
Enthusiast
Enthusiast
Offline
Joined: Nov 2003
Posts: 482
holy crap! that theme is uber-dark... /me gets flashlight..

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Originally Posted by sirdude
holy crap! that theme is uber-dark... /me gets flashlight..
its where the vampires lurk


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 482
Enthusiast
Enthusiast
Offline
Joined: Nov 2003
Posts: 482
you need a lighter theme.. that one's kinda ghey.. shocked

Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Does anyone have a .FLV player For UBB ?

let me explain.
With the numerous sites out there that will convert your
own movies to *.flv files like what You Tube Does.

Many of my members are using these site to compress there
video's into .flv files and now are asking if our own
forums can show them, if there uploaded.

Summary
I'm after a .FLV player to work like you tube and such.
So we can show video's with the embedded screen.

Any Help or Advice Appreciated smile


BOOM 7.6.+ rocks....
Joined: Nov 2003
Posts: 482
Enthusiast
Enthusiast
Offline
Joined: Nov 2003
Posts: 482
google

1st hit

Linky Poo

Creative Commons License player Linky Dinky

how to do it in wordpress (what you'd have to do for ubbt): Ca Ching

Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Why Thank You SD smile
I got one out of 3 in may search lol..

I shall have a play with that smile
Its more for keeping Archives available and not deleted
from there source in moments of tantrums lol..

Thanks again smile


BOOM 7.6.+ rocks....
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Seems the first one is a bit buggy.
Ca Ching flew over my head lol


Got this one to work with out too much difficulty
http://www.jeroenwijering.com/?item=JW_FLV_Player

Reading this
http://www.jeroenwijering.com/extras/readme.html


Wow just found a wizard to make it easy smile
http://www.jeroenwijering.com/extras/wizard.html

Full Reply HTML Selected
And pasting in the Embedded Code
Changing the path to the Files i uploaded
And the File on my server i want to play.

Its clunky but works,
not as simple a Gizmo's Embedded stuff but for keeping a
archive it should do me fine smile
But what do you want for free lol

Ive probably gone round the world to do something simple
if you find a easier way or not as clunky please share smile

Last edited by Mark_S; 10/19/2007 6:55 AM. Reason: added wizard link

BOOM 7.6.+ rocks....
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
you could make an embed code to utilize it wink...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
If i was that clever my friend i would,
but i'm not lol...

But there is a man that's ever so clever with this stuff
not a million miles away lol


BOOM 7.6.+ rocks....
Joined: Nov 2003
Posts: 482
Enthusiast
Enthusiast
Offline
Joined: Nov 2003
Posts: 482
Originally Posted by Gizmo
you could make an embed code to utilize it wink...
hehe smile

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Lol whats the code you use to embed the file on your posts?


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Feb 2007
Posts: 329
Yarp™
Yarp™
Offline
Joined: Feb 2007
Posts: 329
We have a gizmo to make up those smile

Joined: Nov 2003
Posts: 482
Enthusiast
Enthusiast
Offline
Joined: Nov 2003
Posts: 482
yah giz, quite post whoring and get to some regexes!!

speaking of which Linky Poo <-- geeks get it laugh

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Well, i love mark, so i'll help him out if he gets back to me wink


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Phew just check my e-mails and seen the "Loves mark"
well who could resist such an offer lol

Code



<embed src="http://www.mydomain.co.uk/pathtoplayer/flvplayer.swf" width="425" height="300"
type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://www.mydomain.co.uk/pathtomyvideo/myvideo.flv&displayheight=300" />

That's all i use Giz wink
I guess if you can come up with something then i will have a
dedicated directory for all video's smile

p.s Giz your kinda special to me too lol


BOOM 7.6.+ rocks....
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Hi Mark
Code
			array( "#\[embed\]([a-zA-Z0-9-_]+)\[/embed\]#i", '<center><embed src="http://www.mydomain.co.uk/pathtoplayer/flvplayer.swf" width="425" height="350" 
type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://www.mydomain.co.uk/pathtomyvideo/\1.flv&displayheight=350" /></center>' ),

[embed]videoid[/embed]
Bye Mark wink


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
Cheers Gizzy
Will give that a blast on the weekend if i have time.
Thanks for taking the time out smile

Will report back when up and running.


BOOM 7.6.+ rocks....
Joined: Oct 2007
Posts: 4
Lurker
Lurker
Offline
Joined: Oct 2007
Posts: 4
Nothing makes you feel more dumb than not being able to follow simple directions.. twice.

Both times a clean attempt with virgin files and still, only the code displays. Ver 7.2.2 is what we run.

Any help at all would be great, even it’s a just a pointer.

B

Joined: Oct 2007
Posts: 4
Lurker
Lurker
Offline
Joined: Oct 2007
Posts: 4

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Could you link me to a specific post which isn't parsing data?


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Oct 2007
Posts: 4
Lurker
Lurker
Offline
Joined: Oct 2007
Posts: 4

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
access denied frown


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: Oct 2007
Posts: 4
Lurker
Lurker
Offline
Joined: Oct 2007
Posts: 4
Thanks Ian. I really appreciate your help. Forgot you had to register to see that forum frown

http://www.bostondancemusic.com/forum/ubbthreads.php?ubb=showflat&Number=37056#Post37056

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Your posting the embed code, all you need is the id:
[youtube]cebkHslx5oY[/youtube]

7.3 video tags will allow you to insert the URL to the video.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Initial post updated to show 7.3 links of the compatibility (these codes ala 7.3's customtag editor) and the 7.3 CustomTags thread (two separate threads).


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Nov 2003
Posts: 329
Beta Tester
Beta Tester
Offline
Joined: Nov 2003
Posts: 329
This is a revelation in 7.3 i love it smile
Good work fellow Gizzz


BOOM 7.6.+ rocks....
Joined: Apr 2008
Posts: 2
Lurker
Lurker
Offline
Joined: Apr 2008
Posts: 2
Hi,

Is there any way to add autostart=false to the Flash embed for version 7.2.2?

Thanks

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Yeh, simply take the current:
Code
			array( "#\[flash\]([0-9]+), ([0-9]+), ([a-zA-Z0-9-_.&:/]+)\[/flash\]#i", '<center><object width="\2" height="\1"><param name="movie" value="\3"></param><embed src="\3" type="application/x-shockwave-flash" width="\2" height="\1"></embed></object></center>' ),
array( "#\[flash\]([a-zA-Z0-9-_.&:/]+)\[/flash\]#i", '<center><object width="425" height="350"><param name="movie" value="\1"></param><embed src="\1" type="application/x-shockwave-flash" width="425" height="350"></embed></object></center>' ),

And change it to be:
Code
			array( "#\[flash\]([0-9]+), ([0-9]+), ([a-zA-Z0-9-_.&:/]+)\[/flash\]#i", '<center><object width="\2" height="\1"><param name="movie" value="\3"></param><param name="autostart" value="false"></param><embed src="\3" type="application/x-shockwave-flash" width="\2" height="\1"></embed></object></center>' ),
array( "#\[flash\]([a-zA-Z0-9-_.&:/]+)\[/flash\]#i", '<center><object width="425" height="350"><param name="movie" value="\1"></param><param name="autostart" value="false"></param><embed src="\1" type="application/x-shockwave-flash" width="425" height="350"></embed></object></center>' ),

The param addition should do the job for you smile.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Page 3 of 4 1 2 3 4

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
hatter
hatter
USA
Posts: 69
Joined: January 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)