Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default crazy

    guys:

    this is a highly simplified version of the helloVid app from the oreilly book:

    in the fla:
    stop();

    myID = "";
    nc = new NetConnection();
    nc.setID = function(id){
    myID = id;
    ns = new NetStream(nc);
    }
    nc.connect("rtmp:/helloVideo", userNameInput.text);


    with it, i get a netstream

    with this below though, i don't. which is crazy , cos it's a copy and paste
    job. why?:

    in the fla:
    stop();

    import App;

    var a = new App();


    and as a seperate class file:
    class App {

    var myID = "";
    var nc;

    public function App ()
    {
    nc = new NetConnection();
    nc.setID = function(id){
    myID = id;
    var ns = new NetStream(nc);
    }
    nc.connect("rtmp:/helloVideo", 'myName');
    }
    }

    dubya Guest

  2. Similar Questions and Discussions

    1. slideshow crazy
      Please check out www.minneapolis.edu.. If you have flash 8 player installed it works just fine. If you dont have it upgraded yet, my slideshow goes...
    2. crazy behaviour
      Hi, I'm thring to get a form to respond to slections made in a select control. I'm not going mad it just feels like it - but my form just...
    3. Crazy PNG files...
      I have a Publisher file that was created with Publisher 2000. It is a website and contains a variety of text files and pictures. When I loaded it...
    4. I think i am going crazy
      i have made a file called blah.php containing <?php print "<b>this is a test " ?> i open the page in a browser and i see a blank page i...
    5. IE 5.0 make me crazy...
      Hi, I have an aspx page with a Graph (teechart) and a button (export). The page is automatically updated by <META HTTP-EQUIV="Refresh"...
  3. #2

    Default Re: crazy

    maybe i'm just a fool. this is no fun at all though. if i can't get even the
    simplest thing like this to work then why even try to go on further? this is
    making me feel like sh#t. :(

    this is no place to get emotional you all probably think. i would normally too
    i expect. but ffs, how much more basic can it get before it works?

    yours having-no-fun-at-all

    dubya Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139