Community

From HTML5 Builder
Jump to: navigation, search

HTML5 Builder is surrounded by an ever-growing community of developers from all backgrounds, willing to share their experiences and help each other out.

News

For general news and articles about HTML5 Builder, you should check the Embarcadero HTML5 Builder Developer Network.

Blogs

Follow the Embarcadero Blogs Planet for news, information, tutorials, and other help resources.

Some people you might want to follow there:

José León
HTML5 Builder Lead Developer.
Pablo Mateos
HTML5 Builder Developer.
José Pérez
HTML5 Builder Developer. Blogs mostly in Spanish.
Juan Antonio Ruzafa
HTML5 Builder QA Engineer.

Forums

In case you do not find what you were looking for in any of the other available help resources, you should try the HTML5 Builder Forums. There you might find your answers from other users like you, and your input, be it a question or an answer, may be used to improve HTML5 Builder’s documentation.

Note: You will need to register an account to post to the forums.

Message Formatting

When writing on the forums, you can use some formatting features on your messages to make them more readable:

Text Effects

*strong*
Makes text strong.
+emphasis+
Makes text emphasis.

Links

You can use HTML to create links:

<a href="http://www.example.com">link text</a>
link text

Code

{code}
function myFunction($parameter1, $parameter2) {
    return $parameter1 + $parameter2;
}
{code}

Results in something like:

function myFunction($parameter1, $parameter2) {
    return $parameter1 + $parameter2;
}