Navigation

    H7

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Leonid
    3. Posts
    L
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by Leonid

    • RE: Text "I am" and "nickname" field mix up…

      I think code

      private function initLabels() : void {
      ....
      this.myUsername.text = this.lang.getSimpleProperty('youText');
      

      inside of JabberCam.as should be wrapped with

      if(!loginScreenEnabled) {
          this.myUsername.text = this.lang.getSimpleProperty('youText');
      }
      
      
      posted in Tech Support
      L
      Leonid
    • RE: Next button

      @'Fabian':

      @'Leonid':

      Unfortunantely I didn't received a solution, but I found a root cause of my problem. It's a defect in code. For those who met the same problem. It's a Null Reference exception in code when it tries to receve reference to camera and call null reference methods. To fix the problem you need to make changes in two places.

      1.```
      private function onStart():void

      if(Camera.getCamera().muted)

      if(Camera.getCamera() && Camera.getCamera().muted)

      2\.```
      private function completeRegistration():void
      ```…
      
        	curCamera = Camera.getCamera(cameraIndex.toString());
      
        	curCamera.addEventListener(StatusEvent.STATUS, onCameraStatus);
        	if(!curCamera.muted != cameraAllowed) {
        		cameraAllowed = !curCamera.muted;
        		cameraChangedStatus();
        	}
      
      replace with
      
        	curCamera = Camera.getCamera(cameraIndex.toString());
        	if (curCamera)
        	{
        		curCamera.addEventListener(StatusEvent.STATUS, onCameraStatus);
        		if(!curCamera.muted != cameraAllowed) {
        			cameraAllowed = !curCamera.muted;
        			cameraChangedStatus();
        		}
        	}
      

      Hallo,

      I've got the same problem. Thanks for your post. However, I can't find where the code is. I got 4.1, too. In which documents do I have to change the code?
      Thanks

      You should use Adobe Flash Builder (look throw the forum to find additional info about it) and import 4.1.fxp into it. Just to view the code you can unzip 4.1.fxp using any archiver and see the file
      \4.1\src\JabberCam.as in it

      posted in Tech Support
      L
      Leonid
    • RE: Can't connect without a camera - even if config is "false"

      @'Fabian':

      Hello,

      I've got a problem with 4.1 version, using stratus.

      When I edit the conifg.php and say with "false" that a camera is not needed to connect, it tells me that connectivity actually was successful…

      ... but my "Find / Next" button cannot be clicked.

      What do I have to do. Many people don't have a camera and won't be able to chat.

      Thanks for your help.
      Fabian

      I had the same problem. See answer here
      http://www.videosoftware.pro/forum/THREAD-Next-button

      posted in Tech Support
      L
      Leonid
    • RE: Next button

      Unfortunantely I didn't received a solution, but I found a root cause of my problem. It's a defect in code. For those who met the same problem. It's a Null Reference exception in code when it tries to receve reference to camera and call null reference methods. To fix the problem you need to make changes in two places.

      1.```
      private function onStart():void

      if(Camera.getCamera().muted)

      if(Camera.getCamera() && Camera.getCamera().muted)

      2\.```
      private function completeRegistration():void
      ```…
      
      		curCamera = Camera.getCamera(cameraIndex.toString());
      
      		curCamera.addEventListener(StatusEvent.STATUS, onCameraStatus);
      		if(!curCamera.muted != cameraAllowed) {
      			cameraAllowed = !curCamera.muted;
      			cameraChangedStatus();
      		}
      
      replace with
      
      		curCamera = Camera.getCamera(cameraIndex.toString());
      		if (curCamera)
      		{
      			curCamera.addEventListener(StatusEvent.STATUS, onCameraStatus);
      			if(!curCamera.muted != cameraAllowed) {
      				cameraAllowed = !curCamera.muted;
      				cameraChangedStatus();
      			}
      		}
      
      posted in Tech Support
      L
      Leonid
    • RE: Next button

      @'JabberCam':

      Please provide a link and CRC version number.

      http://www.virtuletka.com
      CRC version is 4.1
      Here I copied clear version with changes only in config.php
      You can disable webcam and it will work, but if you open this URI from the box where webcam never been installed it is not work.

      posted in Tech Support
      L
      Leonid
    • Next button

      I have a problem with Next button. It stay disabled on boxes w/o web cam even I configured to allow connections w/o cam. It disabled, but user receives text message that he can start to conversate by pressing "Next". Reproducable for 3.6, 4.0, 4.1

      posted in Tech Support
      L
      Leonid
    • RE: Install Red5 on cPanel/WHM (CentOS) server

      @'JabberCam':

      TROUBLESHOOTING
      testing ports: http://YOUR_SERVER_IP:5080/demos/port_tester.html
      *when testing ports, use server IP not localhost, make these ports accept connections: 1935, 1936, 5080, 8088

      You've provided such detailed instructions, but skipped how to make ports accept connections if testing is failed. Please add it, because Linux if new area for me and I can follow step by step instructions only.

      posted in Red5
      L
      Leonid