A Flash Developer Resource Site

Search:

Type: Posts; User: birdgenj

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Thread: Webcam Video?

    by birdgenj
    Replies
    2
    Views
    543

    Thanks for the quick reply. That would definately...

    Thanks for the quick reply. That would definately explain why it was difficult to figure out... but hey what's $499US... hefty price tag for some users, but it definately has some nice features.
    ...
  2. Thread: Webcam Video?

    by birdgenj
    Replies
    2
    Views
    543

    Hello all, I'm new to flash MX, and am...

    Hello all,

    I'm new to flash MX, and am looking at some of the new features.

    Does anyone know how to capture webcam video in the goal of creating a chat client/server that can transmit video...
  3. ... back again to join the cause...

    I'd been gone for a bit... the 800MHz wasn't quite enough to work on flash and run the cancer program at the same time.

    But this new AMD Athalon XP 1800+, 512DDR RAM, GeForce3 128DDR RAM seems to...
  4. Replies
    10
    Views
    860

    No Problem!

    No prob... anytime... (that I'm not too busy... )

    ;)
  5. Replies
    5
    Views
    656

    If you were to have a web server, with the cgi,...

    If you were to have a web server, with the cgi, perl or php script on it, and link using the LoadVariables() function from flash, you could have it work from a CD (assuming internet access of...
  6. Replies
    8
    Views
    821

    I've done some simple work with a buddy in poser...

    I've done some simple work with a buddy in poser 4, but if you need it, I should be able to fire a quick question over to him...
  7. Replies
    8
    Views
    821

    New Board Server!

    ok,

    you need to make a new blank movie clip (mc) and inside it, on frame 1 of this mc you place:



    loaded = _root.getBytesLoaded;
    // Size Loaded
    kbs = (loaded-lastloaded)/100;...
  8. Replies
    5
    Views
    550

    if (_root.selected == "_root.swf1") { ...

    if (_root.selected == "_root.swf1") {
    _root.r1set = "255";
    }
    if (_root.selected == "_root.swf2") {
    _root.r2set = "255";
    }


    I think that the variables aren't sending at all, which would...
  9. Replies
    3
    Views
    453

    Yeah, actually I didn't mean to post that...

    Yeah, actually I didn't mean to post that message...
    the original code works fine for me.

    Sorry about that!
  10. Replies
    2
    Views
    629

    have you tried setting the height and width...

    have you tried setting the height and width parameters of the object to:

    WIDTH=100%
    HEIGHT=100%

    make sure that you change both values twice, (they appear twice in the HTML file)

    Hopefully...
  11. Replies
    5
    Views
    550

    To target the main swf's root use "_root" --...

    To target the main swf's root use "_root"
    -- level0 doesn't work, because sometimes flash will think that you are trying to target level0 of the loaded swf, which is obviously not the root of the...
  12. Replies
    1
    Views
    612

    From the actionscript dictionary: ...

    From the actionscript dictionary:


    if(_root.ball, hittest(_root.square)){
    trace("ball intersects square");
    }



    -- so if you were to put many of these if statements in the movie clip, you...
  13. Replies
    5
    Views
    550

    Egality signs in if statements are: == (two...

    Egality signs in if statements are:

    ==

    (two equal signs.)

    Just add that in, and it should fix your problem!

    :)
  14. Replies
    3
    Views
    453

    What's happening is that the clip doesn't stop at...

    What's happening is that the clip doesn't stop at the end, you haven't created code that will do that.
  15. Replies
    0
    Views
    425

    Hello to everyone! Does anyone know if it's...

    Hello to everyone!

    Does anyone know if it's possible to reset the getTimer() function while staying within a movie?

    I'm creating a racing game, and need the time to reload each race, however...
  16. Replies
    8
    Views
    821

    Yeah, That code needs to be placed within a...

    Yeah,

    That code needs to be placed within a movie clip (mc), that is 12 frames long (if your movie is set to 12fps) -- this causes the movie to loop once each second, thus creating the kb/s.
    ...
  17. Could you post the contents of the txt file? --...

    Could you post the contents of the txt file?
    -- sometimes just a single character can cause an error,
    however <a href="">blah</a> shouldn't be a problem.

    For example:

    test=<"a...
  18. Replies
    5
    Views
    791

    No Problem!

    Just in case you didn't notice; or for the benefit of others reading this, what you are doing is creating the php output to be:

    ipaddr=000.000.000.000

    Just the same as the format of a .txt file...
  19. Replies
    5
    Views
    791

    The php function:

    The php function:

    <?php
    function iptoflash(){
    global $REMOTE_ADDR;
    echo 'ipaddr='.$REMOTEADDR;
    }
    ?>

    Now, what you need to do is:
  20. Replies
    8
    Views
    821

    This is possible, but only with another language,...

    This is possible, but only with another language, or cookies.

    I would look into setting a cookie, and then having flash read the cookie when that page loads, and if flash detects the cookie, it...
  21. OK, I think that this is what you mean: ...

    OK,

    I think that this is what you mean:


    input = "Users value";
    existing = "Your Other value";

    on(release){
    ahref = input+" "+existing;
  22. Replies
    5
    Views
    791

    This can't be done simply using flash, however...

    This can't be done simply using flash, however using php or another scripting language it's quite simple.

    $REMOTE_ADDR being the variable in flash for the user's remote address (IP)


    so in...
  23. Replies
    7
    Views
    597

    No Problem!

    No problem,

    we all need help at some point... I just thought I'd throw in my part... ;)

    Good luck with your site! :)
  24. Replies
    10
    Views
    860

    Custa - Here's what's happenning. Your...

    Custa - Here's what's happenning.

    Your variables that are being assigned, are being assigned to movie clips that don't exist at the time of the declaration.

    Only once the mc "Translator" is at...
  25. Replies
    10
    Views
    860

    Re: and

    you need to use the loadVariables command

    loadVariables (url, location);

    where url is the url of the text file that contains the variables, and location being the target to send the variables...
Results 1 to 25 of 183
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center