Results 1 to 3 of 3

Thread: n00b at work!! help!! ftp, flash etc

  1. #1
    hugh.jeego's Avatar Poster BT Rep: +3
    Join Date
    May 2005
    Posts
    86
    Hello,

    I'll start by saying i am a complete n00b when it comes to creating web pages. I have had a web page for a year (unused) but it was some free template that i got, and i edited it in frontpage etc.

    Now we have started to do some html in school, and i have created very basic website, as a small starter html project.

    I created the site completely in notepad as the exercise was teaching us html, not how to create a really flashy site...anyway. Seeing as i already have a domain and webhost, i am gonna upload my new site to my unused web host, using smart FTP.

    For those of u that are still reading, here are the questions:

    1. How does i create flash video's and display them in my site

    2. How do i use my server to host files for people to download (small volumes of people/traffic. Like right click, save as, etc.....

    Thanks, any help would b appreciated.
    i'm contantly confused

  2. Internet, Programming and Graphics   -   #2
    orcutt989's Avatar Blargh
    Join Date
    Dec 2003
    Location
    States
    Posts
    2,186
    To create flash videos you are going to need Macromedia Flash, any version. You will import your video into the program, and then save it as a flash file. Then you are going to have to embed this flash file in your webpage, google around and you will find out how to do this.

  3. Internet, Programming and Graphics   -   #3
    tesco's Avatar woowoo
    Join Date
    Aug 2003
    Location
    Canadia
    Posts
    21,669
    HTML Code:
    <object width="550" height="400">
    <param name="movie" value="somefilename.swf">
    <embed src="somefilename.swf" width="550" height="400">
    </embed>
    </object>
    For embedding flash into html.

    You need the height and width in both the embed AND object tags, because apparantly IE recognizes one and netscape recognizes the other.

    To host files for others just upload it to the server, and put a link.
    HTML Code:
    <a href="file.ext">Text</a>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •