You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
358 B
24 lines
358 B
15 years ago
|
#!/usr/bin/env kjscmd
|
||
|
|
||
|
println( "Hello World" );
|
||
|
|
||
|
var d = new DCOPClient();
|
||
|
|
||
|
if ( d.attach())
|
||
|
{
|
||
|
println("Attached...");
|
||
|
if( d.isAttached() )
|
||
|
{
|
||
|
var ref = new DCOPRef();
|
||
|
ref.setRef( "KWeatherService", "WeatherService" );
|
||
|
println ( ref.call( "date(QString)", "KMKE") );
|
||
|
|
||
|
}
|
||
|
else
|
||
|
println( "Error!" )
|
||
|
}
|
||
|
else
|
||
|
println("Failed...");
|
||
|
|
||
|
println( "Done" );
|