Archive for September, 2006...
Filed under Career
I figured I should make a list of current projects I am working on for myself and my clients.
Lets start with my clients (Sorry for not getting to your updates everyone, as you will see I have alot to do
)
1. InternationalPress.com
2. CharlotteLiveMusic.com
3. xtrapowerbatteries.com
4. ylsradio.com
5. WeddingPartyHelp.com
6. CSSReboot.com
7. Site I can’t mention yet 
8. SilkLiquidators.com
9. AdviceCG.com
10. KanesMarket.com (I just look at it, they don’t want me to do anything
)
11. AdoptionNetwork.com
12. SisterTraffic.com
13. RFID.US
Yes, these are all active accounts and I am constantly working on them - Crazy I know.
Now lets list my Sites and what I am working on.
1. ACJavascripts.com
2. SimplyProgram.com
3. CYWebmaster.com
4. LyricsToSongs.net
5. CYLance.com
6. CYTemplates.com
7. CYTech-services.com
8. TheInfoWire.com
9. PPLMusic.com
10. SeekMusicians.com
11. MyGhibli.com
Now, if that doesn’t make me a webmaster I don’t know what does
Filed under Make you smile
Now, before you visit the site MrOdd.com, I must warn you — This guy is CRAZY!
I must admit though, he might be crazy but this guy is a genius… You will see what I mean.
Filed under Programming, ActionScript, PHP
Well - LJ has returned from Vacation and has finally launched the new "Flash" version of BuzzPlay.com.
Check it out here: http://www.buzzplay.com
Now, why am I posting about this? Simple - I did all the programming for the site. This was my first major Flash (ActionScript) job. I used it as a test to see how effective I am in ActionScript. I was able to developed the whole system within a couple days, it wasn't all that hard.
What was the hardest aspect of the site?
What a great question Aaron
That hardest part was when he wanted the user to "stay" logged into their account while moving to completly seperate pages on the site (which where all in flash). I figured this out useing loadVars.
When the user logged into their account I sent their information to a php script and created a session, on every other page I used AS to pull that session information and allowed me to pull their account on every page. Pretty nifty I think.
Heres the code I used - very basic and simple(HINT: Put in error checks and variable validation)
Actionscript:
-
var artistName="";
-
var myID=0;
-
var checkLogin = new LoadVars();
-
checkLogin.onLoad = function (success:Boolean){
-
if(success){
-
if(checkLogin.myID!=""){
-
_root.myID=checkLogin.myID;
-
gotoAndStop(2);
-
}else{
-
//gotoAndStop(2);
-
//LOGIN SCRIPTÂ - OR REDIRECT
-
-
}
-
}else{
-
//gotoAndStop(2);
-
//LOGIN SCRIPTÂ - OR REDIRECT
-
}
-
}
-
checkLogin.load("checkLogin.php");
-
stop();
Here is the PHP Code:
PHP:
-
//Include your db info and all that good stuff.(error checking)
-
-
-
echo "myID=".
$_SESSION[userId
];
-
-
?>
You can place the AS script in the first frame of all your files... works very well
Support Our Sponsors!