php forum
php mysql forum
php mysql smarty
 
Page 5 of 7 < 1 2 3 4 5 6 7 >
Topic Options
#315401 - 08/24/07 12:00 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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.

Top
#315405 - 08/24/07 06:34 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
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 - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315406 - 08/24/07 07:58 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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

Top
#315407 - 08/24/07 11:38 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
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 - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315408 - 08/24/07 11:40 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
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 - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315409 - 08/24/07 11:57 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
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 - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315411 - 08/25/07 04:34 AM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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

Top
#315412 - 08/25/07 07:10 AM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
blaaskaak Offline
Enthusiast

Registered: 02/25/07
Posts: 304
Loc: The Netherlands
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.
_________________________

Top
#315413 - 08/25/07 07:31 AM Re: [7.x] Gizmo's Embedding BBCode [Re: blaaskaak]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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

Top
#315416 - 08/25/07 06:12 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
'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 - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315425 - 08/26/07 10:40 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
ntdoc Offline
Newbie

Registered: 12/14/06
Posts: 16
Does post 1 have the most complete update of this code all in one?

Where can I see and use this mod in operation?

Top
#315426 - 08/27/07 12:03 AM Re: [7.x] Gizmo's Embedding BBCode [Re: ntdoc]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
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 - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315433 - 08/27/07 02:11 AM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
sirdude Moderator Offline
Enthusiast

Registered: 11/08/03
Posts: 442
Loc: SoCal
holy crap! that theme is uber-dark... /me gets flashlight..
_________________________

Top
#315434 - 08/27/07 03:02 AM Re: [7.x] Gizmo's Embedding BBCode [Re: sirdude]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
Originally Posted By: sirdude
holy crap! that theme is uber-dark... /me gets flashlight..
its where the vampires lurk
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#315435 - 08/27/07 03:02 AM Re: [7.x] Gizmo's Embedding BBCode [Re: Gizmo]
sirdude Moderator Offline
Enthusiast

Registered: 11/08/03
Posts: 442
Loc: SoCal
you need a lighter theme.. that one's kinda ghey.. shocked
_________________________

Top
#316042 - 10/18/07 05:57 PM Re: [7.x] Gizmo's Embedding BBCode [Re: sirdude]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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

Top
#316043 - 10/18/07 06:20 PM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
sirdude Moderator Offline
Enthusiast

Registered: 11/08/03
Posts: 442
Loc: SoCal
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
_________________________

Top
#316044 - 10/19/07 05:14 AM Re: [7.x] Gizmo's Embedding BBCode [Re: sirdude]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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

Top
#316045 - 10/19/07 06:35 AM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
Mark_S Offline
Power User

Registered: 11/15/03
Posts: 85
Loc: UK
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

<Edit>
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


Edited by Mark_S (10/19/07 06:55 AM)
Edit Reason: added wizard link

Top
#316046 - 10/19/07 07:10 AM Re: [7.x] Gizmo's Embedding BBCode [Re: Mark_S]
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5134
Loc: Portland, OR, USA
you could make an embed code to utilize it wink...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
Page 5 of 7 < 1 2 3 4 5 6 7 >


Moderator:  sirdude 
Who's Online
0 registered (), 24 Guests and 8 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Wisdom needed
by Gizmo
Today at 10:54 AM
How to hide sub forums from summary page
by blaaskaak
Yesterday at 09:54 AM
Spell Check [beta]
by Bill B
12/01/08 09:16 PM
PhotoPost BB Code Popup
by AllenAyres
12/01/08 09:41 AM
Problems reading a lot of old posts here
by AllenAyres
12/01/08 09:35 AM
Forum 'Trader Ratings'.
by AllenAyres
12/01/08 09:33 AM
Customization needed
by Gizmo
11/12/08 12:28 PM
New Mods
User Authentication Class
by
01/19/07 02:59 PM
Multiple Identity Detector
by
12/30/06 06:39 PM
PhotoPost BB Code Popup
by
11/06/06 05:43 PM
Spell Check [beta]
by
10/17/06 09:24 PM
Newest Members
Truth, David DelMonte, nick1, Begbie, cenk
13364 Registered Users
Top Posters
AllenAyres 25452
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks