Friday, September 19, 2008

yahoo messenger script problem Internet explorer - script error

Here I wrote some tips to remove this script errors in internet explorer. use it
, It will resolve your problems.

1) If this does not work please try the following

go to Start - then Run - then type regsvr32 jscript.dll - then press OK

then

go to Start - then Run - then type regsvr32 vbscript.dll - then press OK

This should fix the issue.


2)
To enable scripting:

1. Click the "Tools" menu on your Internet Explorer toolbar and select "Internet Options."
2. Click the "Security" tab.
3. Click the Internet (globe) icon and click the "Custom Level" button.
4. Scroll down to "Scripting."
5. Enable the following:
* Active scripting
* Allow paste operations via script
* Scripting of Java applets are all enabled
6. Click the "OK" button at the bottom of the window.


3) Download script update version :

The easiest way to clear up this is to goto microsoft and download the latest version of scripting. Which is currently script 5.7 which is currently what is included with Windows Vista. Windows XP originally came with 5.6 . If you are running Windows 98, Microsoft took down the script download. You will have to try to find a copy of script 5.6 from another source.

Link: is in notepad file also : download script version 5.7 from here:
http://www.microsoft.com/downloads/details.aspx?familyid=C03D3E49-B40E-4CA1-A0C7-CC135EC4D2BE&displaylang=en

or take my downloaded file from this Email attachement :


4) Type this in Run : regedit

Workaround: At the current time, you can turn it off for only the session (meaning once you exit it, it resets). You can navigate to your C:\Program Files\Yahoo!\Messenger directory, and open filter1.enc in Notepad and remove everything inside and save it.

You can turn it off from your registry by going to the following key.

HKEY_CURRENT_USER\Software\yahoo\pager

on the right you will see an entry called WordFilter

Right click it and pick Modify and change value to 0

This will disable Wordfilter.

5) Yahoo! Messenger ignores (nearly) everyone in the chat room.

Workaround: This is because there is a bug in the 'Ignore anyone who is not on my Messenger List' feature. To correct this..
  • Go to the Yahoo! Preferences
  • Then go to Ignore List
  • Select 'Ignore only the people below:'
  • Press Apply then ok

Monday, September 1, 2008

JavaScript - YUI-based alert box - replace your ugly javascript alert box

If You want to change the look up of your simple alert message box into your JavaScript then follow
simple steps given below.

You just need to include the two script source file name and path. as i have given below include that
one in your javascript.

< type="text/javascript" src="http://yui.yahooapis.com/combo?2.5.2/build/yuiloader/yuiloader-beta-min.js">
< type="text/javascript" src="js/alert.js">

but you have to download one alert.js file from here.

although, let i have given below one simple Demo for it,


View Code:
<>
<>
This is yui message
< /title>
<>
< type="text/javascript" src="http://yui.yahooapis.com/combo?2.5.2/build/yuiloader/yuiloader-beta-min.js">< /script>
< type="text/javascript" src="js/alert.js">< /script>
< /head>
<>
< type="button" value="press it" onclick="alert('This is click event');">
This demo file
< /body>
< /html>