ServerSocketConnection does not work on 9000 "BOLD"?

Hello

I'm developing an application for personal use on my new BB. I want to open a ServerSocketConnection on the "BOLD". I want BB to get the first free port, so I use "socket: / /" as the connection (without port number) string. It works on my nokia E51, but on the BB, I get a net.rim.device.cldc.io.utility.MalformedURLException.

This is my code:

       try {         sc.log("Creating server connection");         ServerSocketConnection server = (ServerSocketConnection)Connector.open("socket://");          sc.log("Server connection created; registering listener to server");          sc.setListener(server.getLocalPort());            SocketConnection client = null;           while (true) {                sc.log("Opening connection");             client = (SocketConnection) server.acceptAndOpen();               SonosEventThread thread = new SonosEventThread();             thread.socket = client;               thread.start();           }

//         client.setSocketOption(DELAY, 0);//           client.setSocketOption(KEEPALIVE, 0);     } catch (IOException e) {         // TODO Auto-generated catch block            sc.log(e.getClass() + ": " + e.toString() + " - " + e.getMessage());

            e.printStackTrace();      } catch (Exception e) {           sc.log(e.getClass() + ": " + e.toString() + " - " + e.getMessage());

      }

the log output:

192.168.1.8: Creating server connection
192.168.1.8: class java.lang.IllegalArgumentException: java.lang.IllegalArgumentException: net.rim.device.cldc.io.utility.MalformedURLException: Missing everything past initial '//' - net.rim.device.cldc.io.utility.MalformedURLException: Missing everything past initial '//'

so I add a Port number to the mix

.ServerSocketConnection server = (ServerSocketConnection)Connector.open("socket://:9876");.

and then, the log shows:

192.168.1.8: Creating server connection
192.168.1.8: class javax.microedition.io.ConnectionNotFoundException: javax.microedition.io.ConnectionNotFoundException - null

so I'm not able to get a ServerSocketException at all. I scoured the forums a little and sees only people had work more that then I'd be very grateful if someone could tell me what I'm missing here...

TIA,

Willem

I'll post what works for me, hope this helps other problems similar to mine:

ServerSocketConnection server = (ServerSocketConnection)Connector.open("socket://:;interface=wifi;deviceside=true");

see you soon,

Willem

Tags: BlackBerry Developers

Similar Questions

  • Video recorder does not work after a while to 9700 and 9000

    Hello

    When I try to record videos on my series of blackberry bold 9700 and 9000 it does not work properly.

    It record video for a while after that he'll I'll stop recording. I am trying to use the socket for the recording of the video connection. My code works fine on storm9550.and also I added a playerlistener and in the events of update of the player, it shows event as error and event day that null.and when I try to change the image of the camera or pass command to any other fields it will stop recording

    I enclose my code as well as this.

    Thanks and greetings

    Rahul TERTULIEN

    Mobile applications developer

    import java.io.IOException;
    import java.io.OutputStream;

    Import javax.microedition.io.Connector;
    Import javax.microedition.io.SocketConnection;
    Import javax.microedition.media.MediaException;
    Import javax.microedition.media.Player;
    Import javax.microedition.media.PlayerListener;
    Import javax.microedition.media.control.GUIControl;
    Import javax.microedition.media.control.RecordControl;
    Import javax.microedition.media.control.VideoControl;

    Import net.rim.device.api.system.Backlight;
    Import net.rim.device.api.system.Bitmap;
    Import net.rim.device.api.system.Display;
    Import net.rim.device.api.ui.Field;
    Import net.rim.device.api.ui.MenuItem;
    Import net.rim.device.api.ui.UiApplication;
    Import net.rim.device.api.ui.component.BitmapField;
    Import net.rim.device.api.ui.component.ButtonField;
    Import net.rim.device.api.ui.component.EditField;
    Import net.rim.device.api.ui.container.HorizontalFieldManager;
    Import net.rim.device.api.ui.container.MainScreen;
    Import net.rim.device.api.ui.container.VerticalFieldManager;

    /*
    * Class for recording the video
    * Date: 05/10/2010
    *
    */

    SerializableAttribute public class RecordingUi extends form {}
        
    saving Boolean private volatile;
    Private player _player;
    Private RecordControl _recordControl;
    private VideoControl videoControl.
    private OutputStream outputStream = null;
    SocketConnection Private SqlConnection connection = null;
    Private boolean started = false;
    videoField private sector;
    Private boolean backLite = true;
            
    int i;

    public RecordingUi() {}
                
    Super (NO_VERTICAL_SCROLL);
    this.getMainManager () .setBackground (BackgroundFactory.createSolidBackground (Color.BLACK));
    setTitle ("video");
    i = 0;
                    
    ToolBarMenuButton.AddMenuItem (new StartRecording());
    ToolBarMenuButton.AddMenuItem (new StopRecording());
    addMenuItem (menuItem);
    {if(backLite==true)}
    new BackliteThread (m:System.NET.HttpListener.start ());
    }
    }
            
    private class BackliteThread extends Thread {}
              
    int i = Backlight.getTimeoutDefault ();
    int j = 1;
    public void run() {}
    do
    {
    If ((Display.getProperties)
    (& Display.DISPLAY_PROPERTY_REQUIRES_BACKLIGHT). = 0)
    {
    Backlight.Enable (true, I);
    }
    try {}
    Sleep (i);
    } catch (InterruptedException e) {}
    e.printStackTrace ();
    }
    I have = Backlight.getTimeoutDefault ();
    } While (backLite == true);
                    
    }
                
    }
            
    private class StartRecording extends MenuItem {}
                
    public StartRecording() {}
    Super ("Start recording", 0, 100);
    }

    public void run() {}
    Try
    {
    VideoRecorderThread newRecorderThread = new VideoRecorderThread();
    newRecorderThread.start ();
    } catch (Exception e) {}
    ErrorLog.addMsg (try ());
    }
    }
    }
            
    Class menu item to stop recording
                    
    private class StopRecording extends MenuItem {}
                
    public StopRecording() {}
    Super ("Stop recording", 0, 100);
    }

    public void run() {}
    try {}
    If (record! = false)
    {
    new StopThread (m:System.NET.HttpListener.start ());
    }
    } catch (Exception e) {}
    ErrorLog.addMsg (try ());
    }
    }
    } //End of the Stop Menu item
            
            
    Class for initialization of player and video recording and setting the Socket connection

    private class videorecorderthread extends Thread implements {PlayerListener}
                
    public void run() {}
    try {}
    Connection = (SocketConnection) Connector.open ("socket://192.168.1.86:1234;deviceside=true",Connector.WRITE,false);)
    outputStream = connection.openOutputStream ();
    _player = javax.microedition.media.Manager.createPlayer ("capture://video?encoding=video/3gpp&mode=standard");
    _player. Realize();
    _player.addPlayerListener (this);
    videoControl = _player.getControl ("VideoControl") (alarm);
    {if(videoControl!=null)}
    videoField = videoControl.initDisplayMode (Field) (GUIControl.USE_GUI_PRIMITIVE, "net.rim.device.api.ui.Field");
    }
    UiApplication.getUiApplication () .invokeLater (new Runnable() {}

    public void run() {}
                               
    try {}
    _player.prefetch ();
    _player. Start();
    ErrorLog.addMsg ("player State =" + _player.getState ());
    Add (videoField);
    _recordControl = (RecordControl) _player.getControl ("RecordControl");
    _recordControl.setRecordStream (OutputStream);
    _recordControl.startRecord ();
    {if(Started==false)}
    started = true;
    Add (new RecordControlScreen());
    }
                                    
    } catch (Exception e) {}
    ErrorLog.addMsg (try ());
    }
    }

    });
                       
    record = true;
                        
    } catch (IOException e) {}
    ErrorLog.addMsg (try ());
    }
    {} catch (e MediaException)
    ErrorLog.addMsg (try ());
    }
    }

    ' Public Sub playerUpdate (a player, event in the chain,
    EventData Object) {}
    ErrorLog.addMsg ("Eventdata code" + eventData);
    ErrorLog.addMsg ("the event deliverred" + event);
    }
              
    } //End of wire recorder
            
            
            
    /*
    Stop thread to stop recording and frees the resources
    * Date: 05/10/2010
    *
    */
            
    private class StopThread extends Thread {}
                
    public StopThread() {}
                    
    If (_recordControl! = null) {}
    _recordControl.stopRecord ();
    ErrorLog.addMsg ("inside the wire of the judgment");
    try {}
    _recordControl.commit ();
    _player. Close();
    outputStream.close ();
    deleteAll();
    Connection.Close;
    record = false;
    started = false;
    backLite = false;
                             
    } catch (Exception e) {}
                            
    ErrorLog.addMsg (try ());
    }
                       
    }
    }
    } //End of off wire
          
        
    /*
    * Class of UI elements and display chat messages
    * Date: 05/10/2010
    *
    */

    class RecordControlScreen extends VerticalFieldManager {}
            
    See Boolean;
    Byte [] data;
            
    HFM HorizontalFieldManager;
    VerticalFieldManager value for money;
    EditField cat;
            
    onPlay private bitmap;
    offPlay private bitmap;
    onStop private bitmap;
    offStop private bitmap;
            
    Private BitmapField play;
    Private BitmapField stop;
            
    public RecordControlScreen() {}
                
    ErrorLog.addMsg ("inside RecordControlscreen");
                
    onPlay = Bitmap.getBitmapResource ("onPlay.png");
    onStop = Bitmap.getBitmapResource ("onStop.png");
                
    offPlay = Bitmap.getBitmapResource ("offPlay.png");
    offStop = Bitmap.getBitmapResource ("offStop.png");
                
    display = false;
    data = new byte [1024];
                
    HFM = new HorizontalFieldManager();
    VFM = new VerticalFieldManager();
    Cat = new EditField();
                
    play = new BitmapField (onPlay, BitmapField.FOCUSABLE |) ButtonField.CONSUME_CLICK) {}
                    
    protected boolean navigationClick (int status, int time) {}
    ErrorLog.addMsg ("inside the click of button");
    play.setBitmap (onPlay);
    Invalidate();
    try {}
    UiApplication.getUiApplication () .invokeLater (new Runnable() {}
                                    
    public void run() {}
    try {}
    ErrorLog.addMsg ("inside the run method of the click on the button");
    RecordingUi.VideoRecorderThread recorderThread = new VideoRecorderThread();
    recorderThread.start ();
    } catch (Exception e) {}

    ErrorLog.addMsg (try ());
    }
                                            
    }
    });
                                
    } catch (Exception e) {}
    ErrorLog.addMsg (try ());
    }
    super.navigationClick (status, time);
    Returns true;
    }
                    
    protected void onFocus (int direction) {}
    this.setBitmap (onPlay);
    Invalidate();
    }
                    
    protected void onUnfocus() {}
    this.setBitmap (offPlay);
    Invalidate();
    }
    };
                
                
                
    stop = new BitmapField (onStop, BitmapField.FOCUSABLE |) ButtonField.CONSUME_CLICK) {}
                    
    protected boolean navigationClick (int status, int time) {}
                        
    stop.setBitmap (offStop);
                        
    UiApplication.getUiApplication () .invokeLater (new Runnable() {}
                                
    public void run() {}
    ErrorLog.addMsg ("inside the run method of the click on the button");
    RecordingUi.StopThread stopThread = new StopThread();
    stopThread.start ();
    }
    });
                        
    Returns true;
    }
                    
    protected void onFocus (int direction) {}
    this.setBitmap (onStop);
    Invalidate();
    }
                    
    protected void onUnfocus() {}
    this.setBitmap (offStop);
    Invalidate();
    }
                    
    };
                
    HFM. Add (Play);
    HFM. Add (Stop);
    VFM. Add (CAT);
    Add (VFM);
    Add (HFM);
    }
            
    } //end of RecordControl Ui screen
        
        
    public boolean onClose() {}
    new StopThread (m:System.NET.HttpListener.start ());
    If (_player! = null) {}
    _player = null;
    backLite = false;
    _recordControl = null;
    videoControl = null;
    }
    Return super.onClose ();
    }
          
    Menu item to find errors
            
    MenuItem menuItem = new MenuItem("Errors",110,110) {}

    public void run() {}
                    
    UiApplication.getUiApplication () .pushScreen (new ErrorLog());
    }
    }; End of the Menu item
            
                
    }

    It worked. There were a few problems with my Simulator

  • Tecra 9000: SD card reader does not work with XP

    I've made some progress on this issue, it seems that Cardbus devices cannot share IRQS, although the main problem is that FFDFB200-FFDFB3FF memory address is shared by the SD card controller and device memory SD card. Unless we find a way to edit the registry to resolve this conflict of memory, the simple answer is that the SD card reader does not work under XP.

    I think that it would take a major surgery of the register or re-writing of drivers to move the address of memory used by the SD card device, I always work on this for now.

    Can someone support Toshiba or Toshiba Marketing explain to me why my Tecra T9100 has a "Designed for Windows XP and Windows 2000" sticker on it, when Toshiba does fully support XP on the 9000 series?

    David

    [Edited by: admin]

    Hi David

    Unfortunately, I n t think that you will find here a Toshiba marketing person or other departments. It is ONLY a user to user forum.

    What you say, it is simply NOT true.

    The Tecra 9000 was delivered with 3 different OS.
    It was delivered with Windows XP Pro, W2k and Win98. You can order all the images of this Toshiba home Toshiba service partner. That's why Tecra 9000 does support Windows XP!
    Tecra 9100 has been bundled with Windows XP and Windows 2000 and also supports Windows XP!

    Of course, there are different models with a different hardware configuration, but all supports Windows XP.

    I put t know why you get this error message or why you cannot use the SD card, but I guess you don t use the image of Toshiba. That's why you installed your operating system isn't properly. Because you are a newbie you don t know the Toshiba all the driver installation must be done in the right order and all Microsoft QFEs must be installed also.

    As you can see you must pay attention to many important things if you want to manually install the operating system.

    Good day

  • Case of pocket torch blackBerry Smartphones does not work for Bold 9780

    Nice day

    I bought a BlackBerry Torch 9800 (ACC32838301) Pocket case, TELUS, but it useless for my flashlight. I want my wife to use this case for his Bold 9780 but the magnet does not work by putting the camera in mode 'sleep'. Why is this? The case is a little big, but still fits well on the Bold 9780. Is the magnet misaligned a very little bit for the "BOLD"?

    I use an old case of leather case that has worked for my old Curve 8330, Bold 9780 and Torch 9800. So why not this new business. Y at - it something wrong with my case specifically, or if it is not designed to work for the "BOLD"?

    http://www.BestBuy.ca/en-CA/product/BlackBerry-BlackBerry-Pocket-case-for-9800-torch-acc32838301-bla...

    Thank you.

    M.

    Hello

    The placement of the magnet is different for different models of BBs. Some are interchangeable, the more I think are not. Therefore, it is always best to use a case that is made for the specific model of BB.

    Good luck!

  • Camerademo does not work on the curve 8900

    I tried to integrate a camera in an application that runs only on the bold 9000 and 8900 curves.  My code based on this sequel to the KB article works absolutely fine on the "BOLD".

    How - to take a snapshot using the built-in camera to a BlackBerry smartphone
    Article number: DB-00667
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/1089414/How_To...

    However, it does not work on the Curve 8900.  Initially I had a problem with the viewfinder display only part of the image and then corrupt display, so I upgraded the operating system to v4.6.1.133 (the most recent available for Vodafone UK) and now the viewfinder does not at all appear.

    To make sure it wasn't just my request, I loaded camerademo, compiled with JDE 4.6.1 and signed, on the device.  Still, the field of the viewfinder is not displayed.  When I click on the 'Take Photo' button, I get a null pointer exception, because the bytes (_raw) on the screen of createImageScreen are null.

    camerademo works fine on the Simulator, but Interestingly on the Simulator, the maximum camera resolution is 1660 * 1200, where, as the real device is 2 K * 1. 5 k.

    So why camerademo does not work?  If I can fix it, I think I can fix my application.

    Edit to set "Write me" every person must answer.

    This problem is now solved with an upgrade to OS 4.6.1.199, 4.6.1.133 form.

    Even with this level, the screen of the camerademo CameraDemo, which contains the "viewfinder" needs to be changed so that no other fields are used - this includes the removal of the setTtitle.  With this fact, ButtonField is not added, so the fieldChanged() event is not raised, another way of taking the photo should be used.  In addition, I also changed the scale factor in the ImageScreen to 8 from 7, to make the thumbnail a bit smaller.

  • Java does not work

    Everything that I try to use it requires java does not work on firefox. It just happened the other day, out of nowhere. It works on all other browsers I have except firefox. I can't even connect to my sync account because this action also requires java. I uninstalled firefox and re-installed java, then firefox, but still java will not work.

    Sites using the Java plugin are not really this Commons. Are you sure that take sites on the Java plugin and not JavaScript, a commonly used language which is managed by Firefox itself (without using the Java plugin)? To confirm that JavaScript is enabled:

    (1) in a new tab, type or paste Subject: config in the address bar and press ENTER. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste the javas and make a pause so that the list is filtered

    (3) if the preference javascript.enabled is in bold and "user set" false, double-click it to restore the default value true.

    You can also test Firefox Safe mode to see if an extension might be the culprit. It is a standard diagnostic tool to disable some advanced features of Firefox and extensions. More info: questions to troubleshoot Firefox in Safe Mode.

    Does not work if Firefox: Hold down the SHIFT key when you start Firefox.

    If Firefox is running: You can restart Firefox in Mode safe mode using either:

    • button "3-bar" menu > "?" button > restart with disabled modules
    • Help menu > restart with disabled modules

    and OK reboot.

    Two scenarios: A small dialog box should appear. Click on 'Start mode safe' (not update).

    Any change?

  • Since I have downloaded 8.0.1 pinch zoom does not work anymore. How to solve this?

    Since I have downloaded 8.0.1 pinch zoom does not work anymore. How to solve this?

    You can restore the zoom feature by changing the related values of downtown on the topic: config page.

    • Browser.Gesture.Pinch.in -> cmd_fullZoomReduce
    • Browser.Gesture.Pinch.in.Shift-> cmd_fullZoomReset
    • Browser.Gesture.Pinch.out-> cmd_fullZoomEnlarge
    • Browser.Gesture.Pinch.out.Shift-> cmd_fullZoomReset
    • Browser.Gesture.Pinch.Latched-> false

    To open the topic: config page, type Subject: config in the address bar (address) and press the 'Enter' key, as you type the url of a Web site to open a Web site.

    If you see a warning then you can confirm that you want to access this page.

    • Use the filter at the top bar of the on: page config to more easily spot a preference.
    • Preferences that have changed also show "BOLD" (user set).
    • Preferences can be reset to the default value using the context menu if they are set of users
    • Preferences can be changed via the context menu: Edit (string or integer) or toggle (Boolean)
  • System Restore does not work completely. Virus problem?

    When the System Restore dialog box asks me when I want to restore from I can not pass separating two to another. The instructions are to click on a date "BOLD", but most of the dates are "BOLD", (b) none of them are clickable outside today and (c) the back arrows for the previous month, while only clickable, do nothing.

    I think I have a virus or somesuch and wants to do a restore. Maybe the virus of going to stop.

    WXP SP3 Prof

    Viruses often attack the system restore because it's such a threat to them - which is certainly possible.  Unfortunately, all my anti-virus, anti-malware and anti-spyware solutions are for Vista (which is the Forum, you are in).  You must post this question in the appropriate forum where they have the information, procedures and links to help you.

    One thing, if the system restore does not work in normal mode, it sometimes will run in Mode safe then start safe mode and try it.

    In addition, if you use any Norton product, turn it off, then restart and try to restore again - Norton is known to cause problems with system restore.

    Sometimes, the problem can be solved by turning the restoration of the system off and then back on.  Unfortunately, a side effect of this is to lose all your restore points you want to restore this may not be such a good option to try (even if it can correct the underlying problem): http://support.microsoft.com/kb/310405/en-us.

    If none of the above works, please repost your question on the Forums of XP to: http://social.answers.microsoft.com/Forums/en-US/category/windowsxp where the XP experts will be happy to help you.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Multimedia keys on Dell USB keyboard does not work.

    I have a Dell Studio XPS 9000 with keyboard Dell USB connected.  All of a sudden the shortcut keys of those (top-right on the keyboard) stopped working.
    What may have caused this?  What can I do to make them work again?

    Original title: Dell USB keyboard

    More often when a device does not work, it's because of a driver.  Try to reinstall your.

    It works for win 7 & 8

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly? SignedIn = 1

    http://captaindbg.com/how-to-update-drivers-on-Windows-7/

  • 'Email Setup Wizard' blackBerry smartphones does not work

    Hello

    I hope someone can help.

    I recently changed to a new BlackBerry Bold 9700, but in this case, the e-mail Setup Wizard does not work.

    I can't create or add an email address.

    ---> Setup--> e-mail accounts (I get nothing)

    Thank you

    Ivan

    Thanks for your help and quick responde,

    but I couldn't since I found the information that I followed:

    http://www.BlackBerryForums.com.au/forums/BlackBerry-9700-series-smartphone-discussion/12730-officia...

    now, it works very well!

    Ivan

  • BlackBerry smartphone App using 4.5 not install in 9000 "BOLD"

    To install an application in BB is necessary that build approx. Special on a particular operating system (4.3, 4.5, 4.6, etc.).

    I build the APP in BB using JDE 4.5.0 that it installed and works fine on my 8310 BB which has OS 4.2.0 ok...

    But same app is not installed in 9000 "BOLD" which has OS 4.6 why?

    If I build which in BB JDE 4.6 it install or not?

    Please help

    Thnx

    Thakur

    Thnx everyone for your kind answers...

    The problem is solved

  • Horizontal menu does not work in Internet Explorer.

    I have a site that I created using CS3. The horizontal navigation bar does not work in internet explore. I tried a few things and tried to look at others. I can't make it work. I'm starting to think I need to do it again. Can someone please take a look?

    http://www.millnerheritage.com

    This is only the second site, I did it, so please be nice.

    Thank you

    LTimmers

    There is something strange going on.

    When I look at this

    the links go back a folder/directory, and yet they are called from the root directory. I have a slight suspicion that you have two sections, one that has changed and the other has not been changed.

    You worry about the addition of the style ul rule. MenuBarHorizontal {width: auto ;} } to your existing as per document

    ..............

    a: active {}
    text-decoration: none;
    }
    {.style10}
    font size: large;
    make-weight: bold;
    make-style: italic;
    }
    .style11 {size are: small}

    UL. MenuBarHorizontal {width: auto ;}}


    ............

    See what's happening.

    GRAMPS

  • Form does not work when it s poses in a movieclip


    I've isolated the problem and it s seems to be concentrated in the path "mcForm.skickat eq 'Yes' below: (the serverside script is done in Php).

    I t looks like that the form does not work when it s respondent in a movie clip called mcForm with a button send simply called 'send '.
    I have to place the form in a movieclip, because the shape is a good interpolation made by Laco interpolation method.

    Everything works fine if ["BOLD"] I have no place [/ bold] form in a movieclip.

    Here´s a part of the actionscript in the script main navigation.swf:

    If (mcForm.skickat eq 'Yes') {}
    gotoAndStop ("labelFinished");
    }

    Here´s actionscript code on the button 'Send' in mcForm in navigation.swf:
    on (release) {}
    loadVariables (" http://www.homesit.se/phpmail.php", "", "GET");
    _parent. Play (); This statement is not the problem.
    }

    The chronology in navigations.swf never reaches the label "finished."

    It works fine if I do not place shape to a movieclip in navigation.swf timeline:

    If (mcForm.skickat eq 'Yes') {//this path is the problem
    gotoAndStop ("labelFinished");
    }

    Here´s in php serverscript:
    (I have no problem here)

    <?
    $headline = "mail from your Homesite.
    $text = "$name sent email you from your homesite.
    It wrote:

    $message
    ";
    mail ($mymail, $headline, $text,
    "To: $email. (' \nReply-to:".$email);
    ECHO ("Send = Yes");
    ? >

    What could possible be wrong

    I appreciate every response.


    The root of the problem (look at the code you posted), it's that there is no event that determines what should happen when your data comes back from PHP. When you use loadvariables, you need an event for mcForm, like our:

    {mcForm.onData = function ()}
    do something
    }

    The problem according to what I see is that on your main timeline code checks the value of mcForm.skickat, but you do not seem to define this variable anywhere. The php script returns a variable named 'send', but I do not see anywhere skickat. If it is not set, its value will be always "not defined".

    To make things more efficient, you should really use loadVars and a reponsed instead of loadVariables Manager. When you use loadVariables, all variables in the clip are sent to your php script that transfer really just data loss. Using loadVars, you specify what vars to send, making the process more efficient. See the docs... everything is in there (with examples).

    BTW... This is the Flash Media Server forum. In the future, you might want to ask questions like this in the general flash or actionscript forum, you will get more answers (more people read on these forums)

  • Need urgent HELP! Ramdom images does not work

    Hello. I'm trying to use the Kaosweaver.com extension to create a Ramdon Image on a page, that I am working on but nothing helped. When I try the extension of dynamic Images it does not either. Any suggestions?
    I'm getting "BOLD" pulling my hair out in despair. Help please!

    Contact the author (Paul Davis). Make sure that you give explicit details
    everything you did and what does not work.

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    ==================

    "Zorrrro" wrote in message
    News:g656n5$LLR$1@forums. Macromedia.com...
    > Hi there. I am using the Kaosweaver.com extension to create a Ramdon
    > Image
    > effect on a page, I'm working on but nothing works. When I try the dynamics
    > Images
    > extension it does not work either. Any suggestions?
    > I get "BOLD" pulling my hair out in despair. Help please!
    >

  • Safari does not work after installing macOS Sierra

    Safari and apple store does not work after installing macOS Sierra

    Alas, my crystal ball is in the shop for cleaning, so you will need to provide more details on what "doesn't work" and above all error messages. First of all, let's start the App Store. Provide as much information as possible for those of us who do not sit on your shoulder.

