Search

Bits of Creativity , Bunch of Coding, Bytes of Art and Good Vibes

How To

Provides step-by-step guides, tutorials, and practical tips to help readers learn new skills and solve everyday challenges.

CSS3 Filters

CSS3 Filters are a powerful tool that web authors can use to achieve interesting visual effects. Originated as part of the Scalable Vector Graphics (SVG) specification. Browser vendors such Mozilla, Chrome, Opera and IE added SVG capabilities. It now realized effectiveness and usefulness of filters.....

The magic of get url

Yup, to combined flash to Jquery used the get url.. 1. On FlashAS2stop();getURL("javascript:applebyte();"); AS3stop();import flash.external.ExternalInterface;ExternalInterface.call("applebyte"); 2. On CSS.applenav {display:none;margin-top:0;}2. On Jqueryfunction applebyte(){$('.applenav').fadeTo('slow', 0.1, function() {$(".applenav").animate({"margin-top": "215px"}, 1000).fadeTo('slow', 1);// Animation complete.});}$(document).ready(function() {});

Applebyte Preloader AS3

1. Create your movieclip and textfield. For this recipe, you'll need a simple rectangle, and a dynamic textfield b. lpc (Dynamic Txt) – make sure this is embed to character rangec. loadBar (desire length) import flash.display.*; this.stop(); this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, appleLoader); function appleLoader(event:ProgressEvent):void {var pcent:Number=event.bytesLoaded/event.bytesTotal*100;lbar.scaleX=pcent/100;lpc.text=int(pcent)+"%";if(pcent==100){this.gotoAndStop(2);}}

Apple AS2 XML Slideshow

Some few tricks on simple flash xml slideshow on Action Script 2. 1. The Slideshow function firstImage() { if (loaded == filesize) { picture._alpha = 0; picture.loadMovie(image[0], 1); desc_txt.text = description[0]; desc_txt2.text = description2[0]; btnLinks(0); slideshow(); } } function nextImage() { if (p<(total-1)) { p++;.....