Native user interface

Hey everyone, so I'm working on my application, which will be an interface to my professional project (URL shortening service the most advanced, which you are all cordially invited to use and submit bugs to: http://tncr.ws)

in any case, I have this feeling of application as a native application of BB, and having the bar at the top as seen in some of the sample applications, but am coding my application entirely in ActionScript and don't use do not XMXL at all, so I'm not entirely sure how to display the top bar.

Any help would be greatly appreciated!

Hey tensioncore,.

It would probably be a better and a more easy idea to use the QNX Image located in the class qnx.ui.display.Image class. You can find the documentation for it here:

http://www.BlackBerry.com/developers/docs/airapi/1.0.0/QNX/UI/display/image.html

Here is an example:

import qnx.ui.display.Image;import flash.filesystem.File;

(...)

var myImage:Image = new Image();myImage.setImage('file://' + File.applicationDirectory.nativePath + '/images/filename.jpg');

addChild(myImage);

Note also that the image path is compared to your home directory in the src folder. so in my example image would be located under the images folder in the src folder. hope that helps!

also a friendly reminder when he asked a new question unrelated to the original topic that you should put it as a new topic so others can find your question and answer it easily. don't want to sound like a COP haha forum

in any case don't let me dissuade you from asking more questions that's what we're here for! Good luck!

Edit: Sorry I forgot to mention the portion addEventListener to your question. It is not crucial to my tests because it is loaded so quickly. I used to do an addChild() right after and it loads fine. But to be on the safe side in case of a longer turnaround time due to greater load on the system for any reason, you must perform an addEventListener. good luck once again!


#2 Edit: The setImage() method only accepts the URL and not only the path itself. The updated code with the fix. Sorry for the confusion.

Tags: BlackBerry Developers

