Category: Programming

  • Iframe Web Virus: How to Guide

    Recently I got more than 10 websites which got Bad site rating from google as Google crawler found that these sites are distributing malware. On investigation, we found that somehow website code has been modified and an Iframe got inserted in HTML code that link to some third party website which is actually distributing the…

  • Calling Path in ActionScript

    var kLastSlash:Number = _root._url.lastIndexOf(‘/’); var baseUrl:String = _root._url.substr(0, kLastSlash+1);

  • OpenXML : New office file format

    When I first heard that Microsoft change the file extension of MS Office Products and add “x” in them, I got surprised as that was not very common practise for me. But today when I word on that new file format, I really would say, it was a good move. Those who don’t know, Microsoft…

  • trace() function to work for Browser

    http://yourpalmark.com/2005/07/01/trace-from-the-browser-using-standard-trace/ I try this article and it actually works. Thanks to Fernando and Ernie, the Flash programmers, who told me about this article and some other great technique to program in ActionScripting.

  • Replace Function for ActionScript 2.0

    function searchAndReplace(holder, searchfor, replacement) {  temparray = holder.split(searchfor);  holder = temparray.join(replacement);  return (holder); } Do I need to say anything else ?

  • Adding Filters/effect on MovieClip through ActionScript

    How to enter the Filter effects on MovieClip using ActionScript, A developer way.

  • Pagination Query for SQL Server

    In recent past, we got few problem when we need to do Pagination with SQL Server. I specially got frustrated when I saw that MySQL server has “limit” word that does pagination work in MySQL in best known manner for me, BUT microsoft didn’t consider that option yet. But today I found a method for…