Search the web
Sign In
New User? Sign Up
webots-users · Webots Users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 298 - 327 of 3397   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
298
Dear Sir, You have to set the include path to C:\Program Files\Webots\include in the VC++ project options. Please see the braiten example provided with Webots...
Olivier Michel
oliviermichelus
Offline Send Email
Jun 19, 2003
1:07 pm
299
I went to meet someone in a dark corner of a fancy quiet restraunt while wearing something black, tight, and revealing. The guy I was with got hot and hard...
wetholesallover4
wetholesallo...
Offline Send Email
Jun 20, 2003
6:01 am
300
Hello, A new release of Webots 4, tagged 4.0.3 is available for download from the usual place: http://www.cyberbotics.com/products/webots/download.html It...
Olivier Michel
oliviermichelus
Offline Send Email
Jun 23, 2003
8:13 am
301
Hello, I just tried to start alife.wbt and get the following exception: java.lang.unsatisfiedLinkError: no JavaController in java.library.path Controller.jar...
sirmatthew426
Offline Send Email
Jun 26, 2003
7:45 am
302
... Matthew, Java is searching a native library which is in the webots/lib directory and is called libJavaController.so on Linux, JavaController.dll on Windows...
Olivier Michel
oliviermichelus
Offline Send Email
Jun 26, 2003
9:36 am
303
Hello, I am using Webots Evaluation release 4.0.3 and am running Windows XP. There is no JavaController.* in the lib directory. (Only Controller.jar, ...
42x@...
sirmatthew426
Offline Send Email
Jun 26, 2003
11:32 am
304
You are correct. This file is missing in the windows version of Webots 4.0.3... Here is the place where you can download and install this missing file: ...
Olivier Michel
oliviermichelus
Offline Send Email
Jun 26, 2003
11:53 am
305
Hello, after downloading the missing files I got alife up and running. Thank you! But I have two more questions :-) 1) I would like to use some 3rd party...
42x@...
sirmatthew426
Offline Send Email
Jun 27, 2003
6:55 am
306
... Fine. ... Adding the corresponding full path to the necessary .jar files in your global CLASSPATH environment variable should do the trick. ... If you...
Olivier Michel
oliviermichelus
Offline Send Email
Jun 27, 2003
8:14 am
307
... Unfortunatly not. I have everything in my system classpath (the programs run from the command prompt) but the error when starting via webots remains....
42x@...
sirmatthew426
Offline Send Email
Jun 27, 2003
4:35 pm
308
... I found the problem: Webots launch java by specifying the classpath as a command line argument (java -cp) which overrides the CLASSPATH global environment...
Olivier Michel
oliviermichelus
Offline Send Email
Jun 30, 2003
7:42 am
309
Hello, A new release of Webots is available for download. This new release introduces a new range finder sensor implemented as a special mode for the camera...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 1, 2003
12:20 pm
310
Dear Dr. Michel, I am using Webots 3.2.22. I can compile and link for the codes for normal robot by MS visual c 6. However, I can only compile, but cannot link...
Liu Zheng
g0202255@...
Send Email
Jul 1, 2003
1:27 pm
311
... Normally no extra lib is necessary to link a supervisor with Visual C++. Could you tell me which error messages do you get ? Eventually, could you send me...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 1, 2003
2:37 pm
312
Thanks. I find when I commented the following line; I could compile and link the source code well. ~~~void supervisor_set_mouse_mode(int m);~~~ Best wishes, ...
Liu Zheng
g0202255@...
Send Email
Jul 1, 2003
2:43 pm
313
Hello, This new release has only a few minor improvements: * Changed the splash screen to the about box showing up only on the first run * Extended the...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 3, 2003
8:53 am
314
Hello, is there a way to get an instance of the controller class (like ALife1)? It would be nice to be able to work on object instances so one and the same...
42x@...
sirmatthew426
Offline Send Email
Jul 7, 2003
11:43 am
315
... What do you mean exactly ? Would you like to have the complete definition of the Controller class ? ... I am not sure what you exactly mean. Could you...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 7, 2003
12:54 pm
316
I would like to create a GUI and a JXTA controller which can talk to the robots. ALife1 robot1 = new ALife1(); ALife1 robot2 = new ALife1(); ALife0 robot3= new...
42x@...
sirmatthew426
Offline Send Email
Jul 7, 2003
1:30 pm
317
That is not possible at all since: 1) all methods in Controller are static methods. 2) there can be only one robot controller per process. However, you can use...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 7, 2003
1:47 pm
318
Hello, We just released a new version of Webots which fixes a few bugs. Here is the change log from 4.0.5: * Fixed bug with IR distance sensors and complex...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 8, 2003
6:57 am
319
Hello, I hat tried that but some Invocation Exception occured before I could redirect System.out so I thought it wasn't possible to use own super classes due...
42x@...
sirmatthew426
Offline Send Email
Jul 9, 2003
12:25 pm
320
Dear Dr. Oliver, I'm using webots 3 for simulation. I meet a problem when using emitter and receiver to send command from supervisor to robots. When I run the ...
Liu Zheng
g0202255@...
Send Email
Jul 10, 2003
3:13 am
321
Dear Dr. Oliver, I traced the program and I found that the function emitter_get_buffer() sometimes returns a NULL pointer. How to deal with this problem?...
Liu Zheng
g0202255@...
Send Email
Jul 10, 2003
1:43 pm
322
Thank you for that feedback. I believe that static methods should explicitely be called to super classes... -Olivier...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 11, 2003
10:24 pm
323
Sorry for my late response (I was in Padova for the RoboCup conference). I will investigate this problem next week and let you know about it. Regards, -Olivier...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 11, 2003
10:50 pm
324
Hello, Here is the ChangeLog for this new version: Version 4.0.7 Released on 23-July-03 * Added inertiaMatrix parameter to the Physics node (thanks to ...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 24, 2003
9:57 am
325
Hello, The new fresh release is here: http://cyberboticspc1.epfl.ch/products/webots/download.html Here is the ChangeLog: * Added a camera and a distance sensor...
Olivier Michel
oliviermichelus
Offline Send Email
Jul 30, 2003
4:19 pm
326
Hi, Is anyone have successfully use the rover controller on mindstorm Legos with webots4? Documentation says that a RCXController.jar should be present in...
carle_cote
Offline Send Email
Aug 9, 2003
3:11 am
327
Dear Carle, Sorry for the delay. I am just back from vacation. Here is the missing file (see attachment). I will fix that in the upcoming 4.0.10 version of ...
Olivier Michel
oliviermichelus
Offline Send Email
Aug 19, 2003
9:07 am
Messages 298 - 327 of 3397   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help