Skip to content

Basic principles

The main components of LaunchMeUp’

Here are the main components that LaunchMeUp is able to integrate into the scripts of its pages.

The Launcher

The Launcher is the root element of a LaunchMeUp application. It must be the first element loaded (root of the first xml file opened by LaunchMeUp).

It contains general information about the application such as the windows to display, the controls to manage (keyboard, joystick, etc.) and the sounds to play when these controls are activated by the user, the playlist to play in the background when the application is launched, …

The Layout

The Layout is a component most often used at the root of a page to position child elements.

This component contains a grid definition (columns and rows), the boxes resulting from this grid will be used to place other components.

Note: the Launcher is by default also a Layout and inherits all its properties.

The animations

Animations can be assigned to all components and define their behaviors when they appear or disappear from the screen (moving from one page to another).

They are divided into 2 categories: appearance and disappearance (of the component).

For example, we can decide when changing screens that the old page disappears with a fading animation (gradual disappearance) and that the new screen appears with a sliding animation from the right.

Each component of a screen follows its own animation which combines with the animations defined on its parent components.

It is possible to define several animations at the same time for a component.

The ItemPanel

The ItemsPanel contains a list of sub-elements (items) which will be presented in a grid. It is useful for creating a wheel, a list or an icon panel.

There are animations specific to these item components allowing you to animate the appearance/disappearance of the items contained individually.

The media

This component is used to display and play media: video, music, animated gif, etc. It uses the Windows Media Player runtimes and is therefore subject to the same limitations (codec, etc.).

Styles

Styles allow you to define the appearance of components globally, so as not to have to repeat this presentation several times.

Patterns

Patterns are component templates used by ItemsPanel to quickly construct a list of items based on a list of values ​​(variables) defined in a source text file.

The variables

Variables contain key elements/values ​​defined by the script designer. They are used in particular to configure components from Patterns, or to pass information to child components.

A component inherits all variables from its parent components. Variables can contain other variables in their value and nest.

These variables can be used directly in the character string type properties of the components (path of an image or media, etc.) by placing their name between curly brackets and prefixing this name with a "\$". Ex {$variablename}.

The Target

Each component has a Target property which will contain the action to be performed when clicking on this component. This can be a Windows command (Command), a LaunchMeUp action (Action) or the opening of a new page (File).