How to push a Global screen on top of all the screen?

Hi guys,.

I'm working on an application of cascade.

In the application from Server looging page and I have displayed in WebView Cascade using qml.

Once the user is connected, I need start a clock and after 15 min, I need to display a screen on the top of any screen. Once the user submit on this newly pushed screen, I need to return to the previous screen where the user was.

Please give me an idea how to do it.

Hello

This link below helped me to solve my problem.

http://supportforums.BlackBerry.com/T5/Cascades-development/push-a-QML-page-using-a-C-defined-Naviga...

Tags: BlackBerry Developers

Similar Questions

  • How to set global variables for use by all THE #subform [0] items of form1. ?

    Hi all

    I don't know how to code javascript but am new to Adobe LiveCycle.  When I open the script editor, I have the following code (the code is in United Nations in bold):

    -form1. #subform [0]: initialize :-(FormCalc, client).

    //////////////////////////////
    TO START: SET GLOBAL PRICES.
    //////////////////////////////

    var Cityscope_Sydney_CostUser1 = 60,39;
    var Cityscope_Sydney_CostUsers2to5 = 3.02;
    var Cityscope_Sydney_CostUsers6to20 = 1.21;
    var Cityscope_Sydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_Sydney_CostHardCopyWithoutOnline = 54,67;
    var Cityscope_Sydney_CostHardCopyAdditional = 14.59;

    var Cityscope_NorthSydney_CostUser1 = 48,40;
    var Cityscope_NorthSydney_CostUsers2to5 = 2.42;
    var Cityscope_NorthSydney_CostUsers6to20 = 0.97;
    var Cityscope_NorthSydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_NorthSydney_CostHardCopyWithoutOnline = 43,54;
    var Cityscope_NorthSydney_CostHardCopyAdditional = 14.59;


    ////////////////////////////
    END: SET GLOBAL PRICES.
    ////////////////////////////

    -form1. #subform [0]: enter :-(FormCalc, client).

    -form1. #subform [0]: output :-(FormCalc, client).

    -form1. #subform [0]: calculate :-(FormCalc, client).

    -form1. #subform [0]: validate :-(FormCalc, client).

    -form1. #subform [0]: preSave - (FormCalc, client).

    < < = etc etc etc = > >

    -form1. #subform [0]. Item1Cost::initialize :-(JavaScript, client).

    -form1. #subform [0]. Item1Cost::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    Store the values of the form of friendly names.
    var AreaSelected = Item1Area.rawValue;
    var NumberOfUsersSelected = Item1Users.rawValue;

    Declare other variables.
    var Users1Calculation;
    var Users2to5Calculation;
    var Users6to20Calculation;


    Calculate the cost to the "components" user will depend on the number of users selected for the region.
    Switch (true)
    {
    If (NumberOfUsersSelected < 2):
    Users1Calculation = NumberOfUsersSelected * Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 0.00;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 1 & & NumberOfUsersSelected < 6):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = (NumberOfUsersSelected - 1) * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 5):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 4 * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = (NumberOfUsersSelected - 5) * Cityscope_Sydney_CostUsers6to20;
    break;
    by default:
    Alert ("BROKEN: calculate the individual components of cost of use will depend on the number of users selected for the region.");

    }

    apply the total cost for this article
    Item1Cost.RawValue = Users1Calculation + Users2to5Calculation + Users6to20Calculation;

    -form1. #subform [0]. Item1Cost::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::ready:layout - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::initialize :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::calculate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Users::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Users::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::ready:layout - (FormCalc, client)-

    .. and so on and so forth...

    In short, I want the code in:

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    .. .to be able to access the variables I created in:

    -form1. #subform [0]: initialize :-(FormCalc, client).


    (I guess that's where I store global variables)

    At this point, global variables are not accessible with the above configuration.  Was the only one I can get this working is to cut and paste the Globals in each item of form1. #subform [0], which of course defeats the purpose of global variables!  I intend to have a lot more items so wouldn't duplicate global variables for each of them!

    Can someone show me how to do this?

    Any help is very appreciated!

    Thank you

    Stanbridge

    Post edited by: stanbridgej - colors and fonts or not will not save.  Are bolded my question make (non-fat) code easier to read (I hope).

    I haven't used Formccalc, but I thought it would be the same regardless. Insert a script object to the top of the hierarchy and call it, for example "sco." Paste the Globals. Then refer to variables of the extent that sco. Cityscope_Sydney_CostUser1, etc. Make one

    App.Alert (sco. Cityscope_Sydney_CostUser1);

    one of the fields. If the debugger is activated, it will tell you if it cannot resolve the reference as "sco. In this case, you may need to use the som expression to reference the script object, for example

    var scoScript = xfa.resolveNode ("topOfHierarchy.sco");

    scoScript.Cityscope_Sydney_CostUser1

    But if as close as possible to the top of the hierarchy above should work.

  • 'screen-top' fall all the time... any spring effect

    HI - whenever I'm back at the top of the screen, he falls all the time... There is no 'spring' no effect...... no "resistance".
    Can you help me?

    Hi Henrik,

    The hinges of friction on the lid of your laptop computer failed, and therefore the lid will not stay in open position. It is unlikely that you will be able to get the new hinges, otherwise a Toshiba authorized service agent, then I'd say that your best course of action is to contact your nearest ASP and ask for a quote to replace the hinges.

    Kind regards

  • How to access a global variable that is common between the different baskets project library

    My project consist of several libraries, after generation the library project packed for each library, I find it cannot share data in a global variable between different packaged project library file. For example: packed project library #1 contains VI variables global wirte 'position' and give it a value '400 '. Library #2 present another VI project try to read this global variable, but he gave reading of is NULL not "400". Why has this happened? Is it possible to solve, welcome any help, I wll appreciate for this!

    If you understand what is happening here...

    When you build a PPL, it takes in the .lvlib and also all the dependencies of the .lvlib.

    In your case, when you generate the Test Task.lvlib in a .lvlibp, she also pulls on a copy of the DataProcess.lvlib:GlobalsVariable.vi because it's addictive to read GlobalVar.vi.

    When your application runs, you end up with two copies of GlobalsVariable.vi in memory:

    DataProcess.lvlibp:GlobalsVariable.vi

    AND

    Test Task.lvlibp:: GlobalsVariable.vi (I don't know how PPLs namespace dependencies... If there is still the DataProcess.lvlibp)

    Because they are different screws (i.e. in a different namespace), they have their own memory and that's why you can't access the data.

    Your Test Task.lvlibp calls the version of GlobalsVariable.vi, he pulled the dependencies.

    To solve this problem - you must ensure that Task.lvlibp of Test calls the version of GlobalsVariable.vi of the DataProcess.lvlibp - you'll need to replace all instances with the version of the PPL. Of course, if you run DataProcess in the development environment, then it will always be bad namespaced, hence the suggestion to put your global variable VI in is own PPL that you then use in the process of data and Test tasks.

  • How to get a variable of a sub - VI all the way to the top level vi (GUI)

    Hi all

    I am currently working on controlling the movement of the six axes with labview through RS232 communication. These axes are controlled in order so not more than one axis moves at a certain point in time. To do this, I need to query the axis status bit to see whether or not the move is done. Basically a while loop to stop "asking" for the State when the statusbit is '1 '. This is done by a somewhat deep nested vi in software architecture (low level vi). The behavior of this vi is necessary because it blocks the execution of the remaining vi until the movement is finished. Therefore, I am sure that no command is sent to move a second axis during the movement of the axis of another.

    I want to do is to bring the traffic all the way to the front of the user interface so that the operator can see if the axis is in motion or not. But the problem is that the vi that handles these requests status only publishes the output data when the while loop stops, in this case when the movement is completed. And I would like to know the status on a regular basis, for example every 100ms or so?

    How can I get the value of the bit on the status in the GUI? I have to place another vi on the upper level which requires also that the status?

    Any help is much appreciated,

    Best regards.

    You can pass a reference to what ever VI main control/indicator panel you want to display it on.  Then in your Subvi loop, use this reference with a knot of property value for updating control/indicator light panel.

  • Why the words with enlarged grid friends how can I reduce it so I can see all the grid at the same time

    Why has Word with friends expanded grid I see not all the grid without scrolling to the top a low how do I minimize it again miminisi

    NG reduced just the entire page

    Hello
     
    1. you play this Online? If Yes, do you use the Internet Explorer browser to play the game?
    2 have you made any changes to the computer before the show?
    3. are you able to play games without any problem?
     
     
    Answer for you help the better.
     
    Follow the article mentioned below, if you use the Internet Explorer browser to play this game online:
     
    The problems of games online using Internet Explorer:
    http://support.Microsoft.com/kb/2528246
     
    You can also check:
    Suggestions for a question on the help forums
    http://support.Microsoft.com/kb/555375
  • How can I insert video transistions by default for all the clips?  and the last version comments?

    I know how to set the default transition and how to apply it globally to a shideshow of images... but for some reason, the process of using the video transition default for video clips is baffling me... it must be a simple step, I don't see... I tried to help but could not find here either... ideas?

    I use a very old PE 2.0...   I know I should update but I looked at the interface 4.0 and it seems confusing... I'm afraid that later versions can be even more complicated... ideas of the users who have worked their way through, or by using the latest version?

    Thank you

    David

    The possibility to add the default transition to multiple clips selected at the same time has not been added in version 8, David. I'm sorry.

  • How can I make my smaller mailboxes, so that all the stuff does not appear after that I have opemed it?

    The email I'm reading is very large with a lot of things that I did not need to see. How can I make my mailbox smaller?

    Remove the stuff that you don't need to see and to compact the folders later.
    http://KB.mozillazine.org/Compacting_folders

  • Tecra A9: How I get saved keys FN-esse to work all the time?

    How can I get my saved keys FN-esse to work all the time?

    It is without having to use the Toshiba Assist button to bring up the Fn-esse chart on my desk?

    Hi Cameillia

    Please excuse my question, but what do you do exactly?
    You want to use the FN + F1 - F9 button functionality without using the FN key?

    Sorry, but I think that it is not possible

    But if you use Vista OS, then you can use the mouse cursor and might point up, display area and could activate the Vista FlashCards.
    The FlashCards support the same functionality as the use of the keys FN + F1 - F9

    Concerning

  • How do I change Windows mail app to show all the email

    The screen displays a small bar on the left, right, with a list of folders. then the rest of the screen is split between a list of senders and email that I click. This means that I can't actually read the e-mail because it is wider than half the screen. It's annoying bloody repulses me with this shit. How closer senders list so I can read emails without having to open the mail in a separate window. One who sets this parameter was a jerk

    Thank you

    Hi Natalieme,

    Welcome to the Microsoft community. According to the description, it seems that you want to display email on a full page in Windows 8 mail application.

    I'm sorry to inform you that it is the type of display available in Windows 8 mail by design application and cannot be changed or adjusted. To know the parameters in Windows 8 mail application, you can check out the link below:

    Application of mail for Windows:

    Parameters

    Hope this information was useful.

  • How to apply animation preset to a certain or all the layers through a script?

    Hi all

    I have several layers, and I want to apply a random animation preset in each layer via a script.

    I know how to apply an effect, for example. .property("effects").AddProperty [somelayer] ('block of dissolution"),

    But how to apply an entire animation preset (for example. Block the dissolution - digital or Wipe - pixelstorm 3D card).

    Thank you!

    Once you have the path to the screening, you can do it like this:

    myLayer.applyPreset (File (myPresetPath));

    Dan

  • How can I stop Firefox ask for my password all the time?

    Each time my computer (Windows 10) passes to the screensaver, and I go back to him, but my password. How can I stop this?

    It's the computer asking password. No Firefox. You can set the screen saver to ask for your ID or not.

  • How can I block an add-on which appears all the time after I remove it?

    I have disabled that add (Cinema more or sometimes with other name), daily also delete and restart firefox, but next time that I open it, it appears again.

    Try to use each software listed in this article to support:
    How can I get rid of malware?

  • How can I get my email to stop doing all the updates of mac support?

    How can I get my e-mail to stop receiving all messages from the community of mac support?  My Inbox is implode!

    Follow the instructions here > https://discussions.apple.com/static/apple/tutorial/email.html

  • How can I send a picture of ThinkLink with all the links incorporated into the Thunderword Email?

    As you know, ThinkLink images have embedded links (word, images, videos, etc. files). However, I am not able to send these images through emails from Thunderword. I tried the two picture in picture and insert the HTML code, but nothing works. Of course, I understand that ThinkLink is a new concept and most of the mail clients do not support.
    Thank you

    No, I'm not aware. I now google thinklink, attached to their site and found that they do not create an image. Only Javascript.

    If no Thunderbird e-mail client, which doesn't allow javascript, or anyone in their browser for security reasons, will see your image maps because they are not images that they are interactive programs, written in Javascript.

    Now how is unsubscribed from these people, they have already tried spamming my list of Google Plusfriends together.

Maybe you are looking for

  • Since FF16, 17, I can't use BACKSPACE to make corrections on FB. But it does not work on IE 11.

    I used FF for many, many years. Now when I use FF17.1 it does not leave my use backspace or my back of slider, make some corrections on FB. Should people in my group have no problem because they do not even know FF is they all use IE11.I tried your a

  • How to make wider scrollbars?

    How can I make the vertical and horizontal scroll bars more wide? They are too narrow/thin. Thank you! Ubuntu 10.04; Firefox 3.6.3 - Firefox for Ubuntu canonical - 1.0. [Firefox version included in the Ubuntu 10.04 installation.]

  • Why iTunes deselect pieces before burning a disc?

    If something has changed in v11.4? Trying to burn a music CD and iTunes deselects 3 songs just before burning. I know that there is enough space on the disk. I even made a playlist with only 3 songs and they don't burn. That is what it is?

  • echo test on samsung galaxi s ii

    Can not activate echo test

  • IP 7220 alignment problem

    I'm running with windows and an ip7220 printer.  This printer was sent, by cannon, 2 years ago (part of which is quoted below - last paragraph), as a replacement for another printer Canon (ip4920) that had gone wrong.  This printer don't work never r