A Flash Developer Resource Site

Results 1 to 13 of 13

Thread: Beg/Tutorials/P-l-e-a-s-e

  1. #1
    Junior Member
    Join Date
    Dec 2004
    Posts
    5

    Beg/Tutorials/P-l-e-a-s-e

    Hey, new to the Flash world. Can anyone recommend a good 'how to create a web site with flash' tutorial ?

    Thank you & happy holidays,

    -- Grace

  2. #2
    did0bib chero's Avatar
    Join Date
    Jun 2004
    Location
    in a bar, under the sea
    Posts
    751
    I don't believe it... I think I've posted this same url three times in the last two days...
    Well, this is (in my opinion) the best beginners tutorial on that subject:
    Kirupa.com - full flash site
    Enjoy
    (edit): You don't have to beg, asking should suffice.
    Happy holidays 2u2
    Last edited by chero; 12-22-2004 at 06:17 PM.

  3. #3
    oldman from the east hodx's Avatar
    Join Date
    Mar 2004
    Location
    maryland
    Posts
    118
    this site has some flash

    http://www.developingwebs.net/flash/
    old man from maryland

  4. #4
    Senior Member pellepiano's Avatar
    Join Date
    Feb 2000
    Location
    Stockholm, Sweden
    Posts
    15,151
    Heres a short one.

    Many Flash sites today have each section as a separate swf file. The first and main file is the navigation and some graphics. The rest is loaded only when needed.

    So lets say you creat your navigation fla first with some nice buttons and a area that is left empty, for the purpose of loading the external files into it.

    Heres the story on loading external files.

    There are two ways of loading external files into Flash. Either you can load swf files into _levels or into movieclip targets.

    _levels only exist in the Flash player. They are like layers but for swf files The Flash player is like a overhead projector where the plastic films you put on top of each other are like the swf files in the player. There are 16000 available levels

    //To load a external swf into a _level from a button. The number 1 being the level to load into.

    on(release){
    loadMovieNum("myExternalFile.swf",1);
    }

    Movieclip targets are what it sounds like. A empty movieclip placed on the stage just for the purpose of loading a swf file into it. The advantage is that you can place it anywhere, manually ( as opposed to swf's in _levels) and also can control what of the objects should be on top or beneath.

    Usually you give the movieclip an instance name of container. ( you give a instance name by selecting the empty movieclip on stage and write the name in the Property Panel )

    //To load a external swf into a target movieclip from a button ( both being on the main timeline ).

    on(release){
    container.loadMovie("myExternalFile.swf");
    }

    The external movie's top left corner will place it self where the empty movieclip is.

    -Pelle Piano
    // Image Gallery
    www.studiobild.com
    // Photo Blog
    http://talesofthepixel.blogspot.com

  5. #5
    Junior Member
    Join Date
    Dec 2004
    Posts
    5

    kirupa.com/tutorila wrong URL, do you know of another ?

    Hey, thanks for your replay. The url you gave me do not work, do you have an alternative url ?



    Originally posted by chero
    I don't believe it... I think I've posted this same url three times in the last two days...
    Well, this is (in my opinion) the best beginners tutorial on that subject:
    Kirupa.com - full flash site
    Enjoy
    (edit): You don't have to beg, asking should suffice.
    Happy holidays 2u2

  6. #6
    Senior Member pellepiano's Avatar
    Join Date
    Feb 2000
    Location
    Stockholm, Sweden
    Posts
    15,151
    The url seems correct but the whole kirupa seems to be down.

    -Pelle Piano
    // Image Gallery
    www.studiobild.com
    // Photo Blog
    http://talesofthepixel.blogspot.com

  7. #7
    Junior Member
    Join Date
    Jan 2005
    Location
    BEDS, UK
    Posts
    4
    Originally posted by chero
    I don't believe it... I think I've posted this same url three times in the last two days...
    Well, this is (in my opinion) the best beginners tutorial on that subject:
    Kirupa.com - full flash site
    Enjoy
    (edit): You don't have to beg, asking should suffice.
    Happy holidays 2u2
    Hi, just wanted to thank you for providing this link. Its a great site for a n00bie like me.

    Thx again
    Thank you Flash kit for all this great info

  8. #8
    Senior Member
    Join Date
    Aug 2004
    Location
    Earth.
    Posts
    118
    you know you could try flashkit.....may be.
    those who live by the sword are shot by those who don't.

  9. #9
    did0bib chero's Avatar
    Join Date
    Jun 2004
    Location
    in a bar, under the sea
    Posts
    751
    No problem.
    btw, I've put this page up for Teex, told him I'll hook him up with my Bookmarks on flash and other web resources, You might wanna check it out, it has some 30 or so links w/ short explanations, about 20 on flash alone:

    Flash - HTML - Js resources

    Might be useful

  10. #10
    Junior Member
    Join Date
    Dec 2004
    Posts
    5
    Hey, ya very helpful. Thank you so much. gs

  11. #11
    did0bib chero's Avatar
    Join Date
    Jun 2004
    Location
    in a bar, under the sea
    Posts
    751

  12. #12
    Junior Member
    Join Date
    Jan 2005
    Location
    san diego
    Posts
    29

    you are sweet

    thanks for these links=P I wonder if you are still single. haha.



    Originally posted by chero
    No problem.
    btw, I've put this page up for Teex, told him I'll hook him up with my Bookmarks on flash and other web resources, You might wanna check it out, it has some 30 or so links w/ short explanations, about 20 on flash alone:

    Flash - HTML - Js resources

    Might be useful

  13. #13
    did0bib chero's Avatar
    Join Date
    Jun 2004
    Location
    in a bar, under the sea
    Posts
    751
    Originally posted by chvrnt
    thanks for these links=P I wonder if you are still single. haha.
    Unfortunately Hamsters Den is in a whole different continent from San Diego.
    Still, if I ever visit the US, I'll have my people contact your people.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center