BaselScript


× SPRACHE NACHRICHTEN BEISPIELE BEISPIELFILME INSTALLATION IMPRESSUM DATENSCHUTZ SUPPORT -------------- BESCHREIBUNG Einführung BASEL-Sprache Grundkenntnisse    • Feld auch Variable    • Array    • Hash-Array    • Mathem. und Vergleichsoperatoren    • Bedingungen    • Schleife    • Timer    • Datei    • Datensatz    • Verzeichnis    • Menu    • Dialog    • ListView (Ansichtsliste)    • Form Arbeiten mit Skripten    • Skripte    • Scriptstruktur    • Aufruf eines Skriptes    • Skript starten    • Skript beim Start der Anwendung starten    • Szene    • Szene Deklaration    • Szene laden und starten Arbeiten mit Feldern    • Feldwert speichern    • Feldwert wiederherstellen Arbeiten mit Arrays    • Hash-array Arbeiten mit Verzeichnissen    • Standardverzeichnisse    • Unterverzeichnis erstellen    • Unterverzeichnis löschen    • Verzeichnisinhalt Arbeiten mit Dateien    • Dateistruktur deklarieren    • Datei in Speicher einlesen    • Datensatz in Datei schreiben    • Datei speichern    • Eine Datei in eine andere Datei umschreiben    • Datei umbenennen    • Datei kopieren    • Datensätze löschen    • Datei löschen    • Eingabe in Datei aus dem Skript    • Anzahl ausgewählter Datensätze    • Datensatz N lesen    • Verschlüsseln    • Dateien zusammenführen    • Update file    • Datensätze zusammenführen    • Space reduzieren    • Teilstring in Datei ersetzen    • Datensatz nach ausgewähltem einfügen    • Neuen Datensatz vor ausagewähltem hinzufühgen Arbeiten mit Bildschirm    • Erklärungen    • Form oder Formular       •• Tile = text       •• Tile = input       •• Tile = button       •• Tile = rectangle       •• Tile = image       •• Tile = radiobutton       •• Tile = checkbox       •• Tile = togglebutton       •• Tile = seekbar       •• Tile = property       •• Property-Beispiel       •• Tile-Anweisungen    •  Dialog    • List view    • Menü    • Message/print    • Trace Arbeiten mit Grafik    • Draw image    • Draw line    • Draw rectangle    • Draw circle    • Draw ellipse    • Draw text    • Draw polygon    • Draw point Arbeit mit Sound Arbeit mit Musik Vibration Arbeit mit Server    • Image herunterladen    • Stream als csv-Datei herunterladen    • Sound herunterladen    • mp3-Datei herunterladen    • String von URL herunterladen    • Anweisungen nach Download    • Datei auf Server hochladen Aufruf einer Webseite Programm aus dem Skript ausführen Notifications Funktionen    • Allgemeine Funktionen    • String funktionen    • Math Funktionen    • Date Funktion    • Array-Funktionen    • File-Funktionen    • Verzeichnis-Funktionen    • Grafikfunktionen    • Form funktionen    • Tabellenfunktionen Google Maps App für Android    • Ort zeigen    • Suche nach Orten    • Navigation Mehrsprachige Skripte Skript erstellen.    • Skript mit dem Texteditor erstellen    • Skript auf PC erstellen    • Skript mithilfe von Vorlagen erstellen    • Skript mit Assistent erstellen    • Formularassistent    • Dialogassistent    • Menüassistent Registrierung und Login    • Meine Skripte Klonen des Android-Interpreters Copy script from Download Festlegen von Standardgrößen Mögliche Probleme beim Ausführen von Skripten    • Clinch-Situation    • Programm hängt    • Skriptstart und keine Änderungen sichtbar Reservierte Namen Globale Variable Standardparameter für Szenenkomponenten Einstellungen Liste der Unicode-Zeichen Fehlerdiagnose Einige Vergleiche bekannter Skriptsprachen mit BaselScript    • Menu    • Dialog    • List View    • Form    • Download file    • Draw circle ...
Beschreibung

                 

Standardverzeichnisse

When you first start the application in the main directory of the app application
the following directories are created:


Directory for example CSV files:
   #_directory_files_examples - directory name for csv files from sample scripts
   or /APPDIR/files/examples/

Directory for example sound files:
   #_directory_sound_examples - directory name for sound files from sample scripts
   or /APPDIR/files/sound/examples/

Directory for example music files:
   #_directory_music_examples - directory name for music files from sample scripts
   or APPDIR/music/examples/

Directory for example images files:
   #_directory_images_examples - directory name for image files from sample scripts
   or /APPDIR/files/images/examples/

SYSTEM - the default directory for system files (dictionary, color schemes etc)
   The path to the directory is in the field #_directory_system.
   or /APPDIR/system/


FIELDS - the default directory for the saved fields.
   The path to the directory is in the field #_directory_fields
   or /APPDIR/system/fields/


SCRIPT_SYSTEM - the directory for system scripts files.
   The path to the directory is in the field #_directory_script_system
   or /APPDIR/script/system/


SCRIPT_EXAMPLES - the directory for example scripts files.
   The path to the directory is in the field #_directory_script_examples
   or /APPDIR/script/examples


///////////////////////////////////////////////////////////////////////////////////////////////////////////////

MYDATA - the subdirectory for user files.
   The path to the directory is in the field#_directory_mydata
   or /APPDIR/MYDATA/


SCRIPT - the subdirectory for user (new) scripts files.
   The path to the subdirectory is in the field#_directory_script
   or /APPDIR/MYDATA/script/


b>FILES - the subdirectory for user`s CSV files:
   The path to the subdirectory is in the field#_directory_my_files
   or /APPDIR/MYDATA/files/


SOUND - the subdirectory for user`s sound files:
   The path to the subdirectory is in the field#_directory_my_sound
   or /APPDIR/MYDATA/sound/


MUSIC - the subdirectory for user`s music files:
   The path to the subdirectory is in the field#_directory_my_music
   or /APPDIR/MYDATA/music/


IMAGES - the subdirectory for user`s images files:
   The path to the subdirectory is in the field#_directory_my_images
   or /APPDIR/MYDATA/images/


SYSTEM - the subdirectory for user`s changed system files:
   The path to the subdirectory is in the field#_directory_my_system
   or /APPDIR/MYDATA/system/


TEMP - the subdirectory for temp files.
   The path to the subdirectory is in the field #_directory_temp
   or /APPDIR/MYDATA/temp/


#_directory_main - subdirectory name for BaselScript interpreter.

Tree of subdirectories in directory #_directory_main
-------------------------------------------------------------------

download (#_directory_download)
APPDIR (#_directory_main)
   system (#_directory_system)
         fields (#_directory_fields)
   files (#_directory_files)
         examples (#_directory_files_examples)
         sound (#_directory_sound)
               examples (#_directory_sound_examples)
         music (#_directory_music)
               examples (#_directory_music_examples)
         images (#_directory_images)
               examples (#_directory_images_examples)
   script (#_directory_script)
         system (#_directory_script_system)
         examples (#_directory_script_examples)
/////////////////////////////////////////////////////////
   MYDATA(#_directory_mydata)
         system(#_directory_my_system)
         files(#_directory_my_files)
         images(#_directory_my_images)
         sound(#_directory_my_sound)
         music(#_directory_my_music)
         temp(#_directory_temp)


You can create your own subdirectories in sudirectory MYDATA