vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   New Posting Features - 'Text to Speech' user posts (https://vborg.vbsupport.ru/showthread.php?t=188839)

shaynehammy 08-23-2008 09:08 PM

Brilliant. Nominated for MOTM.

TimberFloorAu 08-23-2008 09:16 PM

The new Javascript (popup) update, works a treat

Good Work !

TimberFloorAu 08-24-2008 12:23 AM

Noticed, its not very Internet Explorer friendly.

Perhaps theres a FIX

It opens the popup, then closes main window, then we get a warning... any suggestions please

jamesf4218 08-24-2008 03:41 AM

Getting the same problem with IE - the error message and the page goes to not found. So doesn't really work. Can this be fixed?

TimberFloorAu 08-24-2008 03:53 AM

Quote:

Originally Posted by jamesf4218 (Post 1605508)
Getting the same problem with IE - the error message and the page goes to not found. So doesn't really work. Can this be fixed?


I swear by FF but some users still use IE.

Id imagine its just some js conflict.

Will have a look at the code, and see if I can fix it myself :) Will post back

Digital Jedi 08-24-2008 03:56 AM

I'm using it on IE and I'm not getting any problems.

TimberFloorAu 08-24-2008 07:49 AM

Quote:

Originally Posted by jamesf4218 (Post 1605508)
Getting the same problem with IE - the error message and the page goes to not found. So doesn't really work. Can this be fixed?


I swear by FF but some users still use IE.

Id imagine its just some js conflict.

Will have a look at the code, and see if I can fix it myself :) Will post back

FreshFroot 08-24-2008 07:52 AM

this is an awesome idea. Nice work mate!

jamesf4218 08-24-2008 07:25 PM

Quote:

Originally Posted by Digital Jedi (Post 1605515)
I'm using it on IE and I'm not getting any problems.

I'm using IE 7 and it doesn't work.

Quote:

Originally Posted by TimberFloorAu (Post 1605594)
I swear by FF but some users still use IE.

Id imagine its just some js conflict.

Will have a look at the code, and see if I can fix it myself :) Will post back

Ok that's appreciated.

Digital Jedi 08-24-2008 07:28 PM

Quote:

Originally Posted by jamesf4218 (Post 1606031)
I'm using IE 7 and it doesn't work.



Ok that's appreciated.

Which version are you using? The one with local javascript or the one with the remote?

jamesf4218 08-24-2008 08:05 PM

Quote:

Originally Posted by Digital Jedi (Post 1606035)
Which version are you using? The one with local javascript or the one with the remote?

I tried both. Neither worked.

JTF

TimberFloorAu 08-24-2008 09:36 PM

We are using the Local version DJ, because of the window size.

I have noticed additional lag, and I suspect this is the IE issue.

I will be reverting today.

Ste

TimberFloorAu 08-24-2008 09:43 PM

1. reverted to remote js version
2. windows unable to open destination window, but the pop up appears behind main forum page, close the alert box, and main forum page blanks out.

3. page lag, had disappeared since going from local to remote

4. I have done some more images for buttons ( please dont ask for any ) I havent got the time to do individual requests.

jamesf4218 08-25-2008 02:55 PM

(Second edit)

I fixed it myself.

To make it work on IE just change:

Quote:

<a href="javascript:void(0);"
onclick="get_id('post_message_$post[postid]','en','fm');">
<img src="images/misc/speech.png" alt="" width="123" height="37" border="0"
style="margin-right:0.4em;"/></a>
to

Quote:

<img onclick="get_id('post_message_$post[postid]','en','fm');" src="images/misc/speech.png" alt="" width="123" height="37" border="0"
style="margin-right:0.4em;"/>
You should also make sure you wait until the page has fully downloaded before clicking the button.

Digital Jedi 08-25-2008 05:59 PM

Oh, I see. I bet your forum was prepending javascript:void(0); with your forum address.

191251gs 08-26-2008 03:31 PM

Hello first thank you for this modification! :up:
I run a forum with people who have bad eyes to read.
Is there also a German translation ?:)
Thank you and friendly greetings.

TheInsaneManiac 08-26-2008 05:25 PM

I would use it, but I used voz before and they are down a lot.

whitetigergrowl 08-26-2008 08:56 PM

Marked as installed but waiting for a proper IE fix before fully installing.

Many also use VBSEO. Would this have any conflicts with that?

Digital Jedi 08-27-2008 06:46 AM

Quote:

Originally Posted by whitetigergrowl (Post 1607659)
Marked as installed but waiting for a proper IE fix before fully installing.

Many also use VBSEO. Would this have any conflicts with that?

It's probably not an IE problem, but vB problem. Sometime vBulletin puts your board URL in front of Javascript links. Just change javascript:void(0); to # and there shouldn't be a problem.

Hornstar 08-28-2008 07:33 AM

This is really cool!

I would love to host a text to speech on my dedicated server. does anyone know of any software that would allow me to run something like this from my server?

Edit: I found this http://www.digitalfuturesoft.com/texttospeechserver.php
If I got that, would that work?

dubai2008 09-05-2008 10:36 PM

How can I add this to vbadvanced Dynamics?

Could any one help please?

dubai2008 09-08-2008 01:03 PM

Still waiting for help...

akulion 09-08-2008 03:58 PM

Hi C.Birch,

This is a great add-on for any forum which wants to offer "accessibility" to visually impaired people.

