Unknown

Unknown
Unknown
Hey guys. Today I’m going to teach you how to create a useful hover-based user interface using jQuery, CSS3, HTML5 and @font-face. Why a hover-based interface? you might ask. Well, with the popularity of touch-based web applications simplifying the way that people can use sites on mobile devices, I think that there’s room for us to look into ways of making it even easier for people to use sites in desktop-based browsers too. Today’s project,WanderWall, achieves that and what we’ll be creating today could easily be used for a portfolio or business site but the concepts you’ll learn could certainly be used to expand the idea further.
If you’d like to check out a demo before we get started, feel free to check out one of three available below.
Unknown
Unknown
Exchange log disk is full, Prevention and Remedies

We would like to extend a warm welcome to Microsoft MVP Erik Rozman to our team of authors as he presents his first article to MSExchange.org readers. In the following document I will describe preventive measures that should help you avoid running out of disk space and in addition I will also describe possible remedies if this has (gasp) already happened.

Unknown
So, you wanna change the registration point of a MovieClip at runtime? Here is some piece of code that allows you to do just that.



Based on an old AS2 class written by Darron Schall, this AS3 class extends MovieClip and adds a new set of properties (x2, y2, rotation2, scaleX2, scaleY2, mouseX2, mouseY2) that allow you to manipulate the sprite based on a contextual registration point that can be set using the setRegistration method.



Here is how it works







// Create a new instance

var square:DynamicMovieClip = new DynamicMovieClip();

addChild(square);



// Change registration coordinates at runtime

square.setRegistration(20, 20);



// From this point on, instead of using 'rotation'

// we use 'rotation2'

// Same principle applies for 'x', 'y', 'scaleX' and 'scaleY'

square.rotation2 = 45;



Here's a simple application.



http://www.oscartrelles.com/examples/DynamicMovie.zip

Sources
Unknown
DarkBaron