Archive for the ‘Flash’ Category

mod_rewrite enabling url reqriting on apache and iss server windows and linux

URL reqriting is Simple Rewriting Your URLS (links) Also Redirecting Them To Known URLS.e.g you’ll make the link : view_my_profile.html –> Is Redirected to function.php?op=3
so instead of the link “function.php?op=3″ Which isn’t enough describing itself we’ll make the link “view_my_profile.html” Which is very describtive.Why using mod_reqrite?. Now see if your site has more than 10,000 Links (Dynamic Website) , do you think we would make 10,000 html files ??

=>Of course Not , and here’s the Use Of Mod-Rewrite. We can achive dynamic pages from code and rewrite their URL using this module.

=>well simply This is Very very useful for search Engines to correctly index Your website and gather keywords, we’ll talk about this in details in “Search Engine Optimization Tips”

Leave a Comment

Intro to Flashvars | Passing variables to flash actionscript from the html embed | Tutorial | passing dynamic variable from php file

The property “FlashVars” can be used to import root level variables to the flash movie or swf. The flashvars propery is used in codes for embedding flash in the html page. The string of variables passed in as flashvars, will be imported into the top level of the movie when it is first instantiated. Variables are created before the first frame of the SWF is played. The format of the string is a set of name=value combinations separated by ampersand (&) symbols. Here’s some sample embed codes, including object and embed tags:

Leave a Comment

Javascript from flash script Accessing javascript from flash getUrl flash

Flash can trigger a browser pop-up in many ways, this sample explains how to do this by JavaScript.We can use javascript in flash in very simple way.Just create a function in javascript and place that in header.In flash file you have only to use getUrl function for accessing that javascript function.

Leave a Comment

Flash and PHP contact form actionscript Creating contact mail form in flash

We can create a contact form in flash and use it for mailing purposes.Also we can make it database driven or we can send information from flash form to php files.This is a contact form made in flash and php, it can be used on ‘contact us’ pages.
A flash file contains the form items and when the ’send’ button is pressed it sends the values to mailer.php, this mailer.php sends the email to the receiver.

Leave a Comment

How to open Named Anchor links in flash actionscript

In html you can link to a speciffic area of a html page by adding anchors, for example this link will point you to the “solution” area of this page; you link to an area of a page (to an anchor) by adding # after file name followed by the anchor name, e.g: products.php#product4 or just #product4 if destination is on same page.Write a really short javascript in the html page and set the getURL from flash to trigger that JavaScript.You can use javascript in your flash script for perform more interactive javascript like things.

Leave a Comment

Simple Flash and XML sample Learning flash and xml

Creating flash file and then accessing xml file is a basic task that is done in flash scripts.We load data from xml file or http path.This data can be dynamic but we have not to worry about its size or dynamic nature.We process the xml file using DOM methods in flash.This simple basic article will show you basic connection between flash and XML, it will show you what to add in the flash file in order to be able to read tags from an XML file and then use that data inside flash.

Leave a Comment