I have done some minor improvements to the code you have posted to make it more usable with different themes/skins:

Instead of:
Code:

<a href="javascript:void(0);"
onclick="get_id('post_message_$post[postid]','en','fm');">
  <img src="images/misc/speech.png" alt="" width="123" height="37" border="0"
style="margin-right:0.4em;"/></a>

Use this:
Code:

<a href="javascript:void(0);"
onclick="get_id('post_message_$post[postid]','en','fm');">
  <img src="$stylevar[imgdir_button]/speech.png" alt="text to speech" border="0" style="margin-right:0.4em;"/></a>

There are 2 differences here:
1. The path defined is for the SKIN IN USE, so that the speech.png button would have to be placed in the themes "buttons" folder: images/theme_name/butons/ this will allow users to customize the button according to their theme designs.

2. There are no width or height attributes used in the code since this is very restrictive code and button sizes can differ according to forum 'looks'

Hope you find it beneficial,
Thanks once again for this cool mod,
Aku

Digital Jedi 09-08-2008 10:46 PM

Quote:

Originally Posted by dubai2008 (Post 1617367)
Still waiting for help...

Unless someone is running vBa Dynamics, we wouldn't know what to tell you.

Merjawy 09-09-2008 08:58 AM

I like it.. great idea.. though it doesn't work for me due to unsupported language..

How about making it for certain forums only? like I have some English forums and would love to add this to them..

I'll pass on this great idea for now

Thanks


EDIT: since I use different styles for the english/french forums I guess I could use this :) I just thought of that.. I will give it a try

dubai2008 09-09-2008 08:06 PM

Quote:

Originally Posted by Digital Jedi (Post 1617741)
Unless someone is running vBa Dynamics, we wouldn't know what to tell you.

Well, i can send you the module to use it to make the hack....

What o you think?

KrU$ty 09-11-2008 11:57 PM

very well done. Way to think outside the box!

gwerzal 09-12-2008 12:40 AM

dont know what i have done wrong

i am not new to installing comlicated mods so this should have been easy for me.

I have made all the edits and done everything but nothing is showing up on my forum.

I have just installed a new style and i made the edits to the new style as that is what i will be using.

Do i have to do it with any other styles as well to make it work?

The site is http://www.cashloopholes.co.uk if that helps and everything is set up so it should be working.

Digital Jedi 09-14-2008 07:45 PM

You installed it just fine, you just havn't uploaded the button image to right place(s).

grant.hayman 09-19-2008 07:36 AM

Great idea,

We have a few blind people on our forum and they have screen reader software already, but this gives the option to anyone.

Does anyone know if there is software for reading the image authentication as that is a stumbling block for blind people as their software can't read the images for obvious reasons.

There must be an alternative to image verificartion that uses sound?? (I hope).

Grant

Cocko 09-19-2008 05:07 PM

How would this work in german language, any other servers that is supportet
with this add-on, maybe substituted templates manually ?

karlm 09-19-2008 05:43 PM

Excellent idea, the demo was good too. I might just look-in to this ...

Shelley_c 09-19-2008 06:14 PM

Excellent Idea, I thought i would give this one a try and it seems to work prity good (some of the wording is hard to understand) though for people who find it hard to read this hack is a valuable asset to anyones site. That alone gets my vote for motm. :up:

yotsume 09-20-2008 05:11 AM

This looks great and I would like to add it to my site but I have a couple of question:
  1. My forum and all posts are viewable to members only. Will this mod be able to work in my case?
  2. If a member types in English are we saying that by clicking the Spanish button it will translate their English text into another language and speak it?
I would install this but I need these questions answered first.

Digital Jedi 09-20-2008 06:47 PM

Quote:

Originally Posted by yotsume (Post 1626127)
This looks great and I would like to add it to my site but I have a couple of question:
  1. My forum and all posts are viewable to members only. Will this mod be able to work in my case?
  2. If a member types in English are we saying that by clicking the Spanish button it will translate their English text into another language and speak it?
I would install this but I need these questions answered first.

1. It's reading posts in my Staff Only forums.
2 I don't think the tool does any translating. It just reads the content with inflections and pronunciations of the selected language.

yotsume 09-20-2008 09:26 PM

Installed and works perfect!

My next question:
How can I get this to work for vbBlogs that I have installed? I'd like to add this to the blog's initial post and the comments.

yotsume 09-20-2008 09:51 PM

post deleted...

I have some other IE7 error that is preventing some users from using my vb3.7.3x forum. Other IE users have no problem using my forum. I reinstalled a laptop and the IE7 that is on this with Vista has errors while posting new threads or replies.

I deleted my post because its not a problem I am having with this mod but with something happing in IE7.

Now I have to go and reinstall this mod and try and solve the IE7 problem for those crazy people who use IE7!

LeatherNeck 09-21-2008 05:22 PM

working perfectly on ie7 and firefox with vista, great mod, thanks :)

yotsume 09-22-2008 01:21 AM

Yea I had a conflict with another mod that resizes inline images. I will be reinstalling this right now since I fixed my other problem.

shlomot 09-26-2008 05:24 AM

Thank you so much for sharing this important capabilities with us. However, actual testing of the text-to-speech performance on the developer's site shows a somewhat premature digital technology.

Will install as soon as the baby will grow to become a toddler :)


All times are GMT. The time now is 11:27 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01354 seconds
  • Memory Usage 1,820KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete