paintBackground not invoked.

Hello

I've marked in previous thread as resolved, so I put my new problem here

I have

public class LocationMainScreen extends FullScreen
{
    public LocationMainScreen()
    {
        super(DEFAULT_CLOSE | DEFAULT_MENU);

              ....Some Fields...
    }

    private void update(){}

    protected void makeMenu(Menu menu, int instance)
    {
        super.makeMenu(menu, instance);
        menu.add(new MenuItem("Update", 10, 10)
        {
            public void run()
            {
                update();
            }
        });
    }

    protected void paintBackground(Graphics graphics) {
        graphics.setBackgroundColor(Color.AQUA);
        graphics.clear();
        graphics.setColor(Color.PURPLE);
        graphics.drawRect(20, 20, 200, 200);
    }
}

and it works very well... I can see background and fields form builder...

then I have similar class:

public class WelcomeScreen extends FullScreen
{

    public WelcomeScreen()
    {
        super(DEFAULT_CLOSE | DEFAULT_MENU);

                ...Some fileds...

    }

    private void update()
    {
        LocationMainScreen ls = new LocationMainScreen();
        UiApplication.getUiApplication().pushScreen(ls);
    }

    protected void makeMenu(Menu menu, int instance)
    {
        super.makeMenu(menu, instance);
        menu.add(new MenuItem("Update", 10, 10)
        {
            public void run()
            {
                update();
            }
        });
    }

    protected void paintBackground(Graphics g)
    {
        g.drawLine(0, 0, 60, 60);
    }

but I'm getting

WARNING! : method "WelcomeScreen.paintBackground (Graphics)" not invoked.

How is it possibble?

In fact, it seems that you can import the bad Graphics class. Check your import declarations and make sure that the following line is:

import net.rim.device.api.ui.Graphics;

Tags: BlackBerry Developers

Similar Questions

  • /Shell/action.XML:1748: could not invoke method cloneProjectBP

    Hello

    This error [/ shell / action.xml:1748: could not invoke method cloneProjectBP] creating new project using project creation BP. It happens after you import certain configuration of workflow BPs in shell model. But it works for the old model.

    Thank you

    You have to make a ticket with the support of Oracle to better understand this issue.

    Here are the patches from the past for this kind of question. But better to seek the support of the Oracle.

    (1) re - assign groups / assignees to each step in each workflow for all BP

    (2) check your permissions on the application BP project

    (3) check the WF design and the redeployment of BP all the new

    (4) check whether everything has been removed, which was used in queries, forms etc.

    (5) question with Table space so ask your DBA to increase the table space

    Thank you

    Samba

  • Wire not invoked in a custom field?

    It is a field of 2048 blocks game, I made an animation effect to show a new block to his manager, but he did not.

    package com.walkline.util.ui;
    
    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.FontFamily;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.Ui;
    import net.rim.device.api.ui.UiApplication;
    
    import com.walkline.util.Function;
    
    public class BlockField extends Field
    {
        private static Font _font;
        private static final int CORNER_RADIUS = 12;
    
        private Object LOCK = new Object();
        private int _value = 0;
        private int _fore_color = 0;
        private int _background_color = 0;
        private String _text = "";
        private int _animation_size = 0;
    
        public BlockField()
        {
            super(NON_FOCUSABLE);
    
            try {
                int fontSize = 7;
                FontFamily family = FontFamily.forName("Tahoma");
    
                if (Display.getWidth() > Display.getHeight())
                {
                    if (Display.getWidth() > 480) {fontSize = 9;}
                } else {
                    if (Display.getHeight() >= 480) {fontSize = 9;}
                }
    
                _font = family.getFont(Font.EXTRA_BOLD, fontSize, Ui.UNITS_pt);
            } catch (ClassNotFoundException e) {}
        }
    
        public void clear() {setValue(0);}
    
        public int getValue() {return _value;}
    
        public void setValue(int value)
        {
            _value = value;
            _text = ((value != 0) ? String.valueOf(value) : ""); 
    
            _fore_color = ((_value > 4) ? 0xf9f6f2 : 0x776e65);
            setBackgroundColor();
        }
    
