-
Add to Favorites
Can something like Add to Favorites can be created on flash? and how
To make it clear... Suppose i have 10 sides with individual heading. I have a tool(button) called add to favorites. now i go to any of the slide and click on add to Favorites. This should save the heading of that page somewhere within the flash projector where i can go and refer it in future.
-
with alittle javaScript.. either an external javaScript function in the HTML page that is called through Externalinterface..
or you can try this:
PHP Code:
someBUtton.onPress = function(){
getURL ("javascript:window.external.addFavorite('http://www.website.com','WebsiteTitle')");
}
not sure if this works in anything outside of Internet Explorer.