mage3158's user education application! [PENDING]

Discussion in 'Archives' started by mage3158, Jul 7, 2007.

mage3158's user education application! [PENDING]
  1. Unread #1 - Jul 7, 2007 at 2:02 AM
  2. mage3158
    Joined:
    Jan 27, 2007
    Posts:
    2,415
    Referrals:
    0
    Sythe Gold:
    330
    Discord Unique ID:
    148244190378196992
    Discord Username:
    Crabby#0989
    Not sure if srs or just newfag...

    mage3158 Grand Master

    mage3158's user education application! [PENDING]

    Ye Olde Table of Contents
    - Basics of FTP
    - XHTML and HTML
    - How to cut out and animate sprites
    - How to control another computer
    - Make a simple play/replay button in flash
    - My 100 words

    Basics of FTP

    First of all what does FTP stand for, and what it is used for?
    Well FTP stands for File Transfer Protocol, and is used to upload files to a server or website.

    To start using the FTP feature your host may or may not give you, you first need to download an FTP client.
    I recommend FileZilla which you can download
    here.

    Now to get started, find your FTP information which is usually ftp.yoursite.com if you're using cPanel, and if you're using layered panel it is usually yoursitename.yourhost.com. (if it's a free webhost.)
    The user login is usually just your User name and password.
    [​IMG]

    Now to start uploading you must click on the "WWW" folder first.
    If you're using layered panel you may skip this step and start uploading.
    [​IMG]
    To start Uploading all you have to do is find the file on the left then right click and press upload.
    The good thing about FTP is, is that you can upload as many files as you want at the same time!


    When uploading in FTP you no longer have to upload a zip file then unzip it, you can now just upload the folder itself.
    [​IMG]


    Also one important thing is CHMOD which I believe you can only do in FTP.
    Well let's say that you have a php script that requires 777 chmod, and you just sit there wondering how to make the folder chmod 777.
    Well this is how you do it.
    First you right click on the folder that needs chmod 777 then you click file attributes.
    [​IMG]

    Now all you have to do is make it chmod 777 by clicking all of the options.
    [​IMG]


    XHTML and HTML

    The Basics

    Alright for the basics I will show you some different tabs and how they look.

    Also when you're making tabs THEY MUST BE LOWERCASE! (For XHTML.)

    For one there is the paragraph tab:
    Code:
    <p>This is a paragraphs :O :O :O</p>
    <p>This be another paragraph :O:O:O</p>
    Example

    The bold tabs:
    Code:
    <b>This be in bold</b>
    Example

    The Italics:
    Code:
    <i>Now this be in italics</i>
    Example

    Now this is how you would order them if you were to use more than one tab at once.
    Code:
    <p><b><i> Now this is a mixture </i></b></p>
    
    <p><b><i>^ see?</i></b></p>
    Example

    Striken text:
    Code:
    <s> Your gay!!! </s>
    just kidding
    Example

    Horizontal Rule:
    Code:
    <hr />
    Example

    Underline:
    Code:
    <u>this is super underlined text here</u>
    Example

    Anchor tabs (Links):
    Code:
    <a href="http://mysite.com"> ME WEBSITE LOLOLOLOLOLOLOLOL </a>
    or
    Code:
    <a href="/index.html"> The index</a>
    ^This goes to an existing page in your website such as the index.
    Example

    Image tags:
    Code:
    <img src="http://lolololol.com/imaglolololololololol.png" />
    Example

    The Site
    Now to start forming a website.

    This an extremely basic website.
    Code:
    <html>
    
    <head>
    <title> My crappy webpage lol...BOOBIES!!!</title>
    </head>
    
    <body>
    This be my crappy website lol...
    </body>
    
    </html>
    Example

    To add CSS to your page you must make a CSS file code that and add this to your page.
    Code:
    <html>
    
    <head>
    <title> My crappy webpage lol...BOOBIES!!!</title>
    <link rel="stylesheet" href="styles.css" type="text/css" />
    </head>
    
    <body>
    This be my crappy website lol...
    </body>
    
    </html>
    Example

    Now to add meta tags for search engines etc...
    Code:
    <html>
    
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="keywords" content="thisbekeyword" />
    <meta name="description" content="description for your site" />
    <title> My crappy webpage lol...BOOBIES!!!</title>
    <link rel="stylesheet" href="styles.css" type="text/css" />
    </head>
    
    <body>
    This be my crappy website lol...
    </body>
    
    </html>
    Example

    Now to add the Doc type:
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="keywords" content="thisbekeyword" />
    <meta name="description" content="description for your site" />
    <title> My crappy webpage lol...BOOBIES!!!</title>
    <link rel="stylesheet" href="styles.css" type="text/css" />
    </head>
    
    <body>
    <p>This be my crappy website lol...</p>
    </body>
    
    </html>
    Example

    You can use XHTML strict but I don't recommend it.
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd">


    How to cut out and animate sprites!

    Cutting it out

    (This works in Flash 8, and 9, but I haven't tested in any other version.)

    Well as you may or may not have known, to cut out transparent sprites in flash all you had to do was press Ctrl+B.
    But what about those non transparent sprites such as this?
    [​IMG]

    Well once you have Flash open your file by going to:
    File->Import->Import to stage or Library, and select your sprite sheet.
    [​IMG]

    Now select the image, and go to:
    Modify->Bitmap->Trace Bitmap
    [​IMG]

    Now you should get a window like this.
    Use the EXACT options that are shown here.
    [​IMG]

    Now click on the background color (in this case it is blue) and press the Delete key, and now you should have cutout sprites ready to animate!
    [​IMG]

    Now to animate!

    Ok choose which person or thing you wish to animate, and delete all the rest.
    Now we will highlight one of the persons or things and:
    Right click->Convert to symbol, and name it what you want. Just remember to make it a movie clip!
    [​IMG]

    Now do that to the rest of them.
    Now go to:
    Insert->New Symbol. Yet again it has to be movie clip.

    Now look to the right of the screen where your library is and double click on the movie clip where your animation will be, and drag out from your library the first pic in your animation, and center it.
    [​IMG]

    Now to keep the animation smooth raise the Frames per seconds to 25.

    Now on the time line (above your workspace) Right click and press Insert key frame.
    Yes I know it makes a copy of the last frame but this keeps the animation smooth.

    Now press the onion skin option which shows you the shadow of the last few frames.
    This helps you put the sprite in the EXACT same spot as the last.

    Now right click the timeline again and press insert Blank key frame and put in the next image, and so on until you are done with all of the pictures, but remember the pictures must be in the EXACT location as the last or else it will look weird.
    [​IMG]

    Now once you are finished go to the main movie by clicking scene one right below the time line, and drag your animation from the library to the main movie, and do a test animation to see if you did it right.

    Download example:
    http://rapidshare.com/files/40349552/spriteexample.fla.html

    How to control another computer

    Ok you know that most remote control compy things usually cost money, and usually pains when it comes to firewalls.
    But here is a GREAT way to control another computer for back up purposes, to help fix another computer, or just for fun.

    To get started, go to http://www.logmein.com, and make an account.
    [​IMG]

    Now select the free option. (Though you can select the trial if you really need to back up a computer.) Now complete the registration.
    [​IMG]

    Now once you have registered, and verified your account log on, and select "add computer"
    Note: We are adding our own computers right now so we can control our computers from another place. If you want to control another computer from your computer simply log onto that computer, and do the below steps.
    [​IMG]

    Now select the "free" option. (Unless you are doing backups of course)
    [​IMG]

    Once you have downloaded the program let's install it!

    When you get these options pick typical.
    [​IMG]

    Now name your compy. (So you can identify it on the computer list)
    [​IMG]

    If your computer has a user name, and password you may skip this part as it won't appear in your installation.

    Now to enter in a password. (Anything easy to remember)
    [​IMG]

    Now select the computer you wish to control ^_^ (Of course you are not going to control your computer from your computer i'm just going to give an example.)
    [​IMG]

    Now all you have to do is enter in the code that you made in the installation then WALA! You are controlling that computer.
    Note: When connecting to a computer that has a user and pass simply type in the administrative user, and pass to connect.
    [​IMG]

    Also if you want to connect to your computer from another computer you don't need to install that program onto that computer, you just simply connect which means you can connect to your computer from school or work.


    Make a simple play/replay button in flash
    Please note that this is for action script 2.0! NOT 3.0!!

    Ok before you read, this is not a guide on how to make a goodlooking Play button, this is a guide on how to code a play button.

    Ok lets start out with a rectangle with the text play in it or something.
    [​IMG]

    Highlight the whole thing then:
    Right click->convert to symbol
    [​IMG]

    Now press the "button" option, and press ok.
    [​IMG]

    Now select the symbol, and press the action script button.
    [​IMG]

    Now enter in this code:
    Code:
    on (release) {
    	gotoAndPlay(2);
    }
    
    or
    Code:
    on (release) {
    	nextFrame();
    }
    
    Now if you were to create a replay button you would just think duh...
    Code:
    on (release) {
    	gotoAndPlay(1);
    }
    
    But what if the first fram of the whole flash is in a different scene?
    Well you would enter this code.
    The "1" being the scene, and the 1 being the frame.


    .fla Example
    http://rapidshare.com/files/41487234/playexample.fla.html





    My 100 words
    Hello my name is Brian M., and these are my reasons why I should be a user educator.
    For one, I love to help people, and I think that this rank will show people that, and turn to me for answers.
    Also I will write guides as many as possible, when I have the time, to help out this community.
    I also believe that I should be a user educator because when ever I explain something, I always explain it with great detail, make it simple, and step by step so anyone can understand it, as you can see from my guides.
    Also one last thing, I will always be making guides, and not becoming lazy as I believe this rank is a responsibility.
     
  3. Unread #2 - Jul 7, 2007 at 2:50 AM
  4. Jenna_luvz_ya
    Joined:
    Apr 24, 2007
    Posts:
    514
    Referrals:
    0
    Sythe Gold:
    0

    Jenna_luvz_ya Forum Addict
    Banned

    mage3158's user education application! [PENDING]

    Looks very good. I hope you get UE.
     
  5. Unread #3 - Jul 7, 2007 at 3:57 AM
  6. mage3158
    Joined:
    Jan 27, 2007
    Posts:
    2,415
    Referrals:
    0
    Sythe Gold:
    330
    Discord Unique ID:
    148244190378196992
    Discord Username:
    Crabby#0989
    Not sure if srs or just newfag...

    mage3158 Grand Master

    mage3158's user education application! [PENDING]

    Thank you I hope so too.
     
  7. Unread #4 - Jul 7, 2007 at 4:02 AM
  8. el-loco-uno
    Joined:
    Mar 3, 2007
    Posts:
    1,219
    Referrals:
    0
    Sythe Gold:
    0

    el-loco-uno Guru
    Banned

    mage3158's user education application! [PENDING]

    Nice job mage, looks really good.
     
  9. Unread #5 - Jul 7, 2007 at 7:04 AM
  10. Quhx
    Joined:
    Jan 21, 2007
    Posts:
    887
    Referrals:
    0
    Sythe Gold:
    0

    Quhx Apprentice
    Banned

    mage3158's user education application! [PENDING]

    One of the better applications this week :D
    Hope you get accepted, don't think its ripped, didn't find anything :p
     
  11. Unread #6 - Jul 7, 2007 at 10:08 AM
  12. Trag1c The second
    Joined:
    Jan 22, 2007
    Posts:
    436
    Referrals:
    0
    Sythe Gold:
    0

    Trag1c The second Forum Addict

    mage3158's user education application! [PENDING]

    Interesting guides, detailed...Excellent. Hope you get accepted. I was planning on re-applying with my old guides, and 5 more, but I'll have to make a different fifth one.. I was going to do the logmein thing for the wii.
     
  13. Unread #7 - Jul 7, 2007 at 10:45 AM
  14. -------owned-------
    Joined:
    Jan 27, 2007
    Posts:
    1,225
    Referrals:
    0
    Sythe Gold:
    0

    -------owned------- Guru
    Banned

    mage3158's user education application! [PENDING]

    My vote for this is a no. HTML has been made many times, and it's a little obvious that you want to be an UE just for the rank. Also, you didn't say anything about posting guides in your 100 words.
     
  15. Unread #8 - Jul 7, 2007 at 11:19 AM
  16. Quhx
    Joined:
    Jan 21, 2007
    Posts:
    887
    Referrals:
    0
    Sythe Gold:
    0

    Quhx Apprentice
    Banned

    mage3158's user education application! [PENDING]

    Change your 100 words ;) You say like 3 times the same, on an other way :)

    -I want to help people, and want them to show my rank
    -People can ask me questions as they see my rank
    -I'm doing it for the rank, but helping people is the main reason

    I'd change those 100 words :p
     
  17. Unread #9 - Jul 7, 2007 at 11:24 AM
  18. mage3158
    Joined:
    Jan 27, 2007
    Posts:
    2,415
    Referrals:
    0
    Sythe Gold:
    330
    Discord Unique ID:
    148244190378196992
    Discord Username:
    Crabby#0989
    Not sure if srs or just newfag...

    mage3158 Grand Master

    mage3158's user education application! [PENDING]

    Ya ya, I'm changing them now.
     
  19. Unread #10 - Jul 7, 2007 at 12:22 PM
  20. ImAFool
    Joined:
    Jul 15, 2006
    Posts:
    1,497
    Referrals:
    1
    Sythe Gold:
    5

    ImAFool Guru

    mage3158's user education application! [PENDING]

    Nice, I like number 4. A lot. :)
     
  21. Unread #11 - Jul 7, 2007 at 4:55 PM
  22. mcnuggetman
    Joined:
    Dec 21, 2005
    Posts:
    2,080
    Referrals:
    1
    Sythe Gold:
    0

    mcnuggetman Grand Master
    Banned

    mage3158's user education application! [PENDING]

    hmm its ok guide could be alot better consider its you mage
     
  23. Unread #12 - Jul 7, 2007 at 8:57 PM
  24. mage3158
    Joined:
    Jan 27, 2007
    Posts:
    2,415
    Referrals:
    0
    Sythe Gold:
    330
    Discord Unique ID:
    148244190378196992
    Discord Username:
    Crabby#0989
    Not sure if srs or just newfag...

    mage3158 Grand Master

    mage3158's user education application! [PENDING]

    Glad you liked it. =)
    Thank you!
    =D
     
  25. Unread #13 - Jul 7, 2007 at 10:39 PM
  26. buying_40_att_pure
    Joined:
    Apr 29, 2007
    Posts:
    470
    Referrals:
    0
    Sythe Gold:
    0

    buying_40_att_pure Forum Addict

    mage3158's user education application! [PENDING]

    gl on UE mage I love the app.
     
  27. Unread #14 - Jul 8, 2007 at 12:17 AM
  28. SSBM best gam3
    Referrals:
    0

    SSBM best gam3 Guest

    mage3158's user education application! [PENDING]

    nice job thanks for spending your time to help users of the sythe community
     
  29. Unread #15 - Jul 8, 2007 at 11:48 AM
  30. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    mage3158's user education application! [PENDING]

    Dear mage3158,

    Thank you for applying to be a part of the User Education team. Your application has been viewed, and is set to Pending. Presently, a poll on whether the User Education team feels your application should be approved or denied has been created.

    If at any point you desire to change something in your application, simply inform us, via post, of what changes occurred. Sometimes the smallest tweak can change a User Educator's vote. Should you wish to withdrawal your application at any time, please notify a Head User Educator, and they will remove it.

    Again, good luck on being accepted.

    Pending.
     
< firecaping for free | angry nintendo nerd! >

Users viewing this thread
1 guest


 
 
Adblock breaks this site