problem with components

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

  1. #1

    Default problem with components

    Hi
    I made a sample chat application with following components.
    simpleconnect, chat usercolor.
    chat component is working, it is sending and receiving messages.
    but when i change color in the usercolor combobox. the color is not reflected
    in the chat application.
    why , whats the problem.
    I could not understand, since one week i am struggling with it.

    if i run the sample_videoconference file it is working properly, only when i
    drag new components and make a new application , my combobox components are not
    responding, even setbandwidth combobox is also not respond if at runtime i
    change its selection.

    i need help very urgently, already i have wasted lot of time.
    thanks in advance

    regards
    avanthika

    avanthika Guest

  2. Similar Questions and Discussions

    1. Problem with FlashCom Components
      Hello, I'm new to the Flash Communication Server. I have installed it on my machine but I don't know to place the FlashCom Components because I...
    2. MediaDisplay components problem
      Hi all I'm looking to access to FLVplayer class properties? to change somme property and to access onStatus event of the netStream component ? I...
    3. components leave frame?many got this problem
      Now its time that anyone hopefully from macromedia makes a clear statement to this problem, which affects many customers and have cost me already 1...
    4. Access to uninstalled components (problem)
      hi, i have an upload component and i have tested it on my local system and there was no problem. but u should install it to your server to use it...
    5. MX 2004 (blank components problem)
      Not sure if you found the answer to this problem , but I have had the same problem. If you found an answer please let me know. My 2004 check box...
  3. #2

    Default Re: problem with components

    Hi all,

    I got to know what was the problem.
    I am working on Flash player 7 ,
    if i change the player version to 6 , it is working.

    I think some declarations in the components code is not working in Flash
    Player 7.

    what i have to change in the code , so that it will working in flash player 7.

    regards
    avanthika


    avanthika Guest

  4. #3

    Default Re: problem with components

    Hi,

    I got to know where the code is not executing

    in the FCComboBox movieclip :

    FComboBoxClass.prototype.fireChange = function()
    {
    this.lastSelected = this.getSelectedIndex();
    if (!this.editable) {
    this.topLabel = this.getSelectedItem();
    this.fLabel_mc.drawItem(this.topLabel, true);
    } else {
    this.value=this.getSelectedItem().label;
    this.fLabel_mc.setLabel(this.value);
    }
    this.executeCallback();
    }

    //-----------------------

    this.executeCallback() is not called in FlashPlayer 7.

    so what i did is instead of above line i have directly called the
    this._parent.doChange() // now each time i change the color in usercolor
    combobox it is working correctly.

    but the problem is there is one more combo box for setbandwidth,
    for that i have to call doSettings(comboObj);

    as these are components, for both the combo boxes the class file is same.

    is there any common code to replace " this.executeCallback(); " , so
    that it will execute for both .

    thanks in advance

    regards
    avanthika



    avanthika 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