Command in canvas problem

help, i'm having trouble with commands in canvas.
i have a canvas class that implements commandListener, but my setCommandListener(this) call generates and error. it said "cannot resolve symbol: method setCommandListener(Game)". Game is my canvas class name. if i remove the setCommandListener call, but keeps the addCommand()s, it went ok. the commands are added to the canvas.
why is this happening?

i'm sorry, i dont quite get your answer.
basically, this is what i do:
public class GameCanvas extends Canvas implements CommandListener
private final Command okCommand;
private final Command optionCommand;
//constructor
public GameCanvas(Main parent){
okCommand = new Command("OK", Command.ITEM, 1);
optionCommand = new Command("Options", Command.ITEM, 1);
addCommand(okCommand);
addCommand(optionCommand);
setCommmandListener(this);
public void commandAction(Command cmd,Displayable d) {
//not yet implemented
is there anything else i need to do, cos i keep getting that error message.. thanks

Similar Messages

  • Command or Canvas Events for Recording ?? Please Help..

    Hi I am Abhijith I am a total newbie to the j2me world, And I am learning it now,
    My project topic is "Bluetooth Walkie Talkie " , And I am trying my best and putting
    all my efforts to code incrementally by learning , Before I could implement bluetooth,
    I thought let me complete the recording The audio and playing part first,
    The recording and playing of audio is working fine , But i would like to do it a real manner as Real Walkie talkie does, I want to record audio ONLY when the Key is being
    pressed , and when its released it should exit the player hence saving the recorded file,
    (Actually i dont want to save it in future,i would be sending the bytearray though the bluetooth , but for now , I want the Current module to be ready)
    I tried my best searching online to implement my requirement but the couldnot find
    such events I found Canva's KEYPRESS, KEYRELEASE , etc events but they dint not
    serve my purpose, Let me clearly tell where I am stuck , After the midlet starts(by launching it) then i would like to press a key( keypressed say No 5) for certain
    amount of time and the audio should be recorded only for the keypressed duration ,
    after I release , it should stop recording and save as a wav file .
    Whats happening is When i keep the key pressed , The midlet asks whether to allow
    the recording , for this purpose when I release key the control is going out, and
    i am not able to achieve the needed , I am posting the code here, Please Help me.
    I am not asking for the complete spoon feeding or ready made code, But as a beginner
    I need help from you all to learn and implement it.(at least it should satisfy me,i would feel i have learnt something then)
    Here below is my code ( i AM using WTK 2.5 )
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.*;
    import java.io.*;
    import javax.microedition.media.control.*;
    import java.util.*;
    import javax.microedition.io.*;
    import javax.microedition.io.file.*;
    public class Key extends MIDlet{
      private Display  display;
      private KeyCodeCanvas canvas;
      public Key(){
        display = Display.getDisplay(this);
        canvas  = new KeyCodeCanvas(this);
      protected void startApp(){
        display.setCurrent(canvas);
      protected void pauseApp(){}
      protected void destroyApp( boolean unconditional ){
        notifyDestroyed();
    class KeyCodeCanvas extends Canvas implements CommandListener{
      private Command exit;
         public StringItem message ;
         private Player player;
         private byte[] recordedAudioArray = null;
      private String keyValue = null;
      private Key midlet;
         Thread t = null;
         private String eventType = null;
      public KeyCodeCanvas(Key midlet){
        this.midlet = midlet;
        exit = new Command("Exit", Command.EXIT, 1);
        addCommand(exit);
        setCommandListener(this);
      protected void paint(Graphics g){
          g.setColor(255, 0, 0);
          g.fillRect(0, 0, getWidth(), getHeight());
        if (keyValue != null){
          g.setColor(0, 0, 255);
           g.drawString(keyValue + eventType+message, getWidth() / 2, getHeight() / 2,
         Graphics.TOP | Graphics.HCENTER);
      public void commandAction(Command c, Displayable d){
        String label = c.getLabel();
        if(label.equals("Exit"))
          midlet.destroyApp(true);
      protected void keyPressed(int keyCode){
         eventType = "pressed";
        keyValue = getKeyName(keyCode);
        repaint();
      public void keyReleased(int keyCode)
           try
                eventType = "released";
                keyValue = getKeyName(keyCode);
                repaint();
           catch (Exception e)
                System.out.print(e);
      public void keyRepeated(int keyCode)
           eventType = "repeated";
           keyValue = getKeyName(keyCode);
           try
                Thread t1 = new Thread()
                     public void run()
                          try
                               player = Manager.createPlayer("capture://audio?encoding=pcm");
                               player.realize();
                               RecordControl rc = (RecordControl)player.getControl("RecordControl");
                               ByteArrayOutputStream output = new ByteArrayOutputStream();
                               rc.setRecordStream(output);
                               rc.startRecord();
                               player.start();
                               eventType = "Recording";
                               message.setText("Recording...");
                               Thread.sleep(5000);
                               message.setText("Recording Done!");
                               rc.commit();
                               recordedAudioArray = output.toByteArray();
                               player.close();
                          catch (Exception e)
                }; t1.start();
           catch (Exception e)
           repaint();
         //Runnable r1 = new Runnable()
         //    public void run()
         //        try
         //            System.out.print(" here 1");
         //            message.setText(" here 1 ");
         //            player = Manager.createPlayer("capture://audio?encoding=pcm");
         //            player.realize();
         //            RecordControl rc = (RecordControl)player.getControl("RecordControl");
         //            ByteArrayOutputStream output = new ByteArrayOutputStream();
         //            rc.setRecordStream(output);
         //            rc.startRecord();
         //            player.start();
         //            eventType = "Recording";
         //            message.setText("Recording...");
         //            Thread.sleep(5000);
         //            message.setText("Recording Done!");
         //            rc.commit();
         //            recordedAudioArray = output.toByteArray();
         //            player.close();
         //        catch (Exception e)
    }I am really sorry at the end I messed with the code and its altered a Lot, But hope the
    logic Will is clear which is my requirement . I know the code for recording and
    playing is not complete as said, i Messed around a working code and tried adding Canavs
    for keyrepeat method,tried putting a thread around , AT last totally messed,
    I tried working on this for two days but couldn't be successfull , Please Help me!!
    The control goes out when midlet asks whether to allow recording ,
    I thank you anticipation ...
    -Abhijith Rao

    Midlet asking whether to allow the recording are typical permissions prompts specified by MIDP security policy. You need to sign the MIDlet and give it proper permissions.
    Problems like this were discussed in an older thread at WTK forum: *[MIDlet keeps asking for permission.|http://forums.sun.com/thread.jspa?threadID=5347313]* According to one of the posters in the thread, +"...I got it to work on the emulator by setting the permission to 'manufacturer'. It runs smoothly without annoying questions..."+
    If you're interested, check documentation and tutorials on MIDP security policy for more details.
    For events to record audio only when the key is being pressed, consider GameCanvas API, method getKeyStates.
    I am not certain though if doing it this way is a good idea. I doubt that phone users have same habits as those of walkie-talkies; for them it might be indeed more comfortable to use single simple key presses to start and finish recording.

  • Command link navigation problems in IE but not firefox

    Hi,
    I've developed an application using JSF and SDO. I have several pages where the user is displayed data from the database and pages where the user can add data , edit data and delete data.
    Each page has a jsp fragment contained in the page. This is based on faces and is the naviation menu. Each link in the menu is a command link and has navigation rules which are global. Now the problem I get is that when I sometimes nvaigate between pages using the navigation or command links in a page the page just refreshes and displays the same page again. But if I keep trying to click the link again then after a few attempts the link goes to the page i've requested. I've added system outs on the actions for the links to see if they are getting called when the page just refreshes. The answer is no as the system out line is never printed unless the action of the link is actually executed.
    Now the problem is that this only occurs in ie and NOT in firefox. I'm really confused now!!
    Here is some techinical details to help narrow down my situation:
    I'm using wsad 5.1.2 which has faces 1.0, ie 6, firefox 1.0.3.
    Any help would be appreciated!!

    doh! i've solved this problem now....well for now its working perfectly but i'll have to do a bit more testing.
    For anyone that has this problem here was my solution...
    - In IE i went to tools > general tab > settings
    from this menu choose check for newer versions of stored pages to automatically. I previously had every visit to the page.
    This seems to have fixed my problem and the reason why it worked in firefox was because the settings for caching were different.

  • (another) stacked canvas on content canvas problem

    I've searched the forums for the last 2+ hours and can't find a solution for my problem, although there are hundreds of questions on this subject.
    I have a stacked canvas on top of a content canvas. The canvases share the same window. They also share a data block. I added radio buttons on the main canvas to "show/hide" the stacked (my ultimate goal is to have 2-3 stacked and toggle. When hide, the stacked canvas is hidden, but when i click show, it is not. I understand reading all the posts that the block with focus will display, and I've added both a go_block and go_item prior to the show_view. Below is my code. MEL_DETAILS is content and MEL_LINE_ITEM is stacked.
    IF :stack = 'SHOW_STACK' THEN
    GO_BLOCK('MEL_ITEM');
    GO_ITEM('MEL_ITEM.MIS_PROJECT_NO');
    SHOW_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', display_position, 718, 583);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_FALSE); -- radio button
    ELSif :stack = 'HIDE_STACK' THEN
    HIDE_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_TRUE);
    END IF;

    user12198246 wrote:
    I've searched the forums for the last 2+ hours and can't find a solution for my problem, although there are hundreds of questions on this subject.
    I have a stacked canvas on top of a content canvas. The canvases share the same window. They also share a data block. I added radio buttons on the main canvas to "show/hide" the stacked (my ultimate goal is to have 2-3 stacked and toggle. When hide, the stacked canvas is hidden, but when i click show, it is not. I understand reading all the posts that the block with focus will display, and I've added both a go_block and go_item prior to the show_view. Below is my code. MEL_DETAILS is content and MEL_LINE_ITEM is stacked.
    IF :stack = 'SHOW_STACK' THEN
    GO_BLOCK('MEL_ITEM');
    GO_ITEM('MEL_ITEM.MIS_PROJECT_NO');
    SHOW_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', display_position, 718, 583);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_FALSE); -- radio button
    ELSif :stack = 'HIDE_STACK' THEN
    HIDE_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_TRUE);
    END IF;Here, it seems two problem..
    The line..
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    and
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);No needed
    Hope this helps
    Hamid

  • Another Drag and Drop from horizontal list to canvas problem

    Hi,
    This is vaguely similar to the this
    topic
    but I seem to have made things even more complicated.
    Basic set up is a horizontal list that uses a custom
    component itemrenderer to display a thumbnail and label:
    <?xml version="1.0"?>
    <!-- Thumbnail.mxml -->
    <mx:VBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100" height="120" verticalAlign="top" verticalGap="3"
    verticalScrollPolicy="off" horizontalAlign="center"
    backgroundAlpha="0.0" alpha="1.0">
    <mx:Image id="img" height="60" width="80"
    source="assets/{data.file}" scaleContent="true"/>
    <mx:Label text="{data.text}" fontWeight="bold"
    width="100%" textAlign="center"/>
    </mx:VBox>
    The data is loaded up from an external XML file with this
    sort of format:
    <?xml version="1.0" encoding="UTF-8"?>
    <thumbnails>
    <thumb>
    <file>thumb_image_1.jpg</file>
    <text>Thumb 1</text>
    <url>
    http://www.blah.com</url>
    <id>thumb1</id>
    </thumb>
    </thumbnails>
    That's loaded up using the HTTPService and stored in a Model
    thing.
    I've got the dragging from the HL happening quite nicely and
    it drops fine on to the canvas area, code all hack off from the
    help files. The problem I'm having is finding out the data about
    the item I've just dropped, I should at least be able to get the
    source url for the thumbnail and the label text string, but I just
    don't know how to get it. The call back I'm using looks like this:
    private function doDragDrop(event:DragEvent,
    target1:Canvas):void {
    var vX:int = target1.mouseX;
    var vY:int = target1.mouseY;
    var vW:int = target1.width;
    var vH:int = target1.height;
    // follow variables give relative coordinate values so that
    if window size is altered
    // we don't have to do tricky calulations to reset rating
    positions.
    var vRx:Number = vX/vW;
    var vRy:Number = vY/vH;
    Alert.show(event.dragSource + " " + vX + " " + vY + " " +
    vRx + " " + vRy, 'Mouse drop loc', mx.controls.Alert.OK);
    I just don't know how to get the info out of the
    event.dragSource.
    Here's the full mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="srv.send()">
    <mx:Script>
    <![CDATA[
    private function xmlLoaded():void {
    thumbAC = srv.lastResult.thumbnails;
    import mx.core.DragSource;
    import mx.managers.DragManager;
    import mx.events.*;
    import mx.containers.Canvas;
    import mx.controls.Alert;
    // Called when the user clicks the mouse on either colored
    canvas.
    // Initializes the drag.
    private function dragIt(event:MouseEvent, text:String,
    format:String):void {
    // Get the drag initiator component from the event object.
    var dragInitiator:Canvas=Canvas(event.currentTarget);
    // Called if the user dragged a proxy onto the drop target
    canvas.
    private function doDragEnter(event:DragEvent):void {
    // Get the drop target component from the event object.
    var dropTarget:Canvas=Canvas(event.currentTarget);
    DragManager.acceptDragDrop(dropTarget);
    // Called if the target accepts the dragged object and the
    user
    // releases the mouse button while over the canvas.
    // Handles the dragDrop event for the List control.
    private function doDragDrop(event:DragEvent,
    target1:Canvas):void {
    var vX:int = target1.mouseX;
    var vY:int = target1.mouseY;
    // follow variables give relative coordinate values so that
    if window size is altered
    // we don't have to do tricky calulations to reset rating
    positions.
    Alert.show(event.dragSource + " " + vX + " " + vY, 'Mouse
    drop loc', mx.controls.Alert.OK);
    ]]>
    </mx:Script>
    <mx:HTTPService id="srv" url="assets/thumbnails.xml"
    useProxy="false" result="xmlLoaded();"/>
    <mx:Model id="thumbAC"/>
    <mx:Panel height="160" layout="absolute" title="Thumbnail
    Browser" cornerRadius="10" id="thumbScrollBrowser" bottom="10"
    left="10" right="10">
    <mx:HorizontalList x="0" y="10" width="100%"
    height="110" id="thumbBrowser"
    dataProvider="{thumbAC.thumb}"
    dragEnabled="true" rollOverColor="#FFFFFF"
    selectionColor="#ffffff" borderColor="#FFFFFF"
    borderSides="0" borderStyle="none" alpha="1"
    backgroundAlpha="1.0"
    itemRenderer="Thumbnail">
    </mx:HorizontalList>
    </mx:Panel>
    <!-- THIS IS THE WALL -->
    <mx:ArrayCollection id="wallAC"/>
    <mx:Canvas id="myCanvas" backgroundColor="#ffffff"
    cornerRadius="10"
    borderStyle="solid"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop(event, myCanvas);" left="10" right="10"
    top="10" bottom="180">
    </mx:Canvas>
    </mx:Application>
    Thanks for any thoughts.
    Cheers,
    Rob

    This in the drop handler should give you back the XML you
    just dropped:
    var getListData:XML=
    evtDrag.dragSource.dataForFormat("items");

  • Color flicker? Florescent lights? Viewer to Canvas problem?

    Hello everyone,
    I shot on a Sony HZ5u,
    in Smooth Slow Record,
    HDV1080i, 60i
    inside a semi truck bay under fluorescent lighting (I think).
    In both the Viewer and Canvas there is a frame to frame shift in White Balance hue
    from cyan to magenta.
    The issue does not occur outside the bay, so I'm guessing it's due to lighting.
    Now my problem is that the visibility of this is more noticeable in the Canvas
    where there is an extreme flicker. It hurts my eyes. It is very rapid.
    *Is there a reason why it gets worse in the canvas? How can I fix this?
    It is not my monitors, I moved both windows over to each monitor and it's consistent.
    And for anyone who knows, why does this camera, and other cameras, react so drastically to normal fluorescent lighting?
    I have had earlier issues where the color did not flicker but rolled, like a tv static roll, slowly and constantly.
    Thank you for ANY help!
    Landon S.

    No it's the other way around.
    If you shot at 60i/30fps with today's cameras you may not have a problem, even with the old magnetic ballasts with a florescent bulb you're really not at odds with the AC cycle at 30fps. It's when you shot slo-mo and change the frame rate to something that's not divisible into 60Hz that you get in trouble.
    Of course all that changes if the the AC current isn't stable.
    There are little tricks like not using auto white balance, and using proper shutter speeds. I'm not much of a shooter, I've just come across the problem before and understand the cause. I produced a film shoot in a newsroom once where we had to re-light the whole room and bag the florescent lights.
    We ran tests, it's smart to run tests. If you shoot in that place again I would bring in your own lights.

  • Root Cause Analysis (OS and DB - OS Command Console) Connection problem!

    Dear Community,
    i've got a problem with the Root Cause Analysis OS Command console!
    Currently I try to read the System MemStat info from the console, without success!
    I've got the following errors:
    Error1:
    Error to parse the data returns by 'SAPOSCol', cause :com.sap.smd.plugin.remoteos.exception.SAPOSColDataParserException: Unknown Error during the parsing of saposcol output; nested exception is:
    java.lang.NullPointerException
    Error2:
    'SAPOSCol' Service not availbale, detail :com.sap.smd.plugin.remoteos.exception.SAPOScolNotAvailable: SAPOSCol not available (detail output: )
    The saposcol service is running, when I look on the server, I've got the correct status:
    server:<sid>adm> saposcol -s
    Collector Versions :
      running : COLL 20.94 700 - v2.00, AMD/Intel x86_64 with Linux
      dialog  : COLL 20.94 700 - v2.00, AMD/Intel x86_64 with Linux, 2007/02/16
    Shared Memory       : attached
    Number of records   : 5758
    Active Flag         : active (01)
    Operating System    : Linux server 2.6.5-7.283-smp #1 SMP Wed Nov 29
    Collector PID       : 9536 (00002540)
    Collector           : running
    Start time coll.    : Wed Apr 23 15:00:58 2008
    Current Time        : Wed Apr 23 15:12:08 2008
    Last write access   : Wed Apr 23 15:12:04 2008
    Last Read  Access   : Wed Apr 23 15:12:03 2008
    Collection Interval : 10 sec (next delay).
    Collection Interval : 10 sec (last ).
    Status              : free
    Collect Details     : required
    Refresh             : required
    Header Extention Structure
    Number of x-header      Records : 1
    Number of Communication Records : 60
    Number of free Com.     Records : 60
    Resulting offset to 1.data rec. : 61
    Trace level             : 2
    Collector in IDLE - mode ? : NO
      become idle after 300 sec without read access.
      Length of Idle Interval  : 60 sec
      Length of norm.Interval  : 10 sec
    The strange thing is, sometimes it works, sometimes not!
    Any Ideas?
    System: Solution Manager 4.0 SP Stack 13
    Thanks and regards
    Sascha

    >   running : COLL 20.94 700 - v2.00, AMD/Intel x86_64 with Linux
    >   dialog  : COLL 20.94 700 - v2.00, AMD/Intel x86_64 with Linux, 2007/02/16
    I suggest you upgrade your saposcol on the Linux box, it's more than a year old and it's possible, that the SMD client needs a newer version that provides the data you're requesting.
    Markus

  • Canvas problem on a s60 device

    Hi i am having a problem displaying a canvas on top of the previous canvas that was displayed. basicly i have tow canvas, one is a full screen canvas and the otehr is simply a rectangle box witha txt inside...
    on the default colour phone emulator i can display both canvas on screen at the same time but on the s60 device it just displays the 2nd canvas with a white background?
    here is the code for the 2nd canvas under the paintFrame method
    public void paint(Graphics g)
            try
    //             g.drawImage(bg,0,0,Graphics.TOP|Graphics.LEFT);
    //             g.drawImage(load[counter],midx,midy,Graphics.VCENTER|Graphics.HCENTER);
                int midy = getHeight() / 2;
                g.setColor(49,65,143);
                g.fillRect(5,midy+15,230, 36);
                g.setColor(255,255,255);
                g.drawString("Connecting to the server. Please wait.", 40,midy+8+15,Graphics.TOP | Graphics.LEFT);
                g.drawImage(load[counter],18,midy+8+19,Graphics.VCENTER|Graphics.HCENTER);
            catch(Exception e)
                    e.printStackTrace();
                    Alert alert = new Alert("error");
                    alert.setString("counter is " + counter);
                    alert.setTimeout(alert.FOREVER);
                    Display.getDisplay(root).setCurrent(alert);
        }All the canvas's are in Threads. i simply call display object to set this canvas has the corrent display.
    I hope someone can help has lately this forum has not been so generous recently to peoples problems. i see alot of threads with absoluetly no response so hope someone here can take 5min of there time to help a fellow j2me developer. Thanks guys

    Ok is it possible to create a thread within a Thread class?i am trying to create a loading screen. At first, i displayed the loadings creen on full screen mode, but the idea was changed by the designer so now i have to display a small loading screen animation whilst the user can still see the previous screen. Similar to a Alert screen.
    i have two sultions:
    as explained above, create another thread from within this thread class.
    Or create an alert screen(Tried this with a gauge and diddnt work properly)
    Which solutution is better or can you find a better solution? cheers

  • Canvas problem FCP4.5

    I can't figure out why the picture fills up the viewer (setting is automatically 77%) and is a small picture in the canvas (setting is 50%). The canvas view's next step up is 100% and that is too much which distorts the picture. In the Pro Training tutorial I bought for this program, the picture filled both the viewer and canvas nicely. Did I change a setting somewhere along the line that I can't find?

    New Discussions ResponsesThe new system for discussions asks that you take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts. When you mark a post with the tag, it will also mark the thread as Answered. If you receive the solution or answer to your question outside of the thread, then, and only then, at the top of the thread, mark the thread as Answered. This will mark the thread as Answered without marking an individual post as .
    If we use the forums properly they will work well...

  • Command line build problem

    We have a large help project I'm migrating to RoboHelp 6
    (nearly 3000 topics, 12 chms plus a master file). We generate using
    a script that calls the command-line option. One of the projects
    fails during command line processing, even though I can build it
    from within the GUI without fail. When I run the command line
    command, this is the message that is returned:
    "D:\quartus\robohelp\subs\reference>"d:\Adobe\RoboHelp
    6.0\RoboHTML\RHCL.exe" reference.xpj
    Adobe (R) RoboHelp Project Command Line Compiler version
    6.00.099
    Copyright (C) 2006 Adobe Macromedia Software LLC. All rights
    reserved.
    Project: D:\quartus\robohelp\subs\reference\reference.xpj
    Layout: Microsoft HTML Help.
    Output: D:\quartus\robohelp\reference.chm.
    Scanning project for compilation....
    Error: Failed to scan all the project files. Please use
    RoboHelp to recover the project.
    Unexpected Error: Failed to prepare single source data for
    RHCL. Please try to compile it in RoboHTML."
    If I open the project in the GUI and compile it, then compile
    from the command line, it works fine. But if I clear the directory,
    run the NGCMD.exe command and get the files out and run the
    RHCL.exe, I get the same error message.
    Thanks

    Finally I figured out this problem.
    It is because one .fpj file missing in the image folder.
    When I was using X5, there is no image.fpj in the image
    folder, but after upgrading to RH6, using the command line compiler
    will fail if there is no the .fpj file under the image folder.
    Checking in the image.fpj to the server, then check it out to
    your build machine, everything is OK now.
    AG2MM

  • Command lines & cpu problem

    Hi
    i have a cpu problem , lightroom keep my cpu busy @ 100%
    and i have a dual core
    i have to use task manager to assign only 1 cpu , and so runs great
    is there a command list?

    What system? Haw much RAM, More info. And do the forum search suggested!
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.10 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Command-line paste problem

    Hi!
    I have a following problem: When I try to paste long input to my command-line app, only few first lines are pasted.
    I see, that I Can copy that to apps like TextWrangler, TextEdit.
    What Can I do?
    Regards.

    How long is "long"? Could there have been hard returns in your copied text?
    If you find you cannot paste it in the Terminal, can you still paste the same text into your text editor?

  • Command line package problem

    Am using this exercise to create packages:
    http://java.sun.com/docs/books/tutorial/java/interpack/QandE/packages-answers.html
    I'm on Unix Solaris and have created /home/me/mygame directory as instructed. Then three subdirectories with their files:
    mygame/client/Client.java
    mygame/server/Server.java
    mygame/shared/Utilities.java
    Using their source code for each .java file, I sit in mygame directory and compile with
    javac shared/Utilities.java
    which works to produce Utilities.class
    But after that my compiles don't work. Two examples:
    javac -classpath . server/Server.java
    javac -classpath . client/Client.java
    returns in second case:
    client/Client.java:5: Class mygame.shared.Utilities not found in import.
    import mygame.shared.Utilities;
    1 error
    prompt% head client/Client.java
    package mygame.client;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import mygame.shared.Utilities;
    public class Client extends Thread {
    Socket clientSocket = null;
    public Client(Socket s) {
    Can you help? I'd really like to work in packages from the command line.
    By the way, the IDE JDeveloper 9i doesn't have any problem with packages, as you'd expect.
    More info:
    The error meaning it looked but it couldn't find Class mygame.shared.Utilities, I'm sure.
    java -version
    java version "1.2.2"
    Solaris VM (build Solaris_JDK_1.2.2_05a, native threads, sunwjit)
    path (. /home/me/mygame /home/me blah/blah/blah)
    Thanks,
    Chuck Williams

    Why don't you try everything from the directory above mygame?
    You'll have to adjust your commands accordingly, but I think your problems may go away.

  • Command+R WIFI problem

    I went to verify my macintosh HD in disk utility and it said I need to restart my computer, hold cmd+r and then go to disk utility. The problem I have is when i hold command R and it tells me to choose a network, nothing comes up. I can't do anything without an network connection so is there anything that I can do to get this working again?

    Morning Chincharm89,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    If you're unable to locate a nearby Wi-Fi network
    Check to see if the network is available by tapping Settings > Wi-Fi and choose from the available networks listed there. Note: It may take a few seconds for the Wi-Fi network name to appear.
    Wi-Fi networks configured as closed or private do not broadcast the network name to Wi-Fi devices.Join a closed or private network by tapping Settings > Wi-Fi > Other and entering the Wi-Fi network name, security, and password.
    Try restarting your Wi-Fi router by turning it off and then on again.
    Note: If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings.
    Note: This will reset all network settings, including passwords, VPN, and APN settings.
    Hope this helps,
    Mario

  • Command-Return Shortcut Problem

    When I hit Command-Return my Mac hides all the desktop items. Unfortunately this disables a shortcut in a program I use called Omnifocus. I have posted about this problem on their forum with no joy:
    http://forums.omnigroup.com/showthread.php?t=8000&highlight=shortcut
    Does anyone have any idea how to disable this shortcut in other programs? I have tried the "Keyboard Shortcut" Preference Pane and it's not listed. The shortcut action Command-Return enables in Omnifocus is not a menu option so I cannot create a new shortcut for it. I have used several desktop icon hiding freeware apps in the past, but have since removed them from my Mac. They include Desktopple, Backdrop, VirtueDesktop and Spirited Away. So I can't see how they are responsible.
    I have run the Console while typing this keyboard shortcut and it records this line:
    "Finder[269]: overlaywinref is defined so we hide it"
    If you can help me correct this problem I would be very grateful.
    Thanks, Paul.

    Great suggestions Andy, and yes this solved my problem!
    I downloaded "Easyfind" and searched for "desktop" as you suggested.
    I moved everything related to "Google Desktop", which I no longer use, into my Trash.
    I also found an item called "desktopsweeper.ape" which you mentioned specifically.
    This seems to have been the culprit.
    It was actually running when I tried to empty my Trash so I opened "Activity Monitor" in my Applications/Utilities folder to force it to quit.
    But it wasn't listed there.
    So I had to log out and log back in and clear my Trash before it could load.
    This did the trick!! So THANK YOU very much!
    The shortcut now works perfectly in Omnifocus and if anyone is looking for the best GTD program available, look no further!
    Thanks again.

Maybe you are looking for

  • Raid Options on 865PE Neo2 Fis2r

    Hey Guys, Here is my setup. 2 X WD74 Raptors on SATA 1 & 2 ICH5R 2 X WD250 PATA on IDE 3 Promise 20378 Question is: Can I add a third array using the Promise 20378 SATA 3 & 4 connectors? I.E. 2 X WD74 Raptors on SATA 1 & 2 ICH5R 2 X WD250 PATA on IDE

  • How do I get streamed photos off my phone when it won't let me delete them

    I just recently started to actually use icloud and i did not like how to streamed photos from a year ago to my phone and now that i stopped the stream i can not get the photos off my phone as it will not let me delete them

  • Problem with Submit Button in Adobe Forms Central

    I have a PDF form that I uploaded to Adobe Forms Central.  I created the fillable fields & the submit button in Forms Central.  I have several documents like this.  All have worked in the past.  Today on my latest file, the submit button doesn't alwa

  • Screensavers don't work after upgrade from 10.3.9

    After upgrading from 10.3.9 my screensavers have not been working. Apple screensavers say looking for slides, and computer name is showing a folder icon and when selected an open file window pops up. All installed 3rd party savers working fine-

  • Day wise production order

    Hi Gurus, Can any one please help me down?? Do we have standard SAP report to track on day wise production order status other than COOIS,CO26,CO28 and MD4C. Regards, VINODH