JavaFX Mobile refuses to run my apps

I am currently trying to familiarize myself with the JavaFX platform, especially the mobile aspects. I am having trouble with the JavaFX Mobile runtime.
I am unable to run any apps of my own. I am using the newest NetBeans environment to compile everything and create the jar/jad package. I am able to upload the package to my mobile device, install it without any error, and see it listed in the app list of the JavaFX launcher. However, when I attempt to launch my apps, it appears to be starting normally but nothing ever shows up except the "exit" menu item. I get no errors of any kind, just nada.
Thinking that I was doing something wrong due to my inexperience with the new scripting language, I downloaded some apps from javafx.com and tried those. They don't work either. However, the four apps that come pre-installed with JavaFX mobile (calculator, tweeter, etc) all work fine. Things I compile with NetBeans work just fine in the emulator, but not on my device in real life.
Can anyone let me know what is going on? Is there an error log somewhere that I can look at? Thanks for any help.
Mobile Device: HTC Touch Pro 2
OS: Windows Mobile 6.1 Professional
NetBeans: 6.7.1 with all updates
JavaFX: 1.2 EA2, SJWC 2.2
-d
Edited by: metalliqaz on Dec 9, 2009 8:39 AM

I tested newly released "JavaFX Mobile 1.2 for Windows Mobile" from javafx.com on HTC Diamond together with NetBeans 6.8 with all necessary updates and everything works fine. I believe it should work also on your HTC Touch Pro 2. The problem might be caused by using JavaFX early access, please try with reference release (released last week).
You can enable logging via Remote Registry Editor or whatever registry editor on windows mobile by setting HKEY_LOCAL_MACHINE\Software\SUN\JVM\LoggingAllowed to value 3.
Then the log file containing text output is \\\JavaFX\Java\java.txt

Similar Messages

  • Deploying JavaFX mobile app on SkyDrive

    Hello,
    I am trying to test a JavaFX mobile app on my phone: LG600G. The phone's CLDC is 1.1 and the MIDP is 2.0, so it can run Java Midlets. Unfortunately, I can't send the .jad file or jnlp file to it across Bluetooth and choose the "install" option. The option isn't available, so I am trying to deploy store the .jad .jnlp and .jar files on my Windows SkyDrive. I can't figure out how to do it correctly though. Could someone tell me what I should point my phone's browser to? Should I point it to the .jnlp file or the jad file? Also, how do I set the codebase of the jnlp file? If it helps, here is [my account:|http://cid-df734c62403d114d.skydrive.live.com/browse.aspx/.Public]
    If someone has done this before, and you have a link to some tutorial, I could use that too!
    Thank-you,
    Vance

    This phone doesn't seem to be powered by Windows Mobile, so JavaFX won't work on it.
    See the answer in [as of 2010, what mobile phones support JavaFX?|http://forums.sun.com/thread.jspa?threadID=5432053] thread.

  • Is it too early to start with JavaFX Mobile Development ?

    There are no developer compnents except "TextBox"
    The only samples i can see are "showing Photos in grid like structure & similar kinds of app" :(
    it doesn't even support Swing
    What developer wants "Data Entry Form" which user will submit data to Server Or Store data To Database & then Process the Data & return Result to user, Etc & much more req
    why javaFx is more Media Oriented( Audio, Video,Graphics,Animation,Games,etc)
    What benifits it provides to Developer.I am basically targetting JavaFX Mobile
    Please Reply to help me understand What Can I do In JavaFx mobile domain
    Thanks & Regards,
    Pravin

    Hello, and Welcome to the HP Support Community! As with any Internet Forum, you have to realize that you are visiting a "hospital" - most folks here are the minority who have had problems. If one was to judge the human race by visiting a hospital, you might run outside screaming "WE'RE ALL DOOMED!  EVERYONE HERE IS SICK!!!"   Those who have no issues at all do not come here and check in.  The few that actually do come by and offer compliments are far and few between, and they are greatly appreciated by us! I've asked HP about Win10.  They will not provide an answer until the final release is out.  It could run with zero issues, or not! The Sprout is an amazing device - a large touchscreen All In One computer with some cool options not many other PC's could ever do! Is it too early?  I've had one for almost a year (a loaner from HP for my participation here).  Glitches?  A few that were easily remedied.  The decision is up to you.  If worried about Win10, then wait a month or two.  The device runs fine on Win 8.1.  Why change to Win10? WyreNut

  • JavaFx Mobile + Swing Problems

    {color:#000000}{color:#ff0000}{color:#003300}The application runs fine when Run As "Desktop(std. execution mode)" & when changed to Run In "Mobile Emulator" gives following Error :-->{color}
    {color}{color}{color:#ff0000}Error preverifying class javafx.ext.swing.JTextFieldImpl
    java/lang/NoClassDefFoundError: com/sun/javafx/scene/BackgroundSupport$BackgroundSupportable
    ERROR: preverify execution failed, exit code: 1
    {color}{color:#000000}{color:#0000ff}C:\Documents and Settings\pravin.patil\My Documents\NetBeansProjects\ColorSlider\nbproject\build-impl.xml:143: exec returned: -1
    {color}{color:#ff0000}BUILD FAILED (total time: 8 seconds){color}
    How to use Swing components in JavaFX Mobile apps??
    Thanks & Regards,
    Pravin{color}
    Edited by: pravinpatil23 on Mar 30, 2009 3:40 AM

    You can provide visual feedback of clicking.
    Here is a primitive (crude!), naive native button, as an example of such effect. I wanted to make it look like it was physically pressed.
    public class NativeButton extends CustomNode
      var arcSize: Number;
      var message: String;
      var width: Number;
      var height: Number;
      var hole: Rectangle;
      public var displacement: Number;
      override protected function create(): Node
        arcSize = height / 5.0;
        displacement = 3;
        hole = Rectangle
          x: 0, y: 0
          width: width
          height: height
          arcWidth: arcSize,  arcHeight: arcSize
          fill: Color.BLACK
        clip = hole;
        Group
          content:
            hole
            Rectangle
              x: 0, y: 0
              width: width
              height: height
              arcWidth: arcSize,  arcHeight: arcSize
              fill: LinearGradient
                startX: 0.0, startY: 0.0, endX: 1.0, endY: 1.0
                proportional: true
                stops:
                  Stop { offset: 0.0, color: Color.LIGHTBLUE }
                  Stop { offset: 1.0, color: Color.BLUE }
              onMousePressed: ShowPressed
              onMouseReleased: ShowReleased
            Rectangle
              x: height / 9.0, y: height / 9.0
              width: width - 2 * height / 9.0
              height: height * 7 / 9.0
              arcWidth: arcSize,  arcHeight: arcSize
              fill: LinearGradient
                startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
                proportional: true
                stops:
                  Stop { offset: 0.0, color: Color.LIGHTBLUE }
                  Stop { offset: 1.0, color: Color.BLUE }
            Text
              x: width / 7, y: height / 1.4
              content: message
              fill: Color.YELLOW
              font: Font.font(null, FontWeight.BOLD, 36);
      function ShowPressed(e: MouseEvent): Void
        this.translateX = this.translateY = displacement;
        hole.translateX = hole.translateY = -displacement;
    //~     println("Clicked {this}");
      function ShowReleased(e: MouseEvent): Void
        this.translateX = this.translateY = 0;
        hole.translateX = hole.translateY = 0;
    //~     println("Released");
    function run()
    def BASE_SIZE = 300;
    Stage
      title: "Native JavaFX Button"
      scene: Scene
        width:  BASE_SIZE
        height: BASE_SIZE
        fill:   Color.web('#00BABE')
        content:
          Group
            translateX: 20
            translateY: 20
            content:
              NativeButton { message: "Click Me", width: 200, height: 50 }
    }You can add effects, do something on hovering, etc.

  • How to run classic apps on a Macbook

    I do not know where to post this, so excuse me if this is OT. But I ran into this page
    http://www.applelinks.com/index.php/more/sheepshaver23_enables_you_to_run_classic_macos_programs_onmacintels/
    I suppose this is a shareware app (not a commercial app) that allows one to run PPC apps and 68K apps on a Intel Mac. Is this correct? If it is, does one need a ROM image? If so I am out of luck as all my PPC native Macs
    (well with the exception to my ibook G4) have been given away (could not get a penny out of the Performa's).
    Also can I run this app on my ibook? I have a old game created in 1989 that for whatever reason cannot run in classic mode (the game ran fine in my Performa 6360 under 9.1). I have tried to get the developer to create an upgrade, but he refuses, and the company that owns the copyright to the game is out of the Mac business, and besides they would not be too happy about him updating the game to run under OSX. So it looks like since I lack a native OS 9 Mac, I am out of luck.
    John

    This is an open-source project. You can get more information here:
    http://www.gibix.net/dokuwiki/en:projects:sheepshaver
    You do need a ROM image to make this work.

  • LinearGradient doesn't appear in JavaFX mobile application

    Hi everyone.
    I'm developing a JavaFX mobile application. The scenes will have a Gradient of black and green background color.
    Here is the code.
    var scene1 : Scene = Scene{
            fill: LinearGradient {
            startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
            proportional: true
            stops: [ Stop { offset: 0.0 color: Color.BLACK },
                     Stop { offset: 1.0 color: Color.GREEN } ]
            contentAccording to JavaFX API, LinearGradient is found in common profile. Which means I should be able to use it in my mobile application. But when deploying it into an actual mobile phone, the scene's background is plain white.
    Why doesn't it take effect??
    When running the application into a mobile emulator, it is just fine.

    >
    When running the application into a mobile emulator, it is just fine.
    I think there was a bug in LinearGradient + proportional. Is it using latest JavaFX runtime on phone?
    Just to confirm this, can you specify absolute coordinates (with proportional: false) for LinearGradient?
    I faced this issue long time back while implementing background of InterestingPhotos, but now it works fine.
    http://javafx.com/samples/InterestingPhotos/src/Background.fx.html

  • Anyone provide accurate info on why after 1 yr, after guarantee period expiry the DVD player on our I mac running Intel core duo processor with OS 10.6.8 refuses to run DVDs? CDs run

    Can anyone provide accurate info on why after 1 yr, ( just after guarantee period expiry) the DVD player on our I mac running Intel core duo processor with OS 10.6.8 refuses to run DVDs?
    CDs run without problem and until recently the DVD we have (all original no pirated copies) ran; we have used a CD cleaner disc to no avail.

    Welcome to the Apple boards:
    I suggest an erase and install and use your backup for any important files you have.
    Did you perform a disk check/repair and permissions repair and a PRAM zap before updating? While not required, they are usually necessary to avoid issues.
    There are so many reasons for a bad install, that it is impossible to list them all.
    Out-of-date software, drivers, etc, haxies, and other software can cause problems.
    My three updates were without incident, so it is possible for a perfect update, but unless you supply us with details about your previous system, programs, apps, drivers, etc., it is not possible to figure out what happened.
    Again, whenever installing an update to an OS, a clone or other full backup is absolutely necessary, as reading the posts on this board indicate.

  • JavaFX mobile execution

    whenever I ran an application in mobile emulator(by selexting run in mobile emulator), I get the following error message
    init:
    deps-jar:
    WARNING: following file/directory does not exist: C:\Users\ramakant\Documents\NetBeansProjects\Testing
    ApplicationMapper: 90 packages, 98 classes visited
    Error preverifying class testing.Main
        VERIFIER ERROR testing/Main.<clinit>()V:
    Cannot find class javafx/scene/effect/Reflection$Intf
    ERROR: preverify execution failed, exit code: 1
    C:\Users\ramakant\Documents\NetBeansProjects\Testing\nbproject\build-impl.xml:143: exec returned: -1
    BUILD FAILED (total time: 2 seconds)in the netbeans output window, I searched the net about it but with no luck, I just reisntalled the application because autoformat option is not working, now that problem is secondary , first I want to fix this execution problem, the programs are running fine in standard execution mode, and I am trying to run this application [http://learnjavafx.typepad.com/weblog/2009/02/a-simple-binding-example-in-javafx-mobile.html|http://learnjavafx.typepad.com/weblog/2009/02/a-simple-binding-example-in-javafx-mobile.html]

    it certainly was not the problem but it helped me to enable execution, I was running a file in mobile platform while the package has desktop profile classes also, your tip helped execution but I still get this warning,
    WARNING: following file/directory does not exist: C:\Users\ramakant\Desktop\JavaGame\Imagix\Mobile
    ApplicationMapper: 3 packages, 3 classes visited
    WARNING: following file/directory does not exist: C:\Users\ramakant\Desktop\JavaGame\Imagix\Mobile
    compile:Can you help me how to remove this warning

  • JavaFX mobile (Android/iOS) update?

    Hi all,
    as I am quite desperately eager to start JavaFX mobile development,
    I would like to ask, if somebody has any update on recent status and progress, if any.
    I have found quite a lot of news titles like 'JavaFX for iOS/Android soon!' at the beginning of the year, but not any other update since.
    According to Javaone 2013 Session Updates
    there should have been some very interesting presentations at JavaOne 2013 last week:
    JavaFX on Android: First Insight [BOF7791]
    Build and Debug Your JavaFX Application for the iPad [BOF5517]
    JDK 8 for Oracle ADF Mobile on iOS and Android Devices [CON3783]
    Can anybody point me to some recent information?
    Thank you

    jsmith wrote:
    I am unaware of anybody submitting a commerical iOS app based on JavaFX to the Apple app store.
    I don't think it's JavaFX, but BadLogic Games has a RoboVM based demo game on the Apple app store.  I tried it on an iPad 2 and was very surprised at how responsive it was.  I was expecting noticeable input lag, but there isn't any.
    http://www.badlogicgames.com/wordpress/?p=3193
    I know the politics of getting JavaFX on iOS, Android, and WinRT are complicated, but I'm still hoping Oracle changes their mind.  The idea of Microsoft, Google, and Apple controlling the mobile platforms top to bottom doesn't strike me as something that's going to be good for anyone (else).  I'm rather amazed at the faith everyone is putting the idea that Microsoft, Google, and Apple won't leverage IE, Chrome, and Safari to give their SaaS initiatives the advantage.
    I'd rather hedge my bets with the JVM and Linux than trust 3 companies who have been making obvious moves to close up and control the computing industry.  Honestly, look at the setup.  They all have hardware branches now and they already control the OSs, the native runtimes, the browsers, and the primary distribution channels for their respective platforms.  Oracle should be worried about getting anything on those platforms 5 years from now.
    IMO, they should be pushing ADF and JavaFX on mobile, not trying to choose one or the other.

  • HT2404 My iphone 3gs recently stopped allowing me to use certain apps and refuses downloads of other apps, saying all require ios 5. No software update button appears in settings.Can I update/upgrade my 3gs to ios 5?

    My iphone 3gs recently stopped allowing me to use certain apps and refuses downloads of other apps, saying all require ios 5. No software update button appears in settings.Can I update/upgrade my 3gs to ios 5?

    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPhone to the computer, open iTunes. Then select the iPhone under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
     Cheers, Tom

  • Does 'find your iPhone' use a lot of internet? My mobile data is running out ridiculously fast and I need it to slow down!

    Does 'find your iPhone' use a lot of internet? My mobile data is running out ridiculously fast and I need it to slow down! Anyone has suggestions / info?

    You should shut down all the apps running in the background and then reset your phone.  Double tap the home button to open the multitasking drawer (iOS 6.X) or the multitasking screen (iOS 7.X)  if you are on iOS 6.X press and hold one of the app icons and wait for the icon's to start to jiggle, just like when you want to delete an app.  Tap the little x that appears in the upper corner of the icons.  Repeat until all the icons are gone.
    If you are on iOS 7.X once the multitasking screen is open swipe up on all the app images until they are all closed.  Tap on the home screen to close.
    Then press and hold both the Home and Sleep buttons at the same time and wait for the Apple logo to appear then release both buttons.  The phone will restart itself. 
    If this doesn't help try doing a Reset All Settings reset, you will not lose any data or content or media.  But you will have to reset any setting you turned on or off in Settings.  This will reset all settings back to factory default.  Settings => General => Reset => Reset All Settings.

  • Is autoconfig required to be run for apps password change

    Is autoconfig required to be run for apps password change -- We are only changing APPS and APPLSYS passwords.
    How to Change Applications Passwords using Applications Schema Password Change Utility (FNDCPASS or AFPASSWD) [ID 437260.1] -- does not mention anything about autoconfig.
    Please clarify.
    Thanks

    It's mentioned in the document twice
    1. For APPLSYSPUB/GUEST as you mentioned
    2. Under "Verify the new password" which cover the apps/applsys passwords
    If you search the doc for "AutoConfig" you will find it there.
    Thanks,
    Hussein

  • Has anyone in this Forum had problems with installing and running Adobe apps on the new MacPro?

    Has anyone in this Forum had problems with installing and running Adobe apps on the new MacPro?
    I have been trying to install Photoshop CS6 & CC and Acrobat Pro XI on my Mac Pro (late 2013). I keep getting a 'configuration' error message and wondered if the problem was wide spread.
    TIA,
    Jerry

    Thanks, Martin.
    Good to hear someone has had success. The lack of it here is frustrating and depressing.
    Thanks again,
    Jerry

  • TS2709 I have AppleTV and Ipad2 running VJay app to my TV over a private cisco router disabled firewall but I keep loosing the video on my TV after a few minutes what can I do?

    I have AppleTV and Ipad2 running VJay app to my TV over a private cisco router disabled firewall but I keep loosing the video on my TV after a few minutes what can I do?

    I also get this problem on my iPad, so probably not related to the AppleTV. On the iPad I restarted Airport Extreme this time, and then the iPad saw my Home Sharing.
    So to recap, restarting the router or Airport Express allowed the iPad and AppleTV to see Home Sharing. Restarting AppleTV also allows AppleTV to see Home Sharing.
    So does anyone have any idea?
    Thanks

  • Error while running the APP-F110 & Dunning - F150

    HI Guru's,
    while running the APP,,,i got the message finally <b>posting orders"1 generated,1completed"</b>,,,,,,,But i am not getting the spool request and printout
    In the same way in dunning,,i did the entire procedure,but not getting the spool request...
    kindly help me
    Regards
    Sap Guru

    hi Sapguru,
    ok, Congrats for posting the Orders...haa
    Go to Tcode <b>SE38</b> and enter the program as <b>RFFOUS_C</b> and execute it.
    In that screen enter the <b>Identification and program run date</b> and enter all the required firelds and then again execute it....
    So that u can print the Check with the check lot number that u have created
    Please create the check lot number in <b>FCHI</b>.
    If u want to see the spool then go to <b>SP01 </b>and see there...
    Hpe this resolve our problem...
    assign the points if usefulll
    Ranjit
    null

Maybe you are looking for

  • Directory Setup for RAC and Oracle Restart

    I have three database installations that I'd like some insight on the initial directory structure and permissions. The three installations are: 1) Prod RAC - OEL 5U2, 11.2.0.2 Grid Infrastructure, 11.2.0.2 DB EE with RAC option 2) Test RAC - OEL 5U2,

  • Error message while starting J2EE Server!

    Hi! I get this error message when i try to start J2EE server: c:\j2ee -verbose Exception in thread "main" java.lang.NoSuchMethodError at com.sun.corba.ee.internal.corba.AnyImpl.createTypeCodeForClass(AnyImp l.java:1256) at com.sun.corba.ee.internal.i

  • Red Epic and Premiere CS6 workflow issues

    Hello! I'm looking for some advice or insight regarding working with RED footage in CS6. In the past, I've worked with native RED footage on CS5.5 with no hiccups whatsoever. I'm not sure if it's CS6 or my computer's processing power, but RED footage

  • Indesign crash when exporting file into pdf

    Hi, I am having a little problem with my Indesign program. I don't know how to fix it. So this is what happen.... I finish a 2 page file in Indesign and I wanted to export it to pdf. I click on export and it runs for 1 page and then Indesign crash. I

  • Delivery split for Vl10B/ VL10D

    Hi STO purchase order contains more than 1500 line items. When Creating the Delivery document and PGI for 1500 line items in single shot, system cant generate FI document as there is limitation of 999 line items in FI document ( we are using 4.7 E) S