        public void setBackgroundColor()
        {
            switch (_value)
            {
                case 0:
                    _background_color = 0xccc0b3;
                    break;
                case 2:
                    _background_color = 0xeee4da;
                    break;
                case 4:
                    _background_color = 0xeee0c8;
                    break;
                case 8:
                    _background_color = 0xf2b179;
                    break;
                case 16:
                    _background_color = 0xf59563;
                    break;
                case 32:
                    _background_color = 0xf67c5f;
                    break;
                case 64:
                    _background_color = 0xf65e3b;
                    break;
                case 128:
                    _background_color = 0xffedcf72;
                    break;
                case 256:
                    _background_color = 0xffedcc61;
                    break;
                case 512:
                    _background_color = 0xffedc850;
                    break;
                case 1024:
                    _background_color = 0xffedc53f;
                    break;
                case 2048:
                    _background_color = 0xffedc22e;
                    break;
                case 4096:
                    _background_color = 0xff3c39;
                    break;
            }
        }
    
        public void startRun()
        {
            Thread thread = new Thread(new Runnable()
            {
                public void run()
                {
                    while (_animation_size < getWidth());
                    {
                        Function.errorDialog("size: " + _animation_size + ", width: " + getWidth());    
    
                        try {
                            Thread.sleep(1000);
                        } catch (InterruptedException e) {new Exception("thread exception: " + e.toString());}
    
                        _animation_size += 10;
                        if (_animation_size > getWidth()) {_animation_size = getWidth();}
    
                        invalidate();
                    }
                }
            });
            thread.start();
        }
    
        protected void layout(int width, int height)
        {
            _animation_size = width / 2;
            setExtent(width, height);
        }
    
        protected void paint(Graphics g)
        {
            g.setColor(_fore_color);
            g.setFont(_font);
            g.drawText(_text, (getWidth() - _font.getAdvance(_text)) / 2, (getHeight() - _font.getHeight()) / 2);
        }
    
        protected void paintBackground(Graphics g)
        {
            g.setColor(_background_color);
            g.fillRoundRect((getWidth() - _animation_size) / 2, (getHeight() - _animation_size) / 2, _animation_size, _animation_size, CORNER_RADIUS, CORNER_RADIUS);
        }
    }
    

    In the startRun() method, I changed the size of the painting and call invalidate(), but it is similar to code not working in the run() block, someone knows how to make it effective?

    Here's the correct code, FYI

    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.FontFamily;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.Ui;
    import net.rim.device.api.ui.UiApplication;
    
    public class BlockField extends Field
    {
        private static Font _font;
        private static final int CORNER_RADIUS = 12;
    
        private int _value = 0;
        private int _fore_color = 0;
        private int _background_color = 0;
        private String _text = "";
        private int _animation_size = 0;
        private boolean _need_animation = false;
    
        public BlockField()
        {
            super(NON_FOCUSABLE);
    
            try {
                int fontSize = 7;
                FontFamily family = FontFamily.forName("Tahoma");
    
                if (Display.getWidth() > Display.getHeight())
                {
                    if (Display.getWidth() > 480) {fontSize = 9;}
                } else {
                    if (Display.getHeight() >= 480) {fontSize = 9;}
                }
    
                _font = family.getFont(Font.EXTRA_BOLD, fontSize, Ui.UNITS_pt);
            } catch (ClassNotFoundException e) {}
        }
    
        public void clear()
        {
            setValue(0);
            invalidate();
        }
    
        public void setAnimationMode(boolean value) {_need_animation = value;}
    
        public int getValue() {return _value;}
    
        public void setValue(int value)
        {
            _value = value;
            _text = ((_value != 0) ? String.valueOf(value) : "");
            _fore_color = ((_value > 4) ? 0xf9f6f2 : 0x776e65);
            _animation_size = getWidth() / 3;
    
            setBackgroundColor();
        }
    
