OS 6.0 - Bug in the user interface for the custom control

Hello

I discovered a bug of UI on OS 6.0 with one of my UI controls. It seems to be linked to the control itself and how it is the calculation of the width. If my screen is full screen, painted correctly control, but as soon as I change the subLayout of the screen, the control still has a full screen width

I spent a few hours trying to understand this one... but I can't seem to get their hands on the issue. I am sure that he as to do with the way in which it is the calculation of the width of the control of 99%... If someone could point me in the right direction would be appreciated...

Thank you

See the code snippet below

UITest class

public class UITest extends MainScreen
{
  public UITest(long style)
  {
    super(style);

    add(new ButtonField("This is my test button", ButtonField.USE_ALL_WIDTH));
    TextBoxField ActionLog = new TextBoxField(0, 75, TextBoxField.USE_ALL_WIDTH);
    HorizontalFieldManager hfm = new HorizontalFieldManager(Manager.USE_ALL_WIDTH);
    hfm.setBorder(BorderFactory.createSimpleBorder(new XYEdges(), Border.STYLE_SOLID));
    hfm.add(ActionLog);
    hfm.add(new ButtonField("This is my test button", ButtonField.USE_ALL_WIDTH));
    add(hfm);
  }

  protected void sublayout(int width, int height)
  {
    layoutDelegate(width - 40, height - 40);
    setPositionDelegate(10, 10);
    setExtent(width - 20, Math.min(height - 20, getDelegate().getHeight() + 20));
    setPosition(10, (height - getHeight())/2);
  }
}

Class TextBoxField

// http://na.blackberry.com/eng/devjournals/resources/journals/jul_2005/creating_textbox_field.jsp
public class TextBoxField extends VerticalFieldManager
{

  private static int PADDING = 2;
  private static int DEFAULT_WIDTH = 100;
  private int _managerWidth;
  private int _managerHeight;
  private String _pattern;
  private EditField _editField;

  public TextBoxField()
  {
    this(0, 0, Manager.USE_ALL_WIDTH);
  }

  public TextBoxField(long style)
  {
    this(0, 0, style);
  }

  public TextBoxField(int width, long style)
  {
    this(width, 0, style);
  }

  public TextBoxField(int width, int height, long style)
  {

    super(Manager.NO_VERTICAL_SCROLL | style);
    _managerWidth = width;
    _managerHeight = height;

    VerticalFieldManager vfm = new VerticalFieldManager(Manager.VERTICAL_SCROLL | style);
    _editField = new EditField(style)
    {
      public void paint(Graphics g)
      {
        super.paint(g);
      }
    };

    vfm.setPadding(PADDING, PADDING, PADDING, PADDING);
    vfm.add(_editField);
    add(vfm);
  }

  public int getPreferredHeight()
  {
    int fontHeight = getFont().getHeight() + (2 * PADDING);
    return (fontHeight > _managerHeight) ? fontHeight : _managerHeight;
  }

  public int getPreferredWidth()
  {
    if (_pattern != null)
    {
      return getFont().getAdvance(_pattern);
    }
    else
    {
      if (_managerWidth == 0)
        return DEFAULT_WIDTH;
      else
        return _managerWidth;
    }
  }

  public void paint(Graphics g)
  {
    super.paint(g);

    // BUG FIX: 17-08-2010
    // Before drawing the border, save the current color, after
    // change the color for the border, paint the border and re-set
    // back to the original color.
    int prevColor = g.getColor();
    g.setColor(Color.BLACK);
    g.drawRect(0, 0, getWidth(), getHeight());
    g.setColor(prevColor);
  }

  public void sublayout(int width, int height)
  {
    if (_managerWidth == 0)
      _managerWidth = width;
    else
      _managerWidth = getPreferredWidth();

    _managerHeight = getPreferredHeight();

    super.sublayout(_managerWidth, _managerHeight);
    setExtent(_managerWidth,_managerHeight);
  }

  public String getText()
  {
    return _editField.getText();
  }

  public void setText(String text)
  {
    _editField.setText(text);
  }   

  public int getTextLength()
  {
    return _editField.getTextLength();
  }

