You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
462 B
JavaScript
28 lines
462 B
JavaScript
15 years ago
|
#!/usr/bin/env kjscmd
|
||
|
|
||
|
var d = new DCOPClient();
|
||
|
|
||
|
if ( d.attach())
|
||
|
{
|
||
|
println("Attached...");
|
||
|
if( d.isAttached() )
|
||
|
{
|
||
|
var app = d.dcopStart("kwrite");
|
||
|
if( app != "" )
|
||
|
{
|
||
|
println( "Got ref");
|
||
|
var worked = d.send(app, "EditInterface#1","setText(QString)", "This is a test");
|
||
|
println("Returned a : " + worked);
|
||
|
}
|
||
|
else
|
||
|
println( "Error: no appname returned." );
|
||
|
|
||
|
}
|
||
|
else
|
||
|
println( "Error!" )
|
||
|
}
|
||
|
else
|
||
|
println("Failed...");
|
||
|
|
||
|
println( "Done" );
|