>
> 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?
>
Ok, that's probably the simplest approach. Though you should better use the
Firefox
internal API to write
files<https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO>,
if it's acceptable for you to be browser dependent.
Sebastian
--
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