Posts

Loading XML data using ActionScript 3.0

Image
Using XML is one of the best ways for structuring external content in a logical format that is easy to understand, process, and update. This tutorial will teach you the basics on how to load and process XML in Flash using ActionScript 3.0. You are assumed to have basic knowledge of ActionScript in order to follow this tutorial. Here is sample code loading XML in ActionScript 3 Here is sample XML code Download here

Retrieve Flash Variables in Actionscript 3

Image
In Actionscript 3 variables that are passed in through query string have been moved to the parameters property of LoaderInfo instance. Here’s a real simple way to retrieve flash variable in Actionscript 3 1. To access the query string fileName in Actionscript 3 , all you have to do in your actionscript 3 source code is 2. Here Html Code access Flash variables Download here

Open new window in WSS

today i testing Open New Window in Quick launch WSS Navigation. javascript:window.open('http:// www.google.com','_blank');history.go(0);

Custom Welcome User message in SharePoint

Image
Default Setting SharePoint display Logged-in user name as Welcome UserName. I have create Custom UserControl (name CustomWelcomeUser.ascx) 1. Go go C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\CONTROLTEMPLATES then create new folder name "CustomWelcome" 2. Go go CustomWelcome then create New Custom UserControl name "CustomWelcomeUser.ascx"

Setting up SMTP Authentication in Joomla

Image
You can enter information in admin page -> site -> global configuration -> server You can enter information in admin page -> site -> global configuration -> server

How to reset my Joomla administrator password?

**Follow procedure involve direct update to database. We highly suggest you backup the database before perform the steps. To reset the Joomla administrator password, you can do it with with a simple MySQL query. 1. Login our phpmyadmin, https://phpmyadmin.mysite4now.com/ 2. Select Joomla's database from the drop-down menu on the left 3. Open the SQL tab 4. In the text field write the following SQL query: UPDATE jos_users SET password = MD5( 'new_password' ) WHERE username = 'admin'; Note: "new_password" - replace this with the new password you wish to use. "admin" - replace this if your admin username is different. Once you are ready, click on the GO button to submit the query. If everything goes fine without errors, you should be able to login to Joomla with the new password.

Fixed error Content type '0x01010007FF3E057FA8AB4AA42FCB67B453FFC100E214EEE741181F4E9F7ACC43278EE811' not found

We have a portal server 2007 installation that is working fine except for one frustrating error. We deployed the latest February Cumulative Patches and after this the problem starts.We have one console application that creates a site by using stsadm command.If we try the same activity by using GUI then everything works fine. This Console application runs in 4 steps and we are facing the problem at step 4 and prompts error message "Content type ' 0x01010007FF3E057FA8AB4AA42FCB67B453FFC100E214EEE741181F4E9F7ACC43278EE811 ' not found in web 'http://moss2007.com' " When i check the content type on the website i was shocked there was nothing means not even single content type.The weird thing is, that the content type ID is the ID from the “PageLayout” Content Type... Symptons:- After doing lots of googling, i noticed and marked some of the common areas affected by this content type error message. -If we try to create a new page ("Create Page" command from...