final FormBuilder form = new FormBuilder("game.basic");
form.getHeader("basic").setTitle(I18N.t("Grundlegenes")).setIcon("info").setColumn(4);
// add basics
final FormTextField ftf = new FormTextField(I18N.t("Name"), RGSSProjectHelper.getGameIni(project).get("Title"));
form.addElement("basic.name", ftf);
// build rtp
// RTP.
form.addElement("basic.button", new FormButton(I18N.t("In Game.ini speichern"), "disk", new AE() {
@Override
public void run() {
FileReader f = null;
try {
// load it
f = new FileReader(RGSSProjectHelper.getGameIniFile(project));
// build game ini
Ini ini = new Ini();
ini.load();
Ini.Section section = ini.get("Game");
// add it
section.add("Title", ftf.getContentAsString());
section.add("RTP1", ftf.getContentAsString());
section.add("RTP2", ftf.getContentAsString());
section.add("RTP3", ftf.getContentAsString());
// save
ini.store(RGSSProjectHelper.getGameIniFile(project));
} catch (Throwable t) {