Sebo, In order to pass the info from firebug to my app I will add this code 
to my js firebug extension file:

function WriteToFile()
{
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s = fso.CreateTextFile("C:\\DATA\\Test.txt", true);
s.WriteLine(**MY DATA FROM FIREBUG HERE**);
s.Close();
}

and the c# app will listen to the DATA directiory and wait for a file in 
there..
sounds good?

-- 
You received this message because you are subscribed to the Google
Groups "Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
https://groups.google.com/forum/#!forum/firebug

Reply via email to