  public void setTextWidthPattern(String pattern)
  {
    _pattern = pattern;
  }
};

 

No, PopupScreen was still available. We have certainly used it in 4.2.1 but it was available before that as well.

With PopupScreen, create it with your manager custom as a delegate.  In this handler, override sublayout to do most of the work. Sublayout of PopupScreen can contain a single functional element, if you wish: setPosition (x, y) (after the call to super.sublayout). SetExtent of the delegated manager will have an impact on the parent company PopupScreen fine (the screen apply the theme to the Manager and take more room, but it's OK).

Tags: BlackBerry Developers

Similar Questions

  • Why is there no user interface for moving the cache locations/profile?

    OK, so it took me a long time to find how to move the location of the cache and the reason is that it is done by an entry that does not exist originally, so a user need to know the channel config even magically set it.
    (this is browser.cache.disk.parent_directory for those in the same waters as me) and it still did not move the location of the profile...
    To change your profile location? The doc only that talks on this subject here:
    http://KB.mozillazine.org/Moving_your_profile_folder
    and it does not work so well for me (i.e. all) but why have I not copy and change things? It is created automatically the first time you start so FF cannot use the same method to create a new profile in an empty space?

    And my real question: is there a valid reason, that there is no element of the user interface to set the location of the profile cache directories?

    There never was a user interface for these parameters - Mozilla is "stingy" about adding prefs that will be only once required by the installation of the user interface. Also, I assume that the developers are convinced that a power user who thinks that even on the displacement of the cache will be searching for instructions on how to do it. (BTW, when you move the cache profile is moved to the folder path profile, its origin "local settings" folder - thus it is automatically moved out of APP DATA.) You can still use this pref to put the cache exactly where you want. I use a small partition for the TEMPORARY files and the cache of Firefox, so they don't one of my biggest readers logics frag.)

    Regarding the difficulties with a profile in motion, developers have threatened to remove Firefox profiles altogether for the last 3 years or 4 and WONTFIX had no Bug filed all improve or add new features to the Profile Manager. This will probably happen this year some time.

    Between you and me, there is a new Profile Manager application just went Beta, which will probably "be released" just as the existing profile manager is extracted from Firefox. It is very schweet and is always at the point where the developers are in response to reports of bugs on features to include and adding the items that are important. I have tabled a minor Bug on the characters allowed in a profile name, which was fixed in 3 or 4 weeks.

    https://developer.Mozilla.org/en/Profile_Manager

    https://wiki.Mozilla.org/Auto-Tools/projects/ProfileManager

    http://FTP.Mozilla.org/pub/mozilla.org/utilities/ProfileManager/1.0_beta1/

    You must have Windows Visual C++ 2010 redistributable installed for the application of the Profile Manager XUL Runner to work right now. I hope that this will change very soon, and all the necessary files will be included in the Zip package.

  • User interface for the touch and trackball design

    Hello everyone

    Design the user interface for my ap, and I have a question.

    My access point has a lot of button image.

    I can imagine the ImageButton for touch screen and trackball.

    I have known that using touchevent for touchscreen and trackwheelClick for the trackball.

    When I use both in an application, the access point is not make sence to use,

    If this is not the case, can I know the user device or not doesn't have trackball or both.

    My code:

    final BitmapField bf_Projection = new BitmapField (B_Projection, Field.FOCUSABLE) {}
    {} public void onFocus (int direction)
    this.setBitmap (B_Projection_Down);
    }
    public void onUnfocus() {}
    this.setBitmap (B_Projection);
    }
    {public boolean trackwheelClick (int status, int time)
    UiApplication.getUiApplication () .pushScreen (p_Screen);
    this.setBitmap (B_Projection);
    Returns true;
    }

    protected boolean touchEvent (TouchEvent message) {}
    int x = message.getX (1);
    int y = message.getY (1);
    Make sure that the point is in this area
    If (x < 0="" ||="" y=""> < 0="" ||="" x=""> getExtent () .width: y > getExtent () .height) {}
    Return super.touchEvent (message);
    }
    {Switch (message.getEvent ())}
    case TouchEvent.DOWN:
    this.setBitmap (B_Projection_Down);
    break;
    case TouchEvent.UP:
    this.setBitmap (B_Projection);
    break;
    case TouchEvent.CLICK:
    case TouchEvent.UNCLICK:
    UiApplication.getUiApplication () .pushScreen (p_Screen);
    this.setBitmap (B_Projection);
    break;
    }
    Return super.touchEvent (message);
    }
    };

    Clintliu wrote:

    case TouchEvent.CLICK:
    case TouchEvent.UNCLICK:
    UiApplication.getUiApplication () .pushScreen (p_Screen);
    this.setBitmap (B_Projection);
    break;

    These two make no sense at all - either treat CLICK or UNCLICK because otherwise you will push the screen twice.

    That being said - the best way is to ignore the fact touchEvent() exists and replace just the click of navigation and/or uncheck.  They will work correctly for navigation in trackpad and touchscreen / click.

    One of the problems with the touchscreen is that if you click on a non-focus field or in empty space currently target field will get the event.  You can override the entire event (return super.touchEvent () in any case) DOWN carefully to detect this situation.

  • Model of User Interface for interactive report region

    3.2 where we establish the model of user interface for interactive reports region?

    No matter what on the theme of the box I go to, the region of interactive reports shows the same. What and where do I change the model so that alternate lines use two different colors?

    There is no model for interactive reports as for a 'normal' report You need to edit the CSS and provide your own for this purpose.

    I think that most of the things are marked with the #apexir - firebug with combustion chamber is priceless. This thread may help:

    Re: changing the appearance of the interactive report.

  • is it useful to make the custom control custom/indicator icons?

    I was doing custom icons (finally not very personal, but it is still at least somet ext) are for the controls and indicators, when I realized the only time where you see when you open the control itself, ot if you go over it in the project with the help on.

    So the question is:

    It is useful to create a custom for each custom control icon that you perform, if we see that very rarely?  (The exception being a cluster, since in later versions of LabVIEW, you can actually represent your cluster on the BD as the icon that you have done for her, so it IS definitely worth making an icon for it.)

    Thank you!

    You said correctly, very often (I won't say RARELY) we see the icons to a custom... control but I prefer to create icon for each custom control because it certainly adds value.
    I often use the VI hierarchy, context help window window and here a custom icon help.

  • update to hold outside the custom control

    Hello

    I do a custom control similar to the slider.

    When I tap on the native cursor and go out with the finger, the cursor still have the focus and therefore the handle to continue to move.

    I'd like to get this behavior with my custom control, but when I move the finger outside it, it loses focus.

    No idea how to do this?

    Thanks in advance

    resolved using TouchBehavior.

    Adding it to the root of the custom control container, it will be receive touch events also when the finger is out of the bounduaries:

    m_rootContainer->addTouchBehavior(     TouchBehavior::create()           .addTouchReaction(TouchType::Move,                                       PropagationPhase::Bubbling,                                       TouchResponse::StartTracking));
    
  • During the installation of Flash Player, I get the prompt to close the customer control panel. What is and how it close?

    During the installation of Flash Player, I get the prompt to close the customer control panel. What is and how it close?

    This link to a thread on this forum about Adobe Flash Player explains how to kill (strong word) the customer dashboard:

    Client dashboard

    I assume you are using a Mac.

  • How to bind ResourceBundle to FXML that describes the custom control?

    What follows is FXML that describes the custom control:

    <fx:root type="javafx.scene.layout.VBox" xmlns:fx="http://javafx.com/fxml">
      <TextField fx:id="textField"/>
      <Button text="Click Me" onAction="#doSomething"/>
    </fx:root>
    

    Can we use the resource group as:

    <fx:root type="javafx.scene.layout.VBox" xmlns:fx="http://javafx.com/fxml">
      <TextField fx:id="textField"/>
      <Button text="%buttonText" onAction="#doSomething"/>
    </fx:root>
    

    with the choice of locale like ResourceBundle.getBundle ("database name", local); If regional settings are specified in the main Application that uses this custom control.

    Thanks for the explanation to anyboby who has related knowledge.

    The problem is the synchronization between the local parameter that defines the main application and the locale for the custom control to use in FXML. Thanks for help

  • doubt Doc ID 1618305.1 how to install and configure the user interface for content with WebCenter content 11.1.1.8.0

    doubt Doc-ID 1618305.1 How to install and configure the user interface with WebCenter content 11.1.1.8.0 content

    The portal_domain field contains;

    AdminServer (admin) and Enterprise Manager, (port 7001)

    IBR_server1, (port 16250)

    UCM_server1, (port 16200)

    WC_Spaces1, (port 8888).

    On the same machine, I have another weblogic, admin and for the ITS.

    The case is that continued to develop for the upgrade to the new skin WebCenter content.

    That's my goal.

    Then I did some research and came to the following notes in support.

    1 - how to install and configure the UI content with WebCenter content 11.1.1.8.0 and 11.1.1.9.0 (Doc ID 1618305.1()

    https://support.Oracle.com/epmos/faces/DocContentDisplay?_afrLoop=290841671406625 & ID = 1618305.1 & _afrWindowMode = 0 & _adf. CTRL-State = c7eq7vwdt_216

    and

    2 - update of the 11.1.1.8.0 UI content after you apply the Patch of Bundle WebCenter content 3 (MLR 3) or higher (Doc ID 1617477.1()

    https://support.Oracle.com/epmos/faces/DocContentDisplay?_afrLoop=291485823387355 & ID = 1617477.1 & _afrWindowMode = 0 & _adf. CTRL-State = c7eq7vwdt_245

    The UCM_server1 has the following House / app / oracle / Middleware / Oracle_ECM1 /.

    And the list of patches;

    ===================================================================================================

    Installed products of higher level (1):

    Oracle WebCenter content management install 11.1.1.8.0

    There are 1 products in this House of Oracle.

    Installed products (40):

    Cloning of the 11g Application Server 11.1.1.8.0 component

    Enterprise Manager Application Server Integrator Plugin - Management Service Support11.1.1.7.0

    FMW Control Plugin for Oracle inbound refinery 11.1.1.8.0

    FMW Control Plugin for Oracle WebCenter Capture 11.1.1.8.0

    Component install SDK 11.1.0.9.0

    Oracle Application Server Configuration 11.1.1.7.0

    Part of Oracle 11.1.1.7.0 Bali

    Oracle 11.1.1.8.0 capture

    Common files Oracle WebCenter content management 11.1.1.8.0

    Oracle Content Server 11.1.1.8.0

    Content of Oracle 11.1.1.8.0 Server component

    Content access Content Server Oracle 11.1.1.8.0

    Access to the contents of the Oracle Content Server 11.1.1.8.0 files

    Oracle Content Server Core 11.1.1.8.0

    Oracle 11.1.1.8.0 server content distribution

    Oracle extended Windowing Toolkit 11.1.1.7.0

    Oracle Fusion Middleware Admin Config 11.1.1.6.0

    Oracle Help for Java 11.1.1.7.0

    Oracle Help for the Web - UIX 11.1.1.7.0

    Oracle Help for the Web Shared Library 11.1.1.7.0

    Oracle Help share library 11.1.1.7.0

    Ice browser Oracle 11.1.1.7.0

    Oracle IRM                                                           11.1.1.6.0

    Oracle extended JFC Windowing Toolkit 11.1.1.7.0

    One-time correction of Oracle 11.1.0.9.9 installer

    Oracle outside in technology 8.4.0.0.0

    Oracle Remote Client of Intradoc 11.1.1.8.0

    Component of Oracle 11.1.1.7.0 rules

    Oracle SOA 11.1.1.7.0 workflow

    Universal Oracle install 11.1.0.9.0

    Oracle Upgrade Wizard 11.1.1.8.0

    Oracle Upgrade Wizard 11.1.1.8.0

    Upgrade Oracle WebCenter content management 11.1.1.8.0 Assistant

    Oracle WebCenter Capture 11.1.1.8.0

    Oracle Webcenter content - rights 11.1.1.7.0 documentalist

    Oracle WebCenter content - Universal Content Manager 11.1.1.8.0

    Oracle WebCenter content management install 11.1.1.8.0

    Oracle WebCenter content 11.1.1.8.0 management product suite

    Oracle WebCenter content: Imaging 11.1.1.8.0

    OracleAS Documentation 11.1.1.8.0

    There are 40 products installed in this House of Oracle.

    Interim plates (2):

    Patch 18188143: applied the sea Mar 19 17:37:32 BRT 2014

    Patch ID: 17263162

    Created February 5, 2014, 12:56:41 pm

    Bugs fixed:

    15872313, 17184457, 17515691, 16633496, 14317920, 15991141, 16892410

    14071471, 17929776, 13414481, 16042293, 17018964, 17627211, 16768600

    16037162, 14521663, 17768056, 14738077, 16460053, 17567819, 17806416

    15905591, 16080297, 17569908, 17043756, 18139768, 17211093, 17805499

    16418434, 16828356, 16671687, 17039391, 16698130, 17943394, 17632731

    17560900, 14246603, 15941347, 16045712

    Location of patch in the inventory:

    / app/Oracle/middleware/Oracle_ECM1/Inventory/oneoffs/18188143

    Patch location in the storage area:

    /app/Oracle/middleware/Oracle_ECM1/.patch_storage/18188143_Feb_5_2014_12_56_41

    Patch 18088049: applied the sea Mar 19 17:35:58 BRT 2014

    Patch ID: 17182855

    Created February 16, 2014 20:35:48 hrs PST8PDT

    Bugs fixed:

    17919101, 17894065, 17884570, 17883868, 17883112, 17854549, 17835742

    17832305, 17819213, 17812338, 17789722, 17783376, 17778867, 17761746

    17740542, 17733871, 17698852, 17658821, 17642431, 17636186, 17622384

    17616664, 17616611, 17616489, 17613656, 17608703, 17589960, 17581458

    17574153, 17567413, 17565564, 17558210, 17558068, 17546505, 17545841

    17540480, 17528590, 17514070, 17511368, 17511271, 17511089, 17501678

    17500375, 17475733, 17449617, 17421368, 17417817, 17416821, 17416807

    17416771, 17416377, 17416343, 17402732, 17401071, 17401052, 17397875

    17393920, 17393892, 17369286, 17368525, 17368096, 17362858, 17362130

    17354877, 17353764, 17352746, 17335303, 17335290, 17330493, 17324707

    17323595, 17323038, 17317268, 17314494, 17313064, 17313052, 17313000

    17312990, 17312933, 17312863, 17312366, 17298386, 17295962, 17290804

    17285105, 17270986, 17261952, 17255019, 17219134, 17216119, 17206903

    17201035, 17200854, 17199763, 17187804, 17185539, 17171852, 17171818

    17164502, 17160600, 17153780, 17074852, 17050451, 17049175, 17026301

    17008220, 17007746, 17007534, 17006378, 16999307, 16999291, 16991380

    16980256, 16980207, 16980196, 16979042, 16961904, 16958142, 16954858

    16941623, 16936055, 16936048, 16936036, 16936020, 16936006, 16935987

    16935976, 16921682, 16908287, 16858148, 16815976, 16796213, 13931337

    17424037, 17006115, 17171834

    OPatch succeeded.

    ==============================================================================================

    And contains the following configurations in config.cfg

    ==============================================================================================

    SocketAddressHostSecurityFilter = 127.0.0.1 | 0:0:0:0:0:0:0:1 | 192.168.1. * | 10.62.1.79

    xPortalSecurityPropagate = true

    Web server = javaAppServer

    AllowUpdateForGenwww = 1

    SearchIndexerEngineName = OracleTextSearch

    IndexerDatabaseProviderName = SystemDatabase

    AdditionalEscapeChars = -: #.

    FileEncoding = UTF8

    MaxQueryRows = 2000

    DisableAuthorizationTokenCheck = true

    IntradocServerPort = 4444

    SchemaPublishInterval = 604800

    SSAllowDelayedProjectWrites = true

    IdcServerThreadQueryTimeout = 120

    DisableQueryTimeoutSupport = false

    MaxSearchConnections = 20

    #Cache

    UseSearchCache = false

    #

    #AdditionalEscapeChars = _: #, -: {-}, has: A, GOLD: GOLD, CAN: CAN, AND: AND at the END:

    # Accesing a content item on a mapped Web URL (WebUrlMap) fails with the error: "unable to retrieve the content. Security access denied» (Doc ID 1639028.1()

    MaxAccountsInSecurityClause = 300

    # end (Doc ID 1639028.1()

    #Search fails for external users in WCC after upgrade to 11.1.1.8.0 (Doc ID 1676468.1()

    DoCaseInsensitiveAcctSearch = false

    # end (Doc ID 1676468.1()

    #MigrationFormatForfApplicationGUID = dCollectionName:dCollectionGUID

    ==============================================================================================

    To my UCM_Server1 content WebCenter.

    As I already have a WebCenter content I have to follow the second part of the note

    How to install and configure the UI content with WebCenter content 11.1.1.8.0 and 11.1.1.9.0 (Doc ID 1618305.1).

    Install and configure content WebCenter ADF WebUI against WebCenter Content Server

    Step 1) install the MDS schema

    (Step 2), install the Weblogic Server

    11 GR 1 material step 3) DOWNLOAD and install Oracle Application Development Framework (11.1.1.6.0) in the new WebUI WLS Middleware House, found here

    Step 4) Download and apply Patch 16, 546 129.

    Step 5) Download and apply Patch 16, 546 157.

    Step 6) download and apply the Patch and then 19,469,801, 18,102,108 Patch

    Step 7) copy the wccadf files in the field of user interface

    Step 8) Oracle on demand services (MDS) metadata registry

    Step 9) Place the WebCenter content domain user interface model

    Step 10) run the Setup Wizard on the new home of Middleware WebUI to create the new domain

    Step 11) updated the Oracle ADF of shared libraries

    Step 12) start the domain WebUI administration server

    Step 13) Save target Managed Server with the MDS repository and create the metadata partition

    Step 14) start the server managed WebUI.

    Step 15) associate UI WebCenter content to Content Server.

    Step 16) reboot the WebUI ADF server managed.

    Step 17 access the WebUI

    Step 18) complete the Configuration of the workflow

    Step 19) apply the latest Patch Bundle content UI of WebCenter

    MY DOUBT IS:

    To read the steps that I understood, to 19, with success, in the end, I will have an another WebLogic with a domain name and its respective EM.

    I have two servers weblogic?

    portal_domain (explained above) and a new wccui_domain wls and domain.

    This fix it?

    Two WLS to keep WebCenter portal and content, and other elements.

    Because I'm not able to do with the WLS even where I UCM_server1 today?

    Thanks for all suggestions and criticism.

    To read the steps that I understood, to 19, with success, in the end, I will have an another WebLogic with a domain name and its respective EM.

    I have two servers weblogic?

    portal_domain (explained above) and a new wccui_domain wls and domain.

    This fix it?

    Two WLS to keep WebCenter portal and content, and other elements.

    Because I could not do with the WLS even where I UCM_server1 today?

    Yes, up to 11.1.1.9.0, you will need to install a new wls House (new wls server admin) and then configure WCC ui there. User interface and COE will not work in the same field. You can have the portal and content under the same House of wls and install a new one for the user interface.

    This is due to a problem with ADF and WCC libraries.

    With 12 c, this dependence is not there, and you can install / configure all 3 (Portal, content and adf ui) applications on the same domain.

  • How disable (reverse) ui icon, a user interface for the production of coding / engineering mode

    Excuse me

    I'm coding a sample UI on LabView8.2

    full function be activated in the user interface, and engineer can adjust the factors through the UI program

    now, I want to classify the mode of production and engineering for the user interface

    the engineer mode - enable full function of engineering change

    mode of production - only activate a small function for the operator to change

    I hope not coding 2ea program, I hope use example of process to achieve

    so...

    I want to builld a UI for the mode of production

    Have disable (reverse) Labview technic?, let icon convert 'gray'---> disable

    the user can see the icon on the user interface, but they cannot resolve the factors of function

    Thank you

    "2ea program."

    "disable (reverse) technic?", let icon convert 'gray'---> disable

    I don't know what some of the terminology is that you use.  Or what you mean by disabling functions or icons.

    I'm going to guess that you really want to be able to disable and gray to controls on the front panel.  You can write to a property node for each of your orders of façade called 'off '.  You can activate, deactivate and disable/gray.

  • Update user interface for execution of the web service thread.

    I have a thread that calls a web service. This thread is run from a menu item

    public MenuItem _search = new MenuItem("Search", 10, 0){
        public void run(){
            // Code to show progress popup, either a screen or popupscreen
    
            // Start Thread
    
            // Hide popup
    
            // Navigate to page
            }
        };
    

    My code is as above!

    The thread runs and moves to the new page. The pop-up screen can't, why is this?

    Surely, I can update the user interface before starting the thread?

    How can I emplement a loading screen?

    I tried to use the locking of the event and invokelater (according to this doc) to call the UI updates but no luck?

    If you display the popup and then hide it quickly enough the BlackBerry framework don't will never paint it because painting is a low priority, always put last on the event queue. This does not change even if you use invokeLater (which is the right thing to do anyway) - unless you let the popup be for awhile before rejecting.

    The usual way to display the progress screen is to pass the handle (reference) for the popup that you create in the thread. This Thread can use then a few reminders of this popup screen to update and finally close.

    So "Hide popup" should not be in the your menu item run() method. If your 'navigate to the page' is based on the results of the background thread, remove run() of the item of menu as well.

    If you search the knowledge base for "sample"Please wait"screen", you will find an excellent example of such interaction:

    Example of screen 'Please Wait' - part 1

    Example of screen 'Please Wait' - part 2

    Example of screen 'Please Wait' - part 3

    Enjoy!

  • Sharing of inconsistency between the API and the user interface for catalog

    In the vCloud Director UI, you can go to the properties of a catalog and share TWO everyone in read-only AND specific users/groups to have full control of the value. The API seems to allow to BE ReadOnly value all or specific users/groups to full control. Even when I put the two in the UI, when I do a GET with the API, if IsSharedToEveryone is set to true, the individual user/group access control settings are not displayed. They are mutually exclusive?

    So who is correct? the API or the UI?

    If the user interface is correct, how can I get the same result with the API?

    What I want to achieve, is to allow full control to a specific group of users and read-only for everyone.

    The workaround is to have a group set for total control and another with everyone in the org in a different group of read-only value.

    Hello

    This is a limitation of v1.0 of the vCD REST API. It is already fixed and will be available in the next version.

    In this case, the user interface is correct.

    Kind regards

    Todor Todorov

  • create the user interface for script tabs

    Hey guys. I'm new to the script for the AE. I'm trying to create a user interface that has different functions in different tabs, so that, according to article your you get different options. Is this possible? If Yes, are there examples or tutorials that I can follow? all resources at all would be great. Thanks in advance.

    I actually have a set of three videos is dedicated to ExtendScript GUI which will publish in about five weeks. It will show how to create and fill panels with tabs and much more. It may not be soon enough for your current task however. I would like to make a post here that has some basic commands to help you get started in general.

    http://forums.Adobe.com/message/3973071#3973071

  • How can I change the language of the user interface for my trial version of Illustrator CS6?

    I don't know why, but I had the Danish, English or Dutch version would be nice.

    Re-download the package in the correct version. There is no way to change the language of the user interface on the trial in the case. Also check the settings of your system language. By default, installs broken will use the settings system locale. that cannot be replaced with a serial number when you purchase the product.

    Mylenium

  • MUI (multilingual user interface) for XP Home Edition

    My satellite P15-S409 has windows xp edition version 2002 sp1 family. I can't install mui (day 24/10/2001). It says "MUI cannot be installed on this platform. Why - anyone knows?

    Hello.

    Unfortunately the Windows XP Home edition doesn't supports Multilingual User Interface technology. I found this site from Microsoft and you will find a detailed information.

    http://www.Microsoft.com/globaldev/DrIntl/FAQs/muifaq.mspx#MUIques2

    Good bye

  • User interface for my application, look for lib accweather like

    Hello im developing an application that I have user interface design problem, I need to lib for UI for my application, my application UI needs like app Accweather to help...

    Cascade SDK

Maybe you are looking for