Vasiliy Selivanov

  • RSS

Adobe’s Flash Player 10 API Documentation

Posted on Tuesday, June 3rd, 2008

So you know Adobe® Flash® Player 10, with code-named "Astro". You could download player from abode http://labs.adobe.com/ If you interesting in api documentation you could download it in one archive (6.46 Mb)     Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the [...]

continue reading

39 Creative Flash Designs

Posted on Thursday, April 3rd, 2008

from http://www.smashingmagazine.com/ Intel’s Robo Brawl game.Very beautiful and interactive design. Oh, By The Way — this is how an effective album promotion web-site should look like. 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

Microsoft WorldWide Telescope

Posted on Tuesday, June 3rd, 2008

The WorldWide Telescope (WWT) is a Web 2.0 visualization software environment that enables your computer to function as a virtual telescope—bringing together imagery from the best ground and space-based telescopes in the world for a seamless exploration of the universe.   WorldWide Telescope minimum system requirements For PC:   Microsoft® XP SP2 (minimum), Windows® Vista® [...]

continue reading

Archive for the ‘jQuery’ Category

symfony ahDoctrineEasyEmbeddedRelations plugin, IE and Compatibility View Mode

Friday, March 18th, 2011

I have found interesting bug with symfony ahDoctrineEasyEmbeddedRelations plugin when you use IE Compatibility View Mode. Always save only 2 instance and never more. So lets find why it is happen.

(more…)

Simple JQuery slide show

Friday, March 27th, 2009

For example you have couple of photos with this html

1
2
3
4
5
6
7
8
9
10
<div id="photos">
  <ul>
         <li><img src="/img/1.jpg" /></li>
         <li><img src="/img/2.jpg" /></li>
         <li><img src="/img/3.jpg" /></li>
         <li><img src="/img/4.jpg" /></li>
         <li><img src="/img/5.jpg" /></li>
         <!-- any count you want -->
  </ul>
</div>

(more…)

Multiple File Upload plugin for jQuery and Cancel button

Thursday, November 20th, 2008

QuocKien here ask me to help him with Multiple File Upload plugin and cancel button

This the most easy way I think

it’s this simple js code (cancel button will work for second multi input file)

1
2
3
4
5
6
7
8
9
10
$(document).ready(function(){
        $(‘.multi).MultiFile();
        $(‘.multi2).MultiFile();
       
         $("#cancel_but").click(function() {
            $(".multi2").parent().find(‘span a’).each(function() {
                $(this).click();
            });
        })
});

where is .multi2 – it’s selector of your multi file input
simple html

1
2
3
<input type="file" class="multi" />
<input type="file" class="multi2" />
<input type="button" value="cancel" id="cancel_but" />

 

I hope this help