Maybe you are looking for

  • I can add the birthday to the calendar without them being in contacts?

    How can I add birthday to the calendar without them being in contacts?

  • problem mouse USB

    Hello I bought Tohsiba satellite a50-106. for this model, I bought the optical mouse A4 Tech AK-5, but after you have connected to comp, it doesn't.technicly mouse it's ok, I checked on my desk. After connection to the optical sensor usb in the mouse

  • Start by taking 5 minutes (old Presario 2190US) + other BIOS problems

    Hello My son has his Compaq Presario 2190US more, and it has multiple problems ... I think that there is a problem with the power connector.  I have it jiggle until I can get it to turn on.  I'll fix it eventually, but this isn't the reason for this

  • Facebook account problem

    When I try to add my Facebook account, I get an error message saying "an internal server error has occurred. Please try again ". I've been trying for a week already, tried to do with my wifi on but still nothing. Any ideas of what I could do to solve

  • FORMAT AND RESTORE MY VISTA (I DON'T HAVE A CD OF VISTA), BUT I'M A BUYER OF WINDOWS VISTA

    Hello I'm a vista user. (original) I take my turn to the Qatar and I paid for windows vista. but I get CD or save from my authorized service center. in the case of format, my doubt is my truly can lose or not and what do I do? Please send me a messag