I've got an offer from this company. I'm hesitating whether to accept this offer because I don't know much about it and i'm not sure whether it's a good company. Does anybody know it? Could anybody give me some advice? I appreciate any suggestions and comments. Regards Blinda
rryyjw
Posts
-
Does anybody know Workwise,Inc? -
Question about calling SAPI from javascript.Suppose now I have a webpage with following content.
How are you?
Question about calling SAPI from javascript. I came across a difficult problem. Could anybody help me? Thanks!
How do you do?
And I use the following script to interact with the speech engine. var VoiceObj = new ActiveXObject("Sapi.SpVoice"); VoiceObj.Speak(p2.innerText, SPF_ASYNC); //SPF_ASYNC == 2 What I want is to highlight the word which is currently being read by the speech engine. So it's a synchronization problem. I think I have to handle the Word event of the SpVoice object. So I wrote the following signature. But what code shall I put in this function? function VoiceObj::Word(Number, Position, CharacterPosition,Length) { } Very thanks! Jie
-
Javascript highlight words on a webpageSuppose there's a paragraph on the page which contains several lines of words. How can I highlight those words one by one, from the first one to the last one? It's just like reading through the paragraph. I think I have to use TextRange object and its getClientRects method. Could anyone help me? Very appreciate. Thanks Jie Edit/Delete Message
-
IE Extension: How to add a button to the status bar?Have you ever tried Google Notebook? After installing the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J
-
IE Extension: How to add a button to the status bar?Have you ever tried Google Notebook? After installing the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J
-
IE Extension: How to add a button to the status bar?Have you ever tried Google Notebook? After installing the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J
-
IE Extension: How to add a button to the status bar?Have you ever tried Google Notebook? After installing the software, it will add a button to the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J
-
IE Extension: How to add a button to the status bar?Have you ever tried Google Notebook? After install the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J
-
How to develop an ie extension similar as google notebook?Hi all, After installing google notebook, a button will be added to the right-bottom of ie. Does anybody know how to implement that? Very appreciate for any reply. Jie
-
How to grab a web page using .Net 2.0 WebBrowser ControlHi All, I want to grab a page using WebBrowser Control (see code below). I try to get the page content through DocumentText property in "DocumentCompleted" event handler, but it seems that the event won't be triggered. The "Navigated" event won't be triggered either. However, the "Navigating" event does. I used to use HttpWebRequest/HttpWebResponse to grab webpage content, however, the drawback is that I can't get the full loaded page through it. What I mean by this is that maybe some javascript will execute to modify elements on the page after it's loaded, I call this page as full loaded page. I think using WebBrowser Control can overcome this drawback. It's just like a browser, and it'll execute those javascript after loading the page. But I can't make this control work correctly. Could anyone help me? I'm very appreciate. Thanks Jie using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace ConsoleApplication1 { class Program { static WebBrowser wb; [STAThread] static void Main(string[] args) { Go(); } private static void Go() { wb = new WebBrowser(); wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted); wb.Navigating +=new WebBrowserNavigatingEventHandler(wb_Navigating); wb.Navigated += new WebBrowserNavigatedEventHandler(wb_Navigated); wb.Navigate("http://www.google.com"); Console.ReadLine(); } static void wb_Navigating(object sender, WebBrowserNavigatingEventArgs e) { Console.WriteLine("Navigating"); } static void wb_Navigated(object sender, WebBrowserNavigatedEventArgs e) { Console.WriteLine("Navigated"); } static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { Console.WriteLine("DocumentCompleted"); Console.WriteLine(wb.DocumentText); } } }
-
how to implement zoom operations in C#I think you should use javascript at client side to do that. IE has build-in zoom support. e.g. body.style.zoom = 120%
-
Question about grabbing webpage using WebBrowser Control. [modified]Hi All, I want to load a page using WebBrowser Control (see code below). I try to get the page content through DocumentText property in "DocumentCompleted" event handler, but it seems that the event won't be triggered. The "Navigated" event won't be triggered either. However, the "Navigating" event does. I used to use HttpWebRequest/HttpWebResponse to grab webpage content, however, the drawback is that I can't get the full loaded page through it. What I mean by this is that maybe some javascript will execute to modify elements on the page after it's loaded, I call this page as full loaded page. I think using WebBrowser Control can overcome this drawback. It's just like a browser, and it'll execute those javascript after loading the page. But I can't make this control work correctly. Could anyone help me? I'm very appreciate. Thanks Jie using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace ConsoleApplication1 { class Program { static WebBrowser wb; [STAThread] static void Main(string[] args) { Go(); } private static void Go() { wb = new WebBrowser(); wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted); wb.Navigating +=new WebBrowserNavigatingEventHandler(wb_Navigating); wb.Navigated += new WebBrowserNavigatedEventHandler(wb_Navigated); wb.Navigate("http://www.google.com"); Console.ReadLine(); } static void wb_Navigating(object sender, WebBrowserNavigatingEventArgs e) { Console.WriteLine("Navigating"); } static void wb_Navigated(object sender, WebBrowserNavigatedEventArgs e) { Console.WriteLine("Navigated"); } static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { Console.WriteLine("DocumentCompleted"); Console.WriteLine(wb.DocumentText); } } } -- modified at 10:06 Thursday 14th September, 2006