~ubuntu-branches/ubuntu/edgy/k3d/edgy-proposed

« back to all changes in this revision

Viewing changes to tests/properties.connect.001

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2005-04-28 18:38:10 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050428183810-kvc6nz46z6gheo0k
Tags: 0.4.5.0-5
* AAAAAAAARGH, *patching* configure.ac broke again the build process! Fixed
  (I hope).
* Removed more cruft of shaderpreprocessor/ from configure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
. $srcdir/test_functions
 
4
 
 
5
startk3d --script - --exit $* << eof
 
6
//javascript
 
7
 
 
8
Application.CommandNode("/application/window/new_document").Command("activate", "");
 
9
Application.CommandNode("/application/document/window").Command("highlight_plugin", "PolySphere");
 
10
Application.CommandNode("/application/document/window/create_object").Command("activate", "");
 
11
Application.CommandNode("/application/document/PolySphere/properties/auto_controls/radius_property").Command("activate", "");
 
12
Application.CommandNode("/application/document/PolySphere/properties/auto_controls/radius_property/context_set_connection").Command("activate", "");
 
13
Application.CommandNode("/application/document/connect_properties/source_object").Command("selectobject", "TimeSource");
 
14
Application.CommandNode("/application/document/connect_properties/source_property_chooser").Command("selectproperty", "time");
 
15
Application.CommandNode("/application/document/connect_properties/destination_property_chooser").Command("selectnone", "");
 
16
Application.CommandNode("/application/document/connect_properties/connect").Command("activate", "");
 
17
 
 
18
eof
 
19
 
 
20