Ardunio and a Transmitter?

Thank you everyone.

So far with AudoDesk Curicit 321D I have 2 servos running with 4 double a batteries.

Now I just gotta get the other 2 servo's going using this code.

#include <Servo.h>

Servo myservo; // create servo1 object to control a servo
// a maximum of eight servo objects can be created

Servo myservo2; // create servo2 object to control a servo
// a maximum of eight servo objects can be created

int pos = 0; // variable to store the servo position

void setup()
{
myservo.attach(8); // attaches the servo on pin 8 to the servo object
myservo2.attach(12); // attaches the servo on pin 10 to the servo object
}

void loop()
{
for(pos = 0; pos < 160; pos += 1) // goes from 0 degrees to 160 degrees
{ // in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}

for(pos = 0; pos < 120; pos += 1) // goes from 0 degrees to 120 degrees
{ // in steps of 1 degree
myservo2.write(pos); // tell servo2 to go to position in variable 'pos'
delay(25); // waits 25ms for the servo to reach the position
}

for(pos = 160; pos>=1; pos-=1) // goes from 160 degrees to 0 degrees
{
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}

for(pos = 120; pos>=1; pos-=1) // goes from 120 degrees to 0 degrees
{
myservo2.write(pos); // tell servo to go to position in variable 'pos'
delay(30); // waits 30ms for the servo to reach the position
}
}