A ClickTag is a parameter used in Flash banner ads. The parameter is a variable that defines the destination URL from the markup code. By using a click tag, the advertiser can easily see and modify the URL without a Flash developer. It allows the Ad server to register where the ad was displayed and when it was clicked. On any click, Flash ads should redirect to the URL specified in the clickTAG argument; there should be no other redirection in between. There are no industry standards on how to program a click tag. The code for the programming is case-sensitive, but programmers format their capitalization differently so ad serving networks may require clickTAG, ClickTag, clickTag, or any variation of capitalization for that specific variable. Each advertisers have their own requirements. Continue reading
There are total 57021 build-in function in php. You can find all the function here http://php.net/quickref.php
Now we have a SWC component at the component folder of the Flash. SWC we can’t directly import to the library. First create a New Flash File with Action Script3.0 Support. And Goto Windows->compoents. You can see the SquareBox Component there, drag and drop the Component to the Flash Library.
What is SWC?
Shock Wave Components are component files for Flash and Flex. A component is a movie clip or compiled clip that the Flash developer can drag out of the Components panel into a FLA file. The movie clip should be exported for ActionScript and also should expose parameters that can be set in the Parameters tab of the Property inspector or in the Components Continue reading
:hidden Selector
Selects all elements that are hidden.
Elements can be considered hidden for several reasons:
- They have a display value of none.
- They are form elements with type=”hidden”.
- Their width and height are explicitly set to 0.
- An ancestor element is hidden, so the element is not shown on the page.
An element is assumed to be hidden if it or any of its parents consumes no space in the document. CSS visibility isn’t taken into account (therefore
$(elem).css('visibiity','hidden').is(':hidden') == false).
Usage:
jQuery(':hidden')
//or
$(':hidden')




