Manual
8
Developer’s guide - C++, Urbi, Flex, Java - V2.0
robopec
This document is the property of Robopec. The information contained herein may not be used, reproduced or
communicated without its prior written consent.
You can create two types of Reeti applications: a desktop application or an application for Reeti’s
Launcher integrated in the Reeti’s framework.
4.1 Flex Development environment
We use Flash Builder 4 on a windows computer.
We made a procedure to produce a fake reeti files tree on your windows computer in order to be
able to run your flex development directly in Flash Builder. You will find files and instructions in
/home/reeti/reetiDocuments/Doc/Help/Flex Development kit
4.2 Flex Reeti Application: RApplication
Reeti's home when starting Reeti is a wrapper of OS coded in Flex. Reeti's home is an application that
can launch other AIR/Flex applications created following the outline Reeti.
To create a new application on Reeti you have to do two things:
- Create the application with Reeti’s outlines
- Add the application to the Launcher by using RConfiguration tool
A Reeti application needs three files to be used by Reeti:
An image file:
o Extension *.png, *.jpg : the image representing the application
o Format : 205 pixels x 165 pixels
o Colors :
Robotic application: White on turquoise
Configuration application : White on orange
System function: Logo of the function on white
A translation file
Allows you to translate your application in various language: it currently supports French and English
- Extension XML:
<?xml version="1.0"?>
<content>
<french>
<name_nom_application>nom</name_nom_application >
<bonjour_nom_application>Bonjour</bonjour_nom_application>
</french>
<english>
4 Flex Interface creation