How to create new screen in maximo anywhere app - maximo-anywhere

I have maximo anywhere code base, i would like to create new screen. Please let me know how can i start. I have added new view inside app.xml as below
How we can identify where to place this view?

Look at transitionTo, that's typically how we launch these subviews. Take a look at these examples in our documentation:
http://www-01.ibm.com/support/knowledgecenter/SSPJLC_7.5.2/com.ibm.si.mpl.doc_7.5.2/config_apps/t_add_rel_records.html?lang=en

Related

Xamarin.Forms Introduction Guid

I finished the functionalities of my app. Now when user first time login i need to make introduction guide on every page, with a short text Myabe some alert. Also on the dialog need chechbox , if he check the guide wont show again. I dont know where to start and how to organize this. Any example, practise to start. On all the dialogs will be static text.
You can refer any sample which guides you to create Tutorial Screen.
You can use built in Carousel View to have that as well.
Here I'm sharing one of that: How to add tutorial screen in Xamarin.Forms
Edit
To add it on every single page, you can use custom Popup, which can be created using Rg.Plugins.Popup

Qt Screenshot sharing app - How to select the area of a screen

I am trying to code an app in Qt for capturing and then sharing the screenshots. For now my application captures the screenshot, shows a preview and saves it. I am yet to do the upload part. but before that I would like to be able to select the area of the screen of which the screenshot needs to be captured.
I tried searching and I couldn't find any helpful articles or documents in Qt. So can anyone help me?
PS: The idea is to create a similar app like lightshot and several other similar tools.
Thanks in advance
There are two methods that you can use for this: -
1) Capture an image of the screen and then display that, full screen to the user, essentially allowing the user to crop the image.
2) A more commonly used method is to create a full-screen, topmost window that has no title bar and is transparent. This allows the user to drag out an area, which you can draw an outline to represent the area the user requires.
I recommend the 2nd method and creating a transparent window is simply a matter of changing the window flags, as you can see here.

Windows 8 phone app - How to add "share app" button?

I have an app, and I'd like to add a share button to it. Once the button is clicked, I'd like it to open the following window:
Then the user will choose where to share it and it will display the following default message:
"Just found this great app! Find it here:http://www.windowsphone.com/en-us/store/app/amtrak/c8824bb8-3a85-48f7-af54-954bd5673cc6"
Can you please tell me how to do it?
Maybe you want Task as in Microsoft.Phone.Tasks namespace. And which Task to choose is depending on what kind of information you want to share :
Media file. how to use ShareMediaTask
Link/URL. how to use ShareLinkTask
Status. how to use ShareStatusTask

Preserve position when moving UIView in hierarchy (paste-in-place)

in Xcode 4 IB is there a way to move a bunch of subviews from one superview to another without destroying their current layout?
This should be super easy, but when I try to copy/paste or move them in the view tree they all move to one position. I'd prefer not to reposition each of them manually after adding one extra view to hold part of a form for example.
In Flash there is Cmd-Shift-C for 'paste in place'. I'm looking for something similar in IB.
I had the same problem as OP, but I found a great solution on another thread. Answer by Jay:
https://stackoverflow.com/a/16952902/2070758
Basically, you can't copy/paste directly, but you can with some extra steps:
Select all views, labels etc, you want to move to the new super view
Editor -> embed in view
Move the newly created "container" view to the view you wanted to paste to originally
Select the "container" view. Editor -> unembed. All the elements will be dumped into the super view, maintaining the layout.
Was looking for the solution to the same annoying limitation in xCode... found a trick:
Create a new UIViewController in IB
Paste all your stuff in its root view, the positions should be preserved
Copy and paste this root view where ever you need it,
worked for me but geeesh what a pain.

Adobe Air custom statusbar

I've been looking for some examples on creating a custom statusbar for an AIR application, but haven't found anything really useful. That was until I started looking around in the Tour de Flex AIR app for an example, and it was right there (part of the app itself). Would anyone have some suggestions on replicating this statusbar. The trouble I'm having is that I cannot seem to get the value of a dynamic variable to display. I'm attempting to display the current user.
In your application's initialize handler:
statusBarFactory = new ClassFactory(yourpackage.yourStatusBarClassName);
Application will create status bar from your class.
In your descriptor xml, make the systemChrome tag false, then it's just a matter of imagining how you want to make your status bar look and implement it.

Resources