How can we bookmark a page on clicking a button or a link button in flex using actionscript
|
|
You'll have to use javascript for that. Just create a javascript function to bookmark a page in your html file that is hosting the swf and then call that function from inside the swf using ExternalInterface. Here's an example of a javascript function for bookmarking: http://labnol.blogspot.com/2006/01/add-to-favorites-ie-bookmark-firefox.html Here's the Flex docs on how to use ExternalInterface: http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00001009.html |
||
|
|
|
|
AFAIK, you can't do that from actionscript directly. However, you can invoke javascript from actionscript unsing the |
||
|
|
|
|
A working example based on the information in previous answers: bookmarks.js (add this to your html-template directory):
Then add this line to index.template.html:
Now you have javascript code "wrapping" your Flex application which can be called by this code (bookmarks.mxml):
Tested on IE. |
||
|
