We Recommend

C++ The Core Language C++ The Core Language
C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language. The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language.


Posted By

Meestercor on 05/22/08


Tagged

textmate button click tag clickTag


Versions (?)


ClickTag


Published in: Other 


  1. on(release) {
  2. var url:String = _level0.clickTag;
  3. var index:Number;
  4.  
  5. index = url.indexOf ("|");
  6.  
  7. while (index != -1) {
  8. url = url.substr (0, index) + "&" + url.substr (index + 1, url.length);
  9. index = url.indexOf ("|");
  10. }
  11.  
  12. getURL (url, "_blank");
  13. trace(url);
  14. }

Report this snippet 

You need to login to post a comment.