Trick: Transformations

General questions about NeoAppBuilder - our rapid application development tool for building HTML5, web and mobile apps.

Moderator: Neosoft Support

Locked
User avatar
luishp
Posts: 410
Joined: Wed May 23, 2007 10:17 am
Location: Spain
Contact:

Trick: Transformations

Post by luishp »

NeoAppBuilder has added the command RotateObject to the last version, so we can use something like:

Code: Select all

RotateObject "Container1" [Deg]
To rotate any object (in this case Container1) for [Deg] degrees.

Note than this can also be accomplished using CSS transformations with a lot more posibilities using something like:

Code: Select all

SetObjectStyle "Container1" "transform" "rotate([Deg]deg)"
In this case we can use rotate, but also skew, rotate3D...
For a complete list take a look here:

http://www.w3schools.com/cssref/css3_pr_transform.asp

Regards.
Luis Hernández - SinLios Soluciones Digitales
http://sinlios.com
Locked