is there a way to dynamically set the Title or Content data for ShareThis?


*ActionScript*

*private* *function* onClick():*void*

{

ExternalInterface.call (*"ShareThis_set",”Title”*);

ExternalInterface.call (*"ShareThis_share"*);

}

*JavaScript*

var ShareObj = SHARETHIS.addEntry({ }, {button:false, popup:true});


function ShareThis_set(value)

{

ShareObj.properties.title = value;

}

function ShareThis_share()

{

ShareObj.popup();

}

I am setting the title property from ActionScript calling the ShareThis_set function and passing “Title”.
This property is set (I tested it).
But, when I popup the shareThis window, that property is empty (I see this when I receive the e-mail).
--

*artur :.*

- *www.artur.com*
- *ar...@artur.com*
- *ph:646.797.3320*

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to