This is an automated email from the ASF dual-hosted git repository.
andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git
The following commit(s) were added to refs/heads/master by this push:
new a8f3af7 Update frameworks-and-libraries.md
a8f3af7 is described below
commit a8f3af7266447aea9764d3330ae690744cb5fe26
Author: Andrew Wetmore <[email protected]>
AuthorDate: Tue Dec 14 14:49:40 2021 -0400
Update frameworks-and-libraries.md
Move the link to the new library-basics file into the section about
libraries, so we don't jump back and forth between topics.
---
frameworks-and-libraries.md | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/frameworks-and-libraries.md b/frameworks-and-libraries.md
index 5db3325..1abbf9c 100644
--- a/frameworks-and-libraries.md
+++ b/frameworks-and-libraries.md
@@ -26,9 +26,6 @@ Pre-written sets of code which allows for easier development
of Royale-based app
Frameworks provide reliable templates to help you develop complex projects
more easily and sustainably. Libraries are generally collections of modules and
functions that focus on a particular task or theme--you might find a library to
help you with scientific calculations, and another library for manipulating
graphics.
-## Royale Libraries 101
-Are you new to Royale libraries? [Read what they are and how to use
them.](libraries/library-basics)
-
## Frameworks
Apache Royale itself is a framework. It can play well with other frameworks to
help simplify development, especially when many people are working on the same
project.
@@ -42,6 +39,8 @@ Apache Royale itself is a framework. It can play well with
other frameworks to h
## Libraries
+Are you new to Royale libraries? [Read what they are and how to use
them](libraries/library-basics).
+
* There are a large number of [ActionScript3](features/as3) libraries that
should "just work" when you import them into your Royale application. Others
may need adjustment if they presume that your application will run on Flash,
not in a modern browser.
* Use the [ExternalInterface](features/external-interface) class to connect
with and use external JavaScript libraries in your Royale project.
* An even more robust method for connecting with and using external JavaScript
libraries is [externs](features/externs).