A Flash Developer Resource Site

Search:

Type: Posts; User: YWNM

Page 1 of 18 1 2 3 4

Search: Search took 0.14 seconds.

  1. Thread: Connecting issues

    by YWNM
    Replies
    2
    Views
    766

    Someone has have of used the developer edition...

    Someone has have of used the developer edition succesfully? Whats the correct rtmp string?
  2. Thread: Connecting issues

    by YWNM
    Replies
    2
    Views
    766

    Connecting issues

    Hello,

    I'm having issues.

    It's been awhile since I've done FCS work. Although it's now FMS2.

    I have downloaded the developer edition of FMS2 and have it running on my computer. I have a...
  3. Replies
    5
    Views
    399

    Thanks a_modified_dog works perfectly.

    Thanks a_modified_dog works perfectly.
  4. Replies
    1
    Views
    1,069

    Check out...

    Check out http://livedocs.macromedia.com/flash/8/main/00004172.html and
    http://livedocs.macromedia.com/flash/8/main/00004171.html

    inside of the 'on' statements is where you would set your...
  5. Replies
    2
    Views
    447

    There are several ways of doing this. Have you...

    There are several ways of doing this. Have you looked in the tutorials section here at Flashkit?
  6. You can dynamically call on external files, html,...

    You can dynamically call on external files, html, text and images.

    http://livedocs.macromedia.com/flas...e=00000284.html
    is a help file on bringing a external text file. With some simple...
  7. Replies
    5
    Views
    399

    on (rollOver) { move = true; } on (rollOut) {...

    on (rollOver) {
    move = true;
    }
    on (rollOut) {
    move = false;
    }
    if (move == true) {
    rate = 25;
    _root.test.logo1._x = - rate + _root.test.logo1._x;
    _root.test.logo2._x = - rate +...
  8. Thread: Sound

    by YWNM
    Replies
    2
    Views
    498

    within a 'on' statement you can have as many...

    within a 'on' statement you can have as many commands as you want.
    There is no way to say all external files perform certain function without listing them name by name.



    on(release) {...
  9. Replies
    2
    Views
    612

    Have a look at...

    Have a look at http://livedocs.macromedia.com/flash/8/main/00001591.html for integrating PHP and with Flash.

    for the second thing, you want a text message to appear on top if the video? Yes this...
  10. Thread: Flash 8 training

    by YWNM
    Replies
    19
    Views
    818

    While DVDs are great for covering general stuff,...

    While DVDs are great for covering general stuff, the best way to learn is to simply do it. In your position you will have to try to seperate you research and learning time seperate from your...
  11. Replies
    2
    Views
    510

    I didn't open any of the Zips, but the resizeing...

    I didn't open any of the Zips, but the resizeing would probably be simplest if you passed the uploaded file through to PHP or uploaded it through PHP and had it resize to the 2 sizes you need and...
  12. Thread: upload files ?

    by YWNM
    Replies
    4
    Views
    450

    Depends, there are mutiple ways of doing what I...

    Depends, there are mutiple ways of doing what I think you want to accomplish.

    You can dynamically call on external files, html, text and images.
    ...
  13. Replies
    1
    Views
    379

    have you tried using the getBytesLoaded() and...

    have you tried using the
    getBytesLoaded() and getBytesTotal()?

    you will need 3 frames for the check.
    if (holder_mc.getBytesLoaded == holder_mc.getBytesTotal) {
    gotoAndPlay(Frame name or number...
  14. Replies
    3
    Views
    586

    create a new variable. I'll call it pressed. ...

    create a new variable. I'll call it pressed. It's basically going to count how many times 'b' has been pressed.


    pressed = 0;
    Put that at the beginning of the _root, so that it only happens...
  15. Replies
    2
    Views
    433

    Using Intervals you can set a time delay. Then...

    Using Intervals you can set a time delay.

    Then you can set some set points for it to appear or use random() for random results. Best use would probably to define spots for it to appear and use...
  16. Replies
    5
    Views
    399

    mouseOver not working

    Ok, the following code works as expected.



    on (rollover) {
    rate = 25;
    _root.test.logo1._x = - rate + _root.test.logo1._x;
    _root.test.logo2._x = - rate + _root.test.logo2._x;...
  17. Thread: flash chat+video

    by YWNM
    Replies
    27
    Views
    4,991

    He provided you with a prrof of concept. To...

    He provided you with a prrof of concept.

    To add the password protection just do a search of 'database password login' without the ' and you wil come up with 120 reuslts. Some better then others...
  18. Thread: flash chat+video

    by YWNM
    Replies
    27
    Views
    4,991

    that is a public app. The best way would be to...

    that is a public app. The best way would be to use a username and password database that the Flash app would check to give people access. SO that it would be easy to control access if you gets lots...
  19. Replies
    3
    Views
    701

    load it into a dynamic text box and define the...

    load it into a dynamic text box and define the text box as HTML text.

    Have a look at:
    http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary745.html
  20. So far no one has come out with really good FCS...

    So far no one has come out with really good FCS or FMS book yet.

    I highly recommend that you put in a section ising PHP, SQL and Flash. Also XML would be a good topic to cover as Flash can pull...
  21. Replies
    1
    Views
    646

    Tutorials, are your best friend for starting out....

    Tutorials, are your best friend for starting out. Just search, you'll find them.

    You won't get alot out of it unless you have a good knowledge of ActionScript. I don't say this to scare you but...
  22. Don;t forget how to quiery, insert, modify, and...

    Don;t forget how to quiery, insert, modify, and copying Tables

    What kind of expierence will the students have coming in your class?

    And when loading data you should go over the different types...
  23. Thread: PhP form issue

    by YWNM
    Replies
    3
    Views
    629

    have you verified that PHP is able to send email?...

    have you verified that PHP is able to send email? It is a option that can be set.
  24. you wil want to use a setInterval on the Start...

    you wil want to use a setInterval on the Start Record button to trigger a Stop record action.
  25. jonas have you ever passed variables with Flash...

    jonas have you ever passed variables with Flash before either in or out of Flash. It the same as all the others.
Results 1 to 25 of 428
Page 1 of 18 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center