A Flash Developer Resource Site

Search:

Type: Posts; User: tweekmonster

Page 1 of 14 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    21
    Views
    2,921

    That's like saying that there should be only one...

    That's like saying that there should be only one spoken language. The problem with that is determining which one is the correct one.

    There are zealots for every programming language out there. ...
  2. Replies
    1
    Views
    1,843

    taken from here...

    taken from here http://www.hmug.org/man/1/printf.html



    i'm not sure if they all work in flash, haven't tried them.
  3. Replies
    1
    Views
    782

    i'm almost positive that most of the popular...

    i'm almost positive that most of the popular search engines that matter won't take metatag keywords and descriptions into consideration. take google for instance, as far as i know, it scans the...
  4. Replies
    2
    Views
    598

    i've used these functions forever function...

    i've used these functions forever

    function roundDec(number, decPlaces)
    {
    result = (Math.round(number * Math.pow(10, decPlaces))) / Math.pow(10, decPlaces);
    return result;
    }

    function...
  5. Re: ARRGGHH!!!

    the only safe option for you is to stay off the intarweb.



    oh shi...i think i better get off too :rolleyes:
  6. Re: us patent office strikes again....

    if these guys win anything, i'm gonna build a rocket ship and go somewhere very very far from earth.
  7. Replies
    7
    Views
    890

    oops, my bad :o

    oops, my bad :o
  8. Replies
    5
    Views
    882

    it only says output=error if i go to the page...

    it only says output=error if i go to the page with out submitting the form. after i fill out the fields and hit submit, it says output=sent.

    the reason for the output=error is because no...
  9. Replies
    5
    Views
    882

    the problem i see is: mail('$subject, $body,...

    the problem i see is:
    mail('$subject, $body, $header')

    it should be:
    mail($to, $subject, $body, $header);

    and don't include the apostrophes silly goose ;)
  10. it might be helpful to post the unique domain in...

    it might be helpful to post the unique domain in question, you don't have to post the email though.

    and perhaps your php version.
  11. Replies
    7
    Views
    890

    :confused: i assumed that you were running...

    :confused: i assumed that you were running php+apache on a windows box. so i set up my computer to run php+apache and used exactly what you posted with the exception of changing the one line of php...
  12. Replies
    7
    Views
    890

    instead of: return $values; try: echo...

    instead of:
    return $values;

    try:
    echo $values;

    if that doesn't work, in flash create an onData function

    replydata.onData = function(raw)
    {
  13. Replies
    2
    Views
    330

    what you're doing is just setting "switch" to...

    what you're doing is just setting "switch" to true, not _root.c
    try this:


    _root.a=false;
    _root.b=false;
    _root.c=false;

    function changeIt(obj, v)
    {
  14. if the mouse is not present OR not moving? i'm...

    if the mouse is not present OR not moving? i'm pretty sure you cant tell whether the mouse is present or not. you can only tell if it's moving
  15. i'm not a flash n00b ;) if the AS you posted...

    i'm not a flash n00b ;)

    if the AS you posted is EXACTLY as you have it in your fla, the only problem i see is:

    on (release) {
    _root.myHolder.loadMovie('house');
    _root.onEnterFrame =...
  16. oops, didn't see your edit in the prev post. not...

    oops, didn't see your edit in the prev post.
    not really sure on that one. unloading the movieclip may help. but then again, make sure the file you're loading really does exist. i've never really...
  17. try deleting "loadText" from the "instance name"...

    try deleting "loadText" from the "instance name" field in the property inspector, not the "var" field.

    with the instance name, to set the text youd have to use: loadText.text = 'blah blah'.
    ...
  18. Replies
    1
    Views
    361

    Re: loadVars Question

    lv.sendAndLoad('email.php', lv, 'POST');


    the second argument should be an object that gets variables from the php script
  19. it says its at 100% before you click the button...

    it says its at 100% before you click the button because you're checking the "holder" before anything is loaded into it. so technically, holder's contents are already loaded (i think its 4 bytes for...
  20. when i read "JOB SECURITY" i really thought "PAIN...

    when i read "JOB SECURITY" i really thought "PAIN IN THE ASS". i work for a company that has 300+ clients. our main product is flash based. and just to stay on good terms with our clients we're...
  21. i really need to patent something

    i really need to patent something
  22. Replies
    6
    Views
    1,723

    i made this some time ago ...

    i made this some time ago



    _global.IN_BROWSER = true

    u = unescape (_level0._url.toLowerCase ());
    p = _level0['$version'].substr (0, 3).toLowerCase ();

    // sometimes macs won't have the url
  23. no, but if you had one document with the tags in...

    no, but if you had one document with the tags in 3+ different places that were exactly the same with the exception of the swf file, width and height, the ~100 bytes could mean a world of difference...
  24. is there a patent on how to properly use toilet...

    is there a patent on how to properly use toilet paper? how about the use of chairs on rugs? if not, you bastards better save your money, cuz i'm coming after all of you.

    IMO, using out sourced js...
  25. Replies
    7
    Views
    474

    thanks about the line selection! i'll kick myself...

    thanks about the line selection! i'll kick myself in the ass later if i find it in the documentation.

    as far as the script window:
    http://tweekmonster.org/fk/trapped_as.gif

    with what you said...
Results 1 to 25 of 328
Page 1 of 14 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center