Vasiliy Selivanov

  • RSS

Ukraine. Carpathian Mountains. Verhniy Yaseniv. Green tourism / Украина. Карпаты. Верхній Ясенів.

Posted on Wednesday, July 1st, 2009

I was at Carpathian Mountains last weekend so I want to show you some photos from this green travel. Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

NASA Scientists Make Magnetic Fields Visible

Posted on Tuesday, June 3rd, 2008

Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Commodore SX-64 VS Macbook Air

Posted on Wednesday, September 10th, 2008

Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Zmags, Flash object and internal link

Posted on Thursday, March 24th, 2011

If you are using Zmags, and what to add internal link (go to some other page) into flash object. You could use this code in flash ( actionscript 3.0)

1
2
3
4
5
6
7
import flash.external.*;
but.addEventListener(MouseEvent.CLICK, function(e:MouseEvent) {
    var curUrl:String =  String( ExternalInterface.call(" function(){ return document.location.href.toString();}"));
    curUrl = curUrl.replace(/\/([0-9]+)$/,'/'+YOUR_PAGE_NUMBER);
    var myURL:URLRequest = new URLRequest(curUrl);
    navigateToURL(myURL,"_self");
});

where YOUR_PAGE_NUMBER – is page number you want to go after click on button with instance name “but”

Posted in: Flash.