        public void setBackgroundColor()
        {
            switch (_value)
            {
                case 0:
                    _background_color = 0xccc0b3;
                    break;
                case 2:
                    _background_color = 0xeee4da;
                    break;
                case 4:
                    _background_color = 0xeee0c8;
                    break;
                case 8:
                    _background_color = 0xf2b179;
                    break;
                case 16:
                    _background_color = 0xf59563;
                    break;
                case 32:
                    _background_color = 0xf67c5f;
                    break;
                case 64:
                    _background_color = 0xf65e3b;
                    break;
                case 128:
                    _background_color = 0xffedcf72;
                    break;
                case 256:
                    _background_color = 0xffedcc61;
                    break;
                case 512:
                    _background_color = 0xffedc850;
                    break;
                case 1024:
                    _background_color = 0xffedc53f;
                    break;
                case 2048:
                    _background_color = 0xffedc22e;
                    break;
                case 4096:
                    _background_color = 0xff3c39;
                    break;
            }
        }
    
        public synchronized void startAnimation()
        {
            new Thread()
            {
                public void run()
                {
                    while (_animation_size < getWidth())
                    {
                        try {
                            Thread.sleep(10);
    
                            _animation_size += 10;
                            if (_animation_size > getWidth()) {_animation_size = getWidth();}
    
                            synchronized (UiApplication.getEventLock()) {doPaint();}
                        } catch (InterruptedException e) {}
                    }
    
                    _need_animation = false;
                }
            }.start();
        }
    
        public synchronized void doPaint() {this.invalidate();}
    
        protected void layout(int width, int height) {setExtent(width, height);}
    
        protected void paint(Graphics g)
        {
            g.setColor(_fore_color);
            g.setFont(_font);
            g.drawText(_text, (getWidth() - _font.getAdvance(_text)) / 2, (getHeight() - _font.getHeight()) / 2);
        }
    
        protected void paintBackground(Graphics g)
        {
            g.setColor(_background_color);
    
            if (_need_animation)
            {
                g.fillRoundRect((getWidth() - _animation_size) / 2, (getHeight() - _animation_size) / 2, _animation_size, _animation_size, CORNER_RADIUS, CORNER_RADIUS);
            } else {
                g.fillRoundRect(0, 0, getWidth(), getHeight(), CORNER_RADIUS, CORNER_RADIUS);
            }
        }
    }
    
  • listener class not invoked after deployment to weblogic Server

    I have a third party class (Quartz Scheduler) that implements ServletContextListener I added in my weblogic-application.xml and web.xml files as a listener. This class should support certain data in the server starts. But is not to be called.

    Technology used:

    Jdeveloper 11.1.2.3

    Weblogic 10.3.5

    Third party library:Quartz 1.6

    Everything works very well for Jdeveloper and the listener class get invoked when the application is deployed in the weblogic with the local computer. But the listener class is not called when the application deployment as .ear file in weblogic on external server server.

    Extract of weblogic-application.xml and web.xml files:

     <listener> <listener-class>scheduler.WebListener</listener-class> </listener>

    where scheduler is the name of packge and WebListener is the class of earphone

    -Important updates-

    Two projects consist of the application that I am trying to deploy the view and the model projects. For testing, I remove the model project of the application and deploy the application to a new. Quartz scheduler of work and in the listener class called WORK without model project and without interaction of the DB.

    I'll double check the data source with the web-logic Nothing seem wrong to me. I use the same source of data name in the application and as said before the application runs from JDeveloper

    I also checked the server logs. No exception or an error. demonstrate that the application is running in Active mode. But the listener class is not called weblogic when the model project is existing in the application where the DB interaction occurred.

    Any idea because of this as possible of this problem

    -------------------------------Update 2---------------------------------

    I think that this update will give any idea of the question. After clouse look in the server log after deployment, I found this line.

    NewSchedulerApplication-ViewController-context-root has context-root specified in application.xml: "NewSchedulerApplication-ViewController-context-root". The context-root specified in weblogic.xml: "NewSchedulerApplication-ViewController-context-root" will be ignored

    where NewSchedulerApplication is the name of the application.

    Finally, the issue is resolved.

    The problem is resolved after you delete the following jar files in my view-controller project: Api .jar-Trinity and the Trinity - impl.jar

  • navigationUnclick() is sometimes not invoked

    In some cases, navigationUnclick() is not called when the user clicks and releases the trackball. This is reproducible with any device or Simulator I have test it with (8300, 8900, 9000, 9700).

    The use case is the following: the user clicks on an item in a ListField and expects a context menu is displayed if they release the ball within a fixed period of time. If they continue to hold the ball until the end of the period, the default action is executed.

