Archive for June, 2008

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

ffmpeg video When I submit a node, a thumbnail gets created, but a 0 byte FLV file is created that is unusable…

ffmpeg video When I submit a node, a thumbnail gets created, but a 0 byte FLV file is created that is unusable…

Leave a Comment

Installing FFmpeg On LInux in easy method

FFmpeg is an audio/video conversion tool. It includes libavcodec, the leading open source codec library. An experimental streaming server for live broadcasts is also included.

Leave a Comment

Getting Started with DNN-Creating first DotnetNuke module(DNN custom module)

Creating your first dnn module in dnn is very simple and may be little tricky for many.Someone can spent a lot time he dosnt know how to get started with dnn module creations.So iam explaining here how i got my first dnn module working.The basic requirements for this are:-
# Set up your development environment
# Under DesktopModules create a folder called contactme
# Create three files under contactme folder

Leave a Comment

The SqlCommand Object database operations C# dot net

A SqlCommand object allows you to query and send commands to a data base. It has methods that are specialized for different commands. The ExecuteReader method returns a SqlDataReader object for viewing the results of a select query. For insert, update, and delete SQL commands, you use the ExecuteNonQuery method. If you only need a single aggregate value from a query, the ExecuteScalar is the best choice.

Leave a Comment

Getting Post, Redirect, Get data Dot Net Forms getting started

The major problems with this Postback pattern, is that hitting the Refresh button of your browser in steps 3 or 5 will re-post your submitted data. Step 5 is more of a problem as it could possibly re-submit that created information. Granted, there are steps that you can take to approach this problem, but this is how default ASP.NET Web Forms are treated.

Leave a Comment

Easy payments using Paypal IPN,Using Paypal in PHP

There are several PHP scripts and classes to process PayPal payments using their native IPN (Internet payment notification) feature. Because the whole process is based on the data you need to send via a web form to the PayPal payment processor these script look very similar.

Leave a Comment