Similar Questions

  • Anyway is to clear all the elements of native user interface of BB?

    Hello

    As far as I know, we can get the android user interface elements by sending a "DUMP" command to port 4399 (http://blog.csdn.net/roger_ge/archive/2010/04/28/5538266.aspx), is it possible to similor to BB?

    Thank you!

    None

  • Easy way to use the native user interface in the AIR for mobile?

    Hi, I use Flash CC for the mobile game, but when I want to create a regular application I need to create my own user interface and which takes a lot of time, I found several components on the internet but they require coding, is it parts components that you can simply drag and drop into the CC Flash?

    Thanks in advance

    Maybe it's what you need

    IgG.me/at/airui

  • Web pages and user interface display too small in Firefox 20.0.1 (but fine in IE and Chrome) - how can I fix?

    On my Dell Inspiron 7720, running Windows 8 64-bit, Chrome and IE display web pages in their correct format immediately after their installation, but Firefox 20.0.1 displays too little (and the user interface of FF is too small as well).

    I went on all kinds of things, it might be and know I can install an add-on to enlarge pages at least, but I really want to get FF displaying correctly of course.

    I use my native resolution 1920 x 1080 - laptop and have to display Windows set up for display at 150% - % of Windows display development does not affect display FF.

    Can someone tell me please how to get FF displaying correctly (without an add-on.)

    Help appreciated,
    US5

    Thanks for your help cor - el.

    I just installed NoSquint and it works perfectly for the web; pages. Then, I found a theme with bigger icons in "complete themes" - there are a number of them.

    Guess I expected to understand why only FF was smaller, (not just solve the problem) - However, the setting is very nice-thanks!

  • Creating an application without a head without a user interface

    I use the NDK for about 2 weeks now and I can't seem to find any resource on the following blackberry Web site.

    I am creating an application without a head that would run every 24 hours on my blackberry.  I have the app created with Momentics headless and it does what I need it to do. But right now I need to have a button in a user interface to call him.

    What I'm trying to do is,

    1. Have created enforcement wihtout the need of a user interface for packing it or deployment using our company BES.

    If you can point me to a tutorial or an example that would be great.  Of course if you have a response to these two that is too !

    Thank you

    Lothus.

    Watch the timer shutter release for app without head, code snippets and explanations can be found here:
    https://developer.BlackBerry.com/native/documentation/device_platform/headless_apps/triggers.html#TI...

    If you need a more complete example, I can create one, but I don't know when I'll have the time to do it, he could be close to mid-January. But honestly, all the necessary code is already in the docs.

    Don't forget to register action TIMER_FIRED in your bar - descriptor.xml under your app without a head part, I think it is also covered in the docs.

  • Citing the part of the user interface of the game without head in an app without head

    Hello

    I try to call my interface section user app without head of service class (part long term without a head), as shown below:

    application of BB::System:InvokeRequest;

    request.setTarget ("com.myDomain.myAppName");

    request.setAction ("com.myDomain.myAppName.START");

    InvokeTargetReply * response = m_invokeManager-> invoke (request);

    {if (Reply)}

    QObject::connect (response, SIGNAL (finished (()), this, SLOT (onInvokeResult ()));

    _invokeTargetReply = response;

    }

    else {}

    qDebug()< "failed="" to="" start="" invocation:="">

    }

    the error response is always "not objective". I double checked that the id of the target is my id app (user interface section) and that it is registered as target to call in the xml file bar


    application
    myAppName

    Icon.PNG

    myAppName

    I don't know why he keeps giving me the error response target?

    Made a typo, the Notification and NotificationDialog are part of the bb: platform.

    Here are their respective documents:
    Notification https://developer.blackberry.com/native/reference/cascades/bb__platform__notification.html#function-...

    NotificationDialog https://developer.blackberry.com/native/reference/cascades/bb__platform__notificationdialog.html#fun...

  • Use QObject as a property in the user interface element

    I want to store an instance of QObject in an element of user interface for later use. My attempt to use a type of QtObject failed as follows:

    model var = retrieveModel() / / get instance of method C++ Q_INVOKABLE QObject

    containerInstance.model = modΦle

    ...

    {Of container

    ID: containerInstance

    model QtObject properties.<-- attempt="" to="" store="" the="" qobject="">

    {Label

    text: model.name

    onXYZ: {}

    Model of QObject here use

    }

    }
    }

    But apparently QtObject differs from QObject:

    Asset: / / / test. QML:51: error: could not assign QObject * to bb::cascades:QmlQObject *.

    Does anyone have an idea to store a QObject as a property of a UI element? My other option is to store the model instance of QObject as a global variable in "pints", but this isn't a nice solution.

    You must expose the object that you want to use in C++ and QML.

    Read this to understand how it's done...

    http://developer.BlackBerry.com/native/documentation/Cascades/dev/integrating_cpp_qml/

  • user interfaces

    I can make user interfaces using html and css, and others in java code. and I don't mean a widget.

    Hi chicoxml,

    I think I know what your interest is. Please take a look at PhoneGap. They made a framework for HTML, developer to do a simple software runs on Blackberry. The software will have the icon itself and native look, but the software actually call the browser to open HTML pages from the res directory.

    You can also try titanium which is rather nice for Javascript developer. Please give a try.

  • Shell of the user interface: generate a new TAB within the area with the help of a binding element.

    Hello Oracle Community:

    I work with an application based on the model of Shell user interface design.

    My use case is

    #1: start a tab Dynamics from the Navigation pane.

    #2: tab loads in the local area. (this works as expected, pictured below)

    #3: launch of the additional tabs in the page loading in the step #2.  They are triggered by simple links on the .jsff page.  (this does not work - please help.  This should work?  If so, what missing am me?)

    Question : Can I launch a new tab from a link component in the local area (page .jsff)?

    As you can see I have links on my dashboard and I want that they engage in new tabs when you click.  Please test before responding "in theory".

    junker.png

    Here's how this link is setup.

    junk2.png

    junk3.PNG

    junkIT.PNG

    Here is my error logs.

    [15: 05:23] Application deployed successfully.

    [15: 05:23] the constriction of context following URLS have been defined and can be used as a starting point for testing your application:

    [15: 05:23] http://192.168.1.154:7001 / MyAST

    [15: 05:23] for deployment time: 18 seconds

    [15: 05:23]-deployment is complete.  ----

    Run start time: 18394 ms.

    [MyAst12cUpgrade of the application currently running on IntegratedWebLogicServer]

    URL - target Http://127.0.0.1:7001 / MyAST/faces/Login

    15:05:23.891 [ExecuteThread [ASSET]: '1' for the queue: "(self-adjusting) weblogic.kernel.Default"] c.a.view.utils.MySessionListener DEBUG - # present Session created: xP0oqsMzARHojfj6kJ-MJGW53jzYWYI2swzTPA_zyG6yHi30HJZb! 1821648284! 1439496323891 on Thu Aug 13 15:05:23 CDT 2015

    < org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl > < ViewHandlerImpl > < _checkTimestamp > < TIMESTAMP_CHECKING_ENABLED_SHOULDNOT_IN_PRODUCTION >

    < org.apache.myfaces.trinidadinternal.skin.SkinStyleSheetParserUtils > < SkinStyleSheetParserUtils > < _createStyleNode > < ALIAS_DEFINITION_NOT_STARTING_WITH_DOT >

    < 13 August 2015 3:05:28 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,456 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:05:28 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,460 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:05:28 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,459 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:05:28 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,457 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:05:28 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,458 during the inactive configured timeout of 5 seconds. >

    < oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl > < DiagnosticsDataExtractorImpl > < createADRIncident > < incident created 317 to key problem "DFW-99998 [java.lang.ClassNotFoundException] [oracle.jbo.pool.ResourcePoolMonitor.setLoader] [myAst12cUpgrade]" >

    e-mail matched expression

    15:06:17.305 [ExecuteThread [ASSET]: '5' for queue: "(self-adjusting) weblogic.kernel.Default"] c.a.view.beans.LoginBean DEBUG [email protected]

    CustomAuthenticatorProviderV2.getConfiguration

    CustomAuthenticatorProviderV2.getConfiguration options {}

    Username CustomAuthenticatorHelper.login [email protected] password *

    AstCustomSecurityProviderPlugin within the connection method VER #2, user name:[email protected] | newPwdEncryptFlg #N

    loginSucceeded #true

    CustomAuthenticatorHelper.lookupUserGroups for the [email protected] user

    AstCustomSecurityProviderPlugin getUserRoles for user [email protected]

    < 13 August 2015 3:06:23 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,535 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:06:23 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,533 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:06:23 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,531 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:06:23 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,532 during the inactive configured timeout of 5 seconds. >

    < 13 August 2015 3:06:23 PM CDT > < WARNING > < Socket > < BEA-000449 > < close the socket, as no data read on 127.0.0.1:57,534 during the inactive configured timeout of 5 seconds. >

    15:06:26.343 [ExecuteThread [ASSET]: '1' for the queue: "(self-adjusting) weblogic.kernel.Default"] c.a.view.beans.ResetPassword DEBUG - result = ##Y

    < oracle.adf.view > < TreeRendererUtils > < renderDefaultContextMenu > < context menu child isn't a RichMenu >

    < oracle.adf.view > < CellGatherCallback > < processComponent > < PANEL_GRID_LAYOUT_CELL_CANNOT_STRETCH_MULTIPLE_CHILDREN >

    < oracle.adf.view > < CellGatherCallback > < processComponent > < PANEL_GRID_LAYOUT_CELL_CANNOT_STRETCH_MULTIPLE_CHILDREN >

    < oracle.adf.view > < PanelGridLayoutRenderer > < _encodeAllOrVisitChildrenForEncodingImpl > < PANEL_GRID_LAYOUT_CIRCULAR_HEIGHT_DEFINITION_1 >

    < oracle.adf.view > < PanelGridLayoutRenderer > < _encodeAllOrVisitChildrenForEncodingImpl > < PANEL_GRID_LAYOUT_CIRCULAR_HEIGHT_DEFINITION_2 >

    < oracle.adf.view > < RichRenderer > < decodeUnknownKey > < ATTEMPT_SYNC_UNKNOWN_KEY >

    15:06:37.902 [ExecuteThread [ASSET]: '1' for the queue: "(self-adjusting) weblogic.kernel.Default"] c.a.view.beans.HomePageBean DEBUG -.

    Here is the call of the navigation pane to create tab of the surroundings.  It is successful.

    # HomePageBean.invokeTaskFlow on the inside.  About to fire with Params ActivityLauncher = Title: EDGE TaskFlowID table: /flows/homeTab.xml#homeTab NewTab: true

    # Launcher._launchActivity () activity inside.

    # Declaration of activity Launcher._launchActivity () - try inside

    # Launcher._launchActivity () - newTab = true activity inside.  Call for TabContext...

    < oracle.adf.view > < TreeRendererUtils > < renderDefaultContextMenu > < context menu child isn't a RichMenu >

    < oracle.adf.view > < CellGatherCallback > < processComponent > < PANEL_GRID_LAYOUT_CELL_CANNOT_STRETCH_MULTIPLE_CHILDREN >

    < oracle.adf.view > < CellGatherCallback > < processComponent > < PANEL_GRID_LAYOUT_CELL_CANNOT_STRETCH_MULTIPLE_CHILDREN >

    < oracle.adf.view > < PanelGridLayoutRenderer > < _encodeAllOrVisitChildrenForEncodingImpl > < PANEL_GRID_LAYOUT_CIRCULAR_HEIGHT_DEFINITION_1 >

    < oracle.adf.view > < PanelGridLayoutRenderer > < _encodeAllOrVisitChildrenForEncodingImpl > < PANEL_GRID_LAYOUT_CIRCULAR_HEIGHT_DEFINITION_2 >

    < oracle.adf.view > < RichRenderer > < decodeUnknownKey > < ATTEMPT_SYNC_UNKNOWN_KEY >

    15:06:40.949 [ExecuteThread [ASSET]: '1' for the queue: "(self-adjusting) weblogic.kernel.Default"] c.a.view.beans.HomePageBean DEBUG -.


    Here's the same call from the local area.  It fails without a throwing an exception.

    # HomePageBean.invokeTaskFlow on the inside.  About to fire with Params ActivityLauncher = Title: EOTM TaskFlowID: /flows/EOTM.xml#EOTM NewTab: true

    # Launcher._launchActivity () activity inside.

    # Declaration of activity Launcher._launchActivity () - try inside

    # Launcher._launchActivity () - newTab = true activity inside.  Call for TabContext...


    < oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl > < DiagnosticsDataExtractorImpl > < createADRIncident > < incident created 318 to issue key "ADFC-00032 [ADFc]" >

    < oracle.adf.view > < RichExceptionHandler > < _logUnhandledException > < ADF_FACES - 60098:Faces life cycle receives exceptions that are unhandled in phase INVOKE_APPLICATION 5 >

    javax.faces.FacesException: #{homePageBean.invokeTaskFlow ('EOTM', 'EOTM_TASKFLOW')}: //C:/Users/tstrepek/AppData/Roaming/JDeveloper/system12.1.3.0.41.140521.1008/o.j2ee/drs/myAst12cUpgrade/ViewControllerWebApp.war/fragments/homeTab.jsff @25,111 action = "#{homePageBean.invokeTaskFlow ('EOTM', 'EOTM_TASKFLOW')}": java.lang.NullPointerException "

    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)

    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:189)

    at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:281)

    at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:100)

    at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:121)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:170)

    at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:281)

    at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:100)

    at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:125)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at oracle.adf.view.rich.event.ProxyEvent.broadcastWrappedEvent(ProxyEvent.java:72)

    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:124)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:111)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    to oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$ 1.run(ContextSwitchingComponent.java:168)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:510)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:171)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:115)

    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)

    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:1074)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:402)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:502)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:502)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:137)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3436)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3402)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:255)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

    Caused by: javax.faces.el.EvaluationException: //C:/Users/tstrepek/AppData/Roaming/JDeveloper/system12.1.3.0.41.140521.1008/o.j2ee/drs/myAst12cUpgrade/ViewControllerWebApp.war/fragments/homeTab.jsff @25,111 action = "#{homePageBean.invokeTaskFlow ('EOTM', 'EOTM_TASKFLOW')}": java.lang.NullPointerException "

    at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)

    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)

    ... more than 73

    Caused by: java.lang.NullPointerException

    at com.astcorporation.view.beans.ActivityLauncher._launchActivity(ActivityLauncher.java:54)

    at com.astcorporation.view.beans.HomePageBean.invokeTaskFlow(HomePageBean.java:417)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at javax.el.BeanELResolver.invokeMethod(BeanELResolver.java:780)

    at javax.el.BeanELResolver.invoke(BeanELResolver.java:529)

    at javax.el.CompositeELResolver.invoke(CompositeELResolver.java:257)

    at com.sun.el.parser.AstValue.invoke(AstValue.java:248)

    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:302)

    at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)

    at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)

    ... more than 74

    < oracle.adf.view > < PartialResponseUtils > < handleError > < ADF_FACES - 60096:Server Exception during the PPR, #1 >

    javax.servlet.ServletException: //C:/Users/tstrepek/AppData/Roaming/JDeveloper/system12.1.3.0.41.140521.1008/o.j2ee/drs/myAst12cUpgrade/ViewControllerWebApp.war/fragments/homeTab.jsff @25,111 action = "#{homePageBean.invokeTaskFlow ('EOTM', 'EOTM_TASKFLOW')}": java.lang.NullPointerException "

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:502)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:502)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:137)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3436)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3402)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:255)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

    Caused by: javax.faces.el.EvaluationException: //C:/Users/tstrepek/AppData/Roaming/JDeveloper/system12.1.3.0.41.140521.1008/o.j2ee/drs/myAst12cUpgrade/ViewControllerWebApp.war/fragments/homeTab.jsff @25,111 action = "#{homePageBean.invokeTaskFlow ('EOTM', 'EOTM_TASKFLOW')}": java.lang.NullPointerException "

    at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)

    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)

    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:189)

    at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:281)

    at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:100)

    at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:121)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:170)

    at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:281)

    at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:100)

    at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:125)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at oracle.adf.view.rich.event.ProxyEvent.broadcastWrappedEvent(ProxyEvent.java:72)

    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:124)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:111)

    at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)

    at org.apache.myfaces.trinidad.component.WrapperEvent.broadcastWrappedEvent(WrapperEvent.java:82)

    to oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$ 1.run(ContextSwitchingComponent.java:168)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:510)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:171)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:115)

    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)

    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:1074)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:402)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

    ... more than 42

    Caused by: java.lang.NullPointerException

    at com.astcorporation.view.beans.ActivityLauncher._launchActivity(ActivityLauncher.java:54)

    at com.astcorporation.view.beans.HomePageBean.invokeTaskFlow(HomePageBean.java:417)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at javax.el.BeanELResolver.invokeMethod(BeanELResolver.java:780)

    at javax.el.BeanELResolver.invoke(BeanELResolver.java:529)

    at javax.el.CompositeELResolver.invoke(CompositeELResolver.java:257)

    at com.sun.el.parser.AstValue.invoke(AstValue.java:248)

    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:302)

    at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)

    at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)

    ... more than 74

    3 mods are needed

    1.) change managed bean to "session."

    2.) implement the following class of activity Launcher

    3.) implement the following methods of the managed bean

    -----------

    ManagedBean

    -----------

    public String invokeTaskFlow (String Title, String taskFlowPropertyName) {}

    String taskflowId = PropertiesLoader.getProp (taskFlowPropertyName);

    AL ActivityLauncher = new ActivityLauncher();

    If (TabContext.getCurrentInstance ()! = null) {}

    setTabContext (TabContext.getCurrentInstance ());

    Al._launchActivity (title, taskflowId, getTabContext(), null, true);

    }

    else {}

    setNewTabContext (getTabContext ());

    Al._launchActivity (title, taskflowId, getNewTabContext(), null, true);

    }

    Returns a null value.

    }

    -----------

    ActivityLauncher._launchActivity

    -----------

    5 arguments: title taskFlow newTab, paramsMap, tabContext

    public void _launchActivity (String title, String taskflowId, boolean newTab, card parametersMap, TabContext tab_context) {}

    If (tab_context! = null) {}

    setTabContext (tab_context);

    }

    try {}

    TabContext currentTabContext = TabContext.getCurrentInstance ();

    If (currentTabContext == null & tab_context! = null) {}

    currentTabContext = getTabContext(); tabContext Set to validate

    If {(newTab)

    currentTabContext.addTab (title, taskflowId, parametersMap);

    } else {}

    currentTabContext.addOrSelectTab (title, taskflowId, parametersMap);

    }

    } else {}

    setTabContext (currentTabContext);

    If {(newTab)

    currentTabContext.addTab (title, taskflowId, parametersMap);

    } else {}

    currentTabContext.addOrSelectTab (title, taskflowId, parametersMap);

    }

    }

    } catch (TabContext.TabOverflowException feet) {}

    System.out.println ("###Exception occurred in launchActivity");

    toe.handleDefault ();

    }

    }

  • Type the size of the user interface

    It's almost the end of 2015 - y at - it a solution to the ridiculously small UI in the CS6 / CC products?  I use Illustrator and PS a lot, and the size does not work.

    I have 20/10 vision, do not wear sunglasses.  I just upgraded to dual Dell UltraSharp U2515H 25 "monitors with a native resolution of 2560 x 1440.  The user interface in CS6 products is almost unusable and I can't find any way to change that.  I see the forums full of this problem since at least 2013 and probably before.

    Adobe, fix this.  There are alternative package graphics and I'm not locked in your products.

    Ideas of pragmatic community or solutions would be welcome - don't waste all the time will tell how it works fine for you, or preaching us on how we should just use Adobe products as they are.

    This is a problem, it's true, and I'm not alone in this observation (notice I didn't say "notice").

    Thank you.

    I have everything set to CC (2015), and it seems now the user interface option is available in both I and PS

    As much by the support of the HiDPI, it will now be on the same scale scale level because the OS (Win 7 x 64 in my case) - 100, 150, 200%.

    Looks now much better and more usable.

    BTW - I hate the interface for the new DC Acrobat - I'll be restoring the Pro XI.

    Thanks for responding.

  • Develop the user interface to CS6 Plugin - which produced required Adobe?

    According to the development of the CS6 Illustrator SDK documentation, the only way to achieve platform-independent UI is the use of the flash or flex.

    I have to develop a plugin for AI CS6 for windows and Mac. Adding native controls is restless and too much time.

    The flex mxml seems relatively simple and fast (taking into account the time of development). That's why I chose flex as the UI component for my plugin.

    1. to use flex UI, I'll need to add all of the user interface in a mxml + actionscript compiled into an Extension of the AI (zxp file).

    2. all my business logic will remain in C++ which I believe will be platform independent.

    The SDK documentation confuses me in that all Adobe products are required to develop the flex user interface extension.

    1 adobe Extension Builder 2.1 (to generate the zxp file)

    2 flash Builder 4.5 stand-alone (is different from flex builder )?

    3 CS Creative Suite SDK (what is different from the THE CS6 SDK)?

    Which are optional and that mandatory for flex UI designig of AI plugin?

    I am a developer C++ and new to flex. So please ignore any declaration of amateaur above.

    DataSet wrote:

    Another question, we cannot use MFC / UI for AI plugin Windows activeX controls? We can at least get some help with the user interface infrastructure standard darg-drop.

    CreateWindow() is real pain.

    Yes, you can use MFC, but it makes your windows plugin only.

    QT and wxWidgets have user interface designers and is cross-platform.

  • Use the Flex user interface in a PS plugin

    Hello!

    I am a user relatively to the Flex user interface design! A couple of days, I thought to give my PS plugins a look of the Flex user interface! I searched the internet on some tutorials or guides, but there is very little information relating to this. The guide Builder Extension CS says that we can interact with the Flex user interface & a native application by using the branchezBranchez C++ library. There is an example of code in Illustrator SDK for the same under the name FreeGrid (C++) & FreeGridUI(Flex UI). But I couldn't find an equivalent in PS.

    On further research in this regard, I found that we can use the PlugPlug.h (& .cpp) with a few changes in our C++ PS of the plugin code. I'm stuck at this stage now. How can I do to get out of here?

    Guide me people.. !!

    Thank you!

    This would be the part "all the settings you will need to do to get them working in the context of Photoshop" of my post! :-)

  • PSE user interface

    A year or 2 ago I tried PES but finish use it not based on the user interface.  Fonts, icons and interface elements were too small for me to see clearly with a native resolution of 1920 x 1080 screen.  At this time, there is no option for the user to increase the size of fonts, icons etc. the GUI.  I don't want to change my screen resolution.  PES 9 has all options to increase the size of these elements of the screen?  I need to give up my current image program (another company) editing because it is so unstable.  Thank you.

    Wallace, check out this post... http://forums.Adobe.com/message/3157040?TSTART=0

  • How do I switch back to the previous user interface style

    Is it possible to restore the v31 pre user interface style? Why the user interface has been changed in the first place? The user interface was the area with the least amount of questions, especially when it comes to style and colors. I'd rather see Mozilla devs allowing multiple clients sharing the same locally stored in structure of the mailbox that waste their time on evolving user interface.
    So, is it possible to get back to how it looked like before rather than having everything be gray and dark blue battleship? It's especially annoying when creating new emails. The header section is all gray offering much less contrast and with weak lines, there is barely any spacing between header lines. It is totally against what produced the 30 years of UX research.
    A cure for this?

    Themes of the addon:

    If you really want o back to the 24.6.0 version:

  • How to return to the classic user interface?

    I used the UI classic (this VERY old interface) with Firefox 28.0a1 nightly. My last update was November 10, 2013. Then I updated my nightly today and all of a sudden, after the reboot, my UI changed for the worse. Surely enough, it didn't look like the default, look-alike of Google Chrome, but it's just as bad. So my question is, how do I change it back to this old classic user interface? If possible, don't tell me modules, please... Thank you...

    Mozilla said that it was necessary to create a user interface that is the same for mobile versions and Firefox desktop.

    No, but it can be changed with the Classic theme restaurateur extension and selected pieces of userChrome.css or stylish user styles.

Maybe you are looking for