    The navigationUnclick() event is necessary to stop the stopwatch and to display the context menu. However, it seems that the first time the user clicks on an element, the navigationUnclick() method is never called. On the presses, the method is called.

    The problem is that when certain operations occur, appear to us a 'busy indicator' top of the screen and turn off the painting during this period. In this case, the busy light interfered with the invocation of Navigation.unClick (). In this case turn off busy indicator has solved the problem.

  • Application Module not invoked popup screen method

    Hello

    I use jDeveloper 11.1.2.3.0.

    I have a method called selectAllPIDs in my AM. This method is exposed and available in data controls. I can do this drag onto a page as a button. Click the button, the method is executed as planned, and things work very well. However, my requirement is called from a button on a pop-up screen. The same method is not called when it is called from the pop-up screen. The popup (based on panelWindow) is called by clicking on a button on the home page.

    The command button on the pop-up screen is (it does not)

    < af:commandButton actionListener = "#{bindings.selectAllPIDs.execute}" = "selectAllPIDs" text "
    Disabled = "#{!}" Bindings.selectAllPIDs.Enabled}"id ="cb3"/ >


    The command button on the main screen is (this works)
    < af:commandButton actionListener = "#{bindings.selectAllPIDs.execute} '"
    Text = "selectAllPIDs."
    Disabled = "#{!}" Bindings.selectAllPIDs.Enabled}.
    ID = "cb4" / >

    I see no difference between the two. What I'm missing here?

    Thank you
    Ashwin

    Hello

    Can u please try set partialSubmit = true to the button on the shortcut menu.

    Thank you
    Pele

  • implement PofSerializer, serialize/deserialize not invoked

    Hello

    I have an object of a certain type that I want to put in coherence and a serializer for the type that implements PofSerializer. When I put/get the subject to consistency, I expect to serialize/deserialize methods to call. But I breakpoints in the serializer class and I see that these overridden methods are not called. Can you help me with this? I'll put here the classes and configurations:
    public class Item extends CacheItem {
         private String guid;
         private String cvc;
         
         public String getGuid() {
              return guid;
         }
         public void setGuid(String guid) {
              this.guid = guid;
         }
         public String getCvc() {
              return cvc;
         }
         public void setCvc(String cvc) {
              this.cvc = cvc;
         }
    }
    The serializer:
    public class CacheItemSerializer implements PofSerializer {
    
         @Override
         public Object deserialize(PofReader reader) throws IOException {
              Item item = new CardCacheItem();
              item.setCvc(reader.readString(0));
              item.setGuid(reader.readString(1));
              item.setAcc(reader.readInt(2));
              item.setAm(reader.readDouble(3));
              reader.readRemainder();
              return item;
         }
    
         @Override
         public void serialize(PofWriter writer, Object o) throws IOException {
              Item item = (Item) o;
              writer.writeString(0, item.getCvc());
              writer.writeString(0, item.getGuid());
              writer.writeInt(2, item.getAcc());
              writer.writeDouble(3, item.getAm());
              writer.writeRemainder(null);
         }
    } 
    In these two methods above I breakpoints and that they are not called.

    The pof file - config.xml:
    <user-type-list>
          <include>coherence-pof-config.xml</include>
    
          <!-- User types must be above 1000 -->
          <user-type>
             <type-id>2001</type-id>
                <class-name>com.betfair.site.coherence.entities.Item</class-name>
                <serializer>
                    <class-name>com.betfair.site.coherence.serializers.CacheItemSerializer</class-name>
                </serializer>
            </user-type>
        </user-type-list>
    I initialize the cache like this:
    CacheFactory.ensureCluster();
    namedCache = CacheFactory.getCache(cacheName);
    And then call put / get on the namedCache object.

    I have the following arguments:
    -Dtangosol.pof.enabled = true
    -Dtangosol.pof.config = pof-config. XML
    And in the console, I see it load the pof file.

    It's on all the configurations that I do. Am I missing something?

    Published by: user11200171 on January 25, 2013 13:03

    Hello

    just had a quick glance, but maybe your POF config is wrong. The name of the class that you want to serialize format POF is "Item", while the name in config POF you is 'CardCacheItem '.
    Make sure that the class full name in the correct POF (i.e. your item class belongs to the com.betfair.site.coherence.entities package).

    Also, make sure that your config POF file is used by your client and your server.

    Please, I beg you, shout if it did not help.

    Thank you

  • Could not invoke the browser

    Hi guys,.

    When I run the form module im getting an error of form cannot invoke browser.
    http://ImageShack.us/photo/my-images/197/unled2mgi.PNG/


    I put the path to the browser in the registry.pls see link below
    http://ImageShack.us/photo/my-images/11/unled1xhs.PNG/

    How do I rectify this error?

    Thanks in advance

    form of location of browser web builder - Edition - Preferences - DURATION.

  • ReturnListener not invoked

    Hi all

    I use Oracle ADF 10 g.

    I have a commandButton control when you click on it opens a dialog box. I put LaunchListener and ReturnLinstener functions on the command button.
    The LaunchListener is running normally. However, the ReturnListener is not running.

    This is a snippet of the code for the ADF button:

    < af:commandButton text = "commandButton 1.
    Binding = "#{PatientPrescriptions.addConditionButton} '"
    ID = "addConditionButton".
    action = "dialogue: createPillChangeCondition ' useWindow = 'true '.
    launchListener = "#{PatientPrescriptions.handleCreateChangeCondition} '"
    windowHeight = "200" windowWidth = "600".
    rendered = 'true '.
    returnListener = "#{PatientPrescriptions.handleAfterCreateChangeCondition}" / >

    Can anyone imagine why the ReturnListener method is not executed? (I tested it with partialSubmit = true, but this does not work either)

    My 10.1.3 skills are rusty now, but if my memory is correct, the dialog box you call the method .returnFromDialog (AfContext.getCurrentInstance). See example 19-24 of the 10.1.3 following merger Guide link:

    http://download.Oracle.com/docs/CD/B32110_01/Web.1013/b25947/web_complex.htm#CEGDHIGB

    CM.

  • onMessage in MDB not invoked

    Hi all

    I followed all the instructions of the "Oracle® containers for J2EE Enterprise JavaBeans Developer Guide" to create an MDB that creates a queue.
    The onMessage() prints only a message.
    However my client, whenever I have send a message to the queue, the onMessage is not called.
    Below, I show the MDB, the client and the jms.xml file

    //////////////////////////////////////////
    Message Bean
    /////////////////////////////////////////

    () @MessageDriven
    activationConfig = {}
    @ActivationConfigProperty (propertyName = "messageListenerInterface", propertyValue = "javax.jms.MessageListener"),
    @ActivationConfigProperty (propertyName = "connectionFactoryJndiName", propertyValue ="jms/PayrollQueueConnectionFactory"),
    @ActivationConfigProperty (propertyName = "destinationName", propertyValue ="jms/payrollQueue"),
    @ActivationConfigProperty (propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
    @ActivationConfigProperty (propertyName = "messageSelector", propertyValue = "RECIPIENT ="MDB"")})
    / public class MessageDrivenEJBBean implements MessageListener {}


    public void onMessage (message Message) {}

    System.out.println ("MessageDrivenEJBBean: inside onMessage");

    }


    private static context getInitialContext() throws NamingException {}

    return new world;
    }

    }

    ///////////////////////////////
    Customer
    //////////////////////////////
    try {}

    Research of the queue
    System.out.println ("sendMessage started");
    Queue queue (tail) = context.lookup("jms/payrollQueue");
    System.out.println ("queue name =" + queue.getQueueName ());

    Research of the queue connection factory
    Factory qcf = (QueueConnectionFactory) context.lookup("jms/PayrollQueueConnectionFactory");
    QueueConnection qc = qcf.createQueueConnection ();
    QC. Start();
    QueueSession qs = qc.createQueueSession (false,
    Session.AUTO_ACKNOWLEDGE);


    SND QueueSender = qs.createSender (tail);
    MessageProducer producer = qs.createProducer (tail);
    Msg message = qs.createMessage ();
    msg.setJMSCorrelationID ("dimitris");
    SND. Send (MSG);
    Producer.Send (MSG);

    SND. Close();
    Producer.Close ();
    QS. Close();
    QC. Close();
    System.out.println ("completed sendMessage");

    }
    catch (Exception e) {}
    System.out.println ("exception = sendMessage" + e.getMessage ());
    }

    //////////////////////////////////////////////
    JMS.Xml
    /////////////////////////////////////////////
    < port server jms '9228' = >

    < queue name = "Tail of payroll" location = "jms/payrollQueue" > < / queue >
    < queue connection factory name = "Factory of connections pays" location = "jms/PayrollQueueConnectionFactory" > < / queue-connection-factory >

    < Log >
    "" < path = "... / log/payroll_jms.log" / >
    < / log >
    < / jms-Server >



    My client runs smoothly without exception. However I don't see the onMessage () to print the message that he has executed.
    Anyone can figure out where could be the problem?

    Hello

    I don't see that your client code defined corresponding message selector property.
    As

    msg.setStringProperty ("CONTAINER", "MDB");

  • Search remotely BES is not invoking items().


    You can't get a listing directly in a Contact object:

    Connection con = results (Contact).

    You will need to browse:

    Contact con = results.nextElement ((Contact));

  • Listeners of bean not invoked in the Facelets page fragment in Jdeveloper 12 c

    Hi all

    I'm working on an ADF application and facing the issue, as described below.

    I created a facelets page, index.jsf. In the jsf page, I added a taskflow bounded as a region.

    The taskflow, MainTF.xml, is based on fragments of the page. The default activity on the page is a page1.jsff of pageFragment, which comes from the facelets.

    Now inside the page1.jsff, I have a pane of the < af:link > with the property of listener action pointing to a bean method.

    When I run index.jsf, < af:link > is rendered, but clicking on it, the actionlistener is never called.

    The jsff source code is as below:

    <?xml version='1.0' encoding='UTF-8'?>

    < UI:composition xmlns:UI = "http://java.sun.com/jsf/facelets" xmlns:AF = "http://xmlns.oracle.com/adf/faces/rich" >

    < af: link text = "#{viewScope.ABean.aa} ' id = "l1" actionListener = "#{viewScope.ABean.al}" / >

    </ UI:composition >

    If I replace the tag < ui:composition > < ui:fragment > tag, as shown below, the page works as expected and the action listener is called by clicking on the link

    <?xml version='1.0' encoding='UTF-8'?>

    < UI:fragment xmlns:UI = "http://java.sun.com/jsf/facelets" xmlns:AF = "http://xmlns.oracle.com/adf/faces/rich" >

    < af: link text = "#{viewScope.ABean.aa} ' id = "l1" actionListener = "#{viewScope.ABean.al}" / >

    </ UI:fragment >

    So my question is, has anyone faced with a similar problem? I've seen several code samples where < ui:composition > works very well, then is there something I could do wrong here?

    Also, if I continue to use the <ui:fragment> tag, which will cause problems down the line?

    The version of Jdeveloper I use is: JDEVADF_12.1.3.0.0_GENERIC_140521.1008.S

    Thank you

    Gopal

    Try to surround yourself with af: link with containers (af:panelGroupLayout, af:panelBox,...)

    Dario

  • runInstaller will not invoke, Hung xclock

    I'm trying to launch runInstaller to install oracle on OS: AIX 5.3.

    I have export DISPLAY = ipaddress:0.0

    and a PuTTY x 11 allow in the future.

    However I always hung xclock and he just hung forever.

    How to solve this problem?


    Thank you.

    849425 wrote:

    I'm trying to launch runInstaller to install oracle on OS: AIX 5.3.

    I have export DISPLAY = ipaddress:0.0

    and a PuTTY x 11 allow in the future.

    However I always hung xclock and he just hung forever.

    How to solve this problem?

    Thank you.

    You have a x (such as xMing) server running on your local computer?

  • [FIXED] ExternalInterfce.call not invoked in IE7

    My Flex UI is works perfectly in FF3. I have a strange problem in IE7. When I delete all browsing history and visit my application, it works very well. When I reload the page containing the SWF to my flex application or if I logout and log into my application again, the invocation of ExternalInterface.call("saveglobalscore",score) doesn't seem to be the case.

    I looked for answers on different for one. I use integrating SWF the code generated by flex builder and it correctly puts the id of the SWF file. I'm running out of leads on what to try next.

    It must be a problem with the story. Someone else has seen this?

    Thank you.
    -Raj

    My point was that the ExternalInterface call to my JS function was endangered in the ether.

    I moved the SWF file incorporating the code at the bottom of the page to make sure that IE will initialize all other tags on the page before you start the flash player. This seems to have done the trick!

  • [LAVA Cross Post] CTRL + SHIFT + Alpha shortcuts do not work in LabVIEW

    Cross-post from the LAVA: http://lavag.org/topic/15619-ctrlshift-shortcuts-sometimes-not-working-in-labview/

    Bug Synopsis: CTRL + SHIFT + Alpha shortcuts do not work in LabVIEW. In particular, CTRL + SHIFT + Z, CTRL + SHIFT + E and CTRL + SHIFT + S

    Test installation: 32-bit LV2012 with the patch of f1 running on Win7 64-bit inside a Parallels VM in OS X 10.8.1 8

    To sum up the tests, I tried:

    • Several different combinations LabVIEW, guest OS and host OS all fail, including:
      • LV2012f1 32 and 64-bit and 32-bit LV2009
      • Win7 32 and 64-bit and Windows XP x 64
      • Parallels and Parallels 7 8
      • OS X 10.7 and 10.8
    • Capturing the keyboard to the virtual machine
    • Turn each keyboard setting possible on Parallels, guest and host
    • Reinstall the keyboard drivers
    • Connect a checked keyboard that works on a native Windows machine
    • LabVIEW.ini deleting and letting it regenerate
    • Remapping the shortcuts, for example, CTRL + SHIFT + E to CTRL + E - in this case, 'Show project' works, so this may indicate that it is a problem registering the shortened press, do not invoke the action itself.
    • Sending via the keystrokes on-screen keyboards of guest and host
    • Sending the sequence of keys via SendInput by user32.dll WinAPI
    • Test every imaginable combo of SHIFT, ALT/OPTION, FN, COMMAND/CMD, CONTROL
    • Reinstall the virtual machines from scratch and relocation of LV
    • Here's a kicker: CTRL + SHIFT + Alpha shortcuts work very well on other windows programs (I tried 4 different programs, including Chrome, Notepad ++, Paint.NET), but it does NOT work for VIPM with CTRL + SHIFT + C. This means that only two programs where there are CTRL + MAJ + Alpha bugs are both related to LabVIEW.
    • Here's a better: it is only CTRL + SHIFT + Alpha shortcuts with the prob - CTRL + SHIFT + 3 properly active / deactivates grid alignment and the "tools > Options > Menu shortcuts" will record any shortcut CTRL + MAJ + Non-alpha; He was not only meets the shortcuts CTRL + SHIFT + Alpha.

    New idea of troubleshooting is highly appreciated; Please feel free to jump in here or on the LAVA.

    X. says:

    Still well and alive in Parallels 9 and LabVIEW 2013 SP1. Of course I could upgrade the latest versions to see if things have become more.

    Any news on that?

    @mellroth has found the solution :-)

Maybe you are looking for

  • Checksum in the column of boxes

    I'm new on numbers and difficulties with the checksum formula in a column of boxes. Sounds simple? but when I put in the formula = COUNTIF (C2:C5, "= TRUE") the box shows 1 when nothing is checked, then if I go to a checkbox, the entire line disappea

  • Cover profile

    After surfing the help article titled 'profiles - where Firefox stores your bookmarks, passwords and other user data', I still couldn't locate my profile. My old computer was down and I was able to read the data from the old hard drive, it was in Win

  • What MacBook Pro is better for my situation?

    Hello, guys. Could you please help me decide which MacBook Pro is the best for my situation? Currently, I chose between these models: MacBook Pro 15 "2.2 GHz / RAM 16 / 256 GB of storage / Iris Pro MacBook Pro 15 "(2.8) of 2.5 GHz / RAM 16 / 256 GB o

  • TimeBase plot flickers using SV measurement suite

    Hello everyone, I use audio measurement and vibration suite v7.0 of the trial with PCI-6143. I have change the example program for the tracing of orbit and timebase traced tachomter using analog to run with 6143 DSA h/w instead. but its plot timebase

  • FIRST Installation of LabVIEW for robotics 2010?