JMF on Win Mobile Smartphone

Hello,
Could anyone tell me if I can use the Java Media Framework on a smartphone running Windows Mobile 5.0. And if the answer is yes, would I be able to use Java to control the phone's camera and take pictures and video?
Thank you in advance,
maria

Well, It is indeed impossible, a workarround might be by using this:
http://forum.java.sun.com/thread.jspa?threadID=617976&tstart=0
But why use j2me, when you can mate a native app?

Similar Messages

  • ITunes for Win Mobile 5.0???

    Is this available or even in the works? We use iTunes at home, my wife has an iPod, and my son has a Cingular SLVR; so most of our music is from iTunes. I REALLY would like to be able to have all that music on my Win Mobile 5.0 smartphone (it has mobile media player loaded). Any ideas or suggestions??
    Thanks!

    bump...
    Please help...

  • List View Report (theme 50 - jQuery Mobile Smartphone).

    Hi,
    I am creating a List View Report (theme 50 - jQuery Mobile Smartphone).
    I have say the following settings..
    Text Column - PRODUCT_DESC
    Link Target - f?p=111:22:......
    my PRODUCT_DESC is too long say 150 to 200 characters.
    When I run my application on mobile...
    1. when I am using the Link target, then I am not getting the complete Product Desc values displayed.. it's displaying just initial 15.. 20 characters of Prodcut Desc column and then arrow sign for link..
    2. If I am not using the Link target, then it's displays complete values of Product Desc (all the 150 .. 200 characters) and no link arrown sign.
    My question is I want to use the link target as well as want to display complete value of product desc.. any idea how can I do that..
    Thanks,
    Deepak

    Hi,
    I am creating a List View Report (theme 50 - jQuery Mobile Smartphone).
    I have say the following settings..
    Text Column - PRODUCT_DESC
    Link Target - f?p=111:22:......
    my PRODUCT_DESC is too long say 150 to 200 characters.
    When I run my application on mobile...
    1. when I am using the Link target, then I am not getting the complete Product Desc values displayed.. it's displaying just initial 15.. 20 characters of Prodcut Desc column and then arrow sign for link..
    2. If I am not using the Link target, then it's displays complete values of Product Desc (all the 150 .. 200 characters) and no link arrown sign.
    My question is I want to use the link target as well as want to display complete value of product desc.. any idea how can I do that..
    Thanks,
    Deepak

  • NI-DAQmx Base 2.0 and Win Mobile 5

    Hi,
    Can anybody tell me if NI-DAQmx Base 2.0 is compatable with Win Mobile 5 devices?
    I'm trying to capture analogue voltages and my app builds fine and loads to the PDA, but the PDA is not seeing the PCMCIA DAQ card (6062E) that I'm using.
    I have run the "Base" installer which has copied the Base driver file/s to the PDA (and I have the Base task setup OK in the VI), but the PDA comes up with an "Unrecognized Card" error. I have removed the Base driver/s from the PDA and reinstalled them but with no luck.
    Is this just because Base 2.0 is not compatable with Win Mobile 5?
    Is there any way I can get Base 2.1 to work with LV-Pro-8 and PDA-8 or is there some other way I can get the drivers onto the PDA that will handle the 6062 card under Win Mobile 5.
    Any help would be greatly appreciated,
    Thanks,
    Paul.
    Solved!
    Go to Solution.

    Hi Paul,
    Good afternoon and I hope your well. 
    One thing to bear-in-mind is that DAQmx Base doesn't offically support Windows Moble 6 devices - even though they have been seen to work. This is not to get confused with LabVIEW 8.6 which does support Windows Mobile 6. i.e. just not DAQ applications/DAQ hardware. 
    I am another customer, here at NI UK Support and I have another customer with the an issue with WM6 and DAQ CF, I'd like to work more with you on this.. could you please provide more details on how it goes tomorrow and the tests you do. 
    For reference please look at these links: 
    http://zone.ni.com/devzone/cda/tut/p/id/7705#toc0
    http://digital.ni.com/public.nsf/allkb/F6576C46AD7B42768625758200510715?OpenDocument
    Thanks
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • Image cache problem in win mobile profile

    I've done an application which periodically reloads and shows an image from a web server because the image is also changing periodically. In applet and desktop profile the image reloads properly but in mobile profile the image only loads once and doesnt change in spite of the image is still changing in the web server.
    I supose this is happening because in mobile profile the image might get saved in cache although the aplication keeps asking the image to reload.
    I need the image to reload!!
    can anybody help me??
    here´s the source code:
    //this is the image by default
    var image: Image = Image{
    url: “{__DIR__}images/nodisponible2.jpg”;
    var cam: ImageView = ImageView {
    cache:false
    translateY:72;
    translateX:9;
    fitWidth:223;
    preserveRatio:true;
    image: imagen
    //a timeline calls a periodically a function that reloads the image
    var timeline: Timeline = Timeline{
    repeatCount: Timeline.INDEFINITE
    keyFrames:[
    KeyFrame{
    time : 0.25s
    action : renovarUrl
    //each time you call this function a new image variable is created, but win mobile always shows the same
    function renovarUrl() : Void{
    var imagen2: Image = Image{
    url: “http://127.0.0.1/map0/cam0/cam.jpg”;
    cam.image=imagen2;
    thanks!

    Hi,
    I´ve tried to append a random number to the loadMovie
    (in fact in my case I have to use the loadClip function, but I
    don´t think this makes a difference), nevertheless it keeps
    loading the cached image in the browser, here is my code:
    stop();
    this.createEmptyMovieClip("Bezier2",this.getNextHighestDepth());
    //receive vars from first frame to create masking shape
    with (this.Bezier2) {
    lineStyle(0,999999,100);
    beginFill(0xFF0000);
    moveTo(posi1x,posi1y);
    lineTo(posi3x,posi3y,posi2x,posi2y);
    lineTo(posi2x,posi2y,posi1x,posi1y);
    lineTo(posi1x,posi1y,posi3x,posi3y);
    lineStyle(0,0xFF0000);
    lineTo(posi2x,posi2y,posi4x,posi4y);
    lineStyle(0,999999,100);
    lineTo(posi4x,posi4y,posi1x,posi1y);
    //make mc and initialize loading of image
    var holder = this.createEmptyMovieClip('holder', 0);
    var mcl = new MovieClipLoader();
    var lstn = new Object();
    mcl.addListener(lstn);
    //apply mask before image loading
    lstn.onLoadInit = function(clip) {
    clip.setMask(Bezier2);
    mcl.loadClip('../image1.jpg?a="+Math.random(9999));',
    holder);
    Any guess? Thanks

  • Profiles/config available for Windows Mobile Smartphone?

    does Windows Mobile Smartphone supports CDC?
    depends on what? JVM maybe? or Noway to deploy a CDC application into Windows Mobile Smartphone?
    does Anybody know if IBM J9 JVM could be deployed in SmarhPhone (CDC configuration)?
    Regards

    Sorry I wrote previous thread too quick and maybe could not be understood, I will rewrite it.:
    <<Probably some smartphone devices supports java (usually MIDP) besides "Windows Mobile for SmartPhone" Operating System, however my doubt is to deploy the J9 (CDC configured) INTO "Windows Mobile for Smartphone" Operating system as same as I do in "Windows Mobile for PocketPC".
    For example movistar TSM500, has Java enabled, but it is not into the WindowsMobile for smartPhone" but it is in Moviestar menu.>>
    Sorry about my english.
    Regards

  • Is there any posibility to use my icloud kalender on my win mobile device?

    Is there any posibility to use my icloud kalender on my win mobile device?

    My name is Bob. I also have a HTC HD 2 &amp; a iPad. I downloaded iCloud yesterday, 27/12/2011. My iPad calendar &amp; contacts reflected the recent changes to my calendar &amp; contacts. When I connected my HTC synch, the cloud wiped out ALL my contacts &amp; my calendar on my HTC. The cloud took control of outlook. I could not access outlook archives or itunes, both seemed locked. Itunes would open when I connected my ipad, but the unit did not appear listed as a device. It took me the rest of the day &amp; up to 2 am the next day to get my calendar &amp; contacts back on my HTC. I did this by learning. I finally tried rolling back my windows system, to no avail. Finally I after playing with the cloud control panel, I was asked if I wanted to "copy" outlook. This caused my calendar &amp; contacts to appear in my outlook. I then deleted the cloud, totally &amp; after many reboots was finally able to restore my calendar &amp; contacts to my HTC. I mean, what use is a phone without contact numbers, I ask you?? So it appears that the cloud has total control of outlook &amp; I'm not to sure how the cloud works with window based phones. But I'm not taking any more chances with apples cloud until I get more knowledge. In my business, losing my contacts &amp; calendar is, well ouch, that hurt!! Let me how if you find out anything. Regards, Bob, dial a window cleaner, [email protected]

  • Problem using Win Mobile 2005

    Hello,
    Our customer is using 2 different devices one is having Win Mobile 2006 as the OS and the other is having Win Mobile 2005 as the OS. The SAP screen are perfectly viewable in the device having Win Mobile 2006 OS. The the problem faced in the other device (with Win Mobile 2005) is that the webpage is a blank blue screen.
    Thanks in advance.
    Regards,
    Deepak

    Hi,
    I'm replying assuming that you are using SAP NETWEAVER MOBILE.
    Refer to note 1057759 for the delivered Drivers for Peripherals and devices supported in SAP DOE. This lists all the supported barcode scanners for SAP Netweaver Mobile. Those derivers are certified after testing to work only with that device and OS configuration.
    For 7.0, refer Note 761833 for supported drivers and devices.
    Regards,
    Suma

  • Anyone know if there's going to be a Win Mobile 6.5 upgrade for Treo Pro?

    I have a Treo Pro on Sprint-does anyone know of any plans to issue and upgrade to Win Mobile 6.5 on sprint for this phone?
    Post relates to: Pre p100eww (Sprint)

    Hello kristikay and welcome to the Palm fourms.
    I don't want to rule anything out, but in a recent investor conference call, Palm's CEO stated that the Treo Pro was the company's last Windows Mobile device and that future development efforts would be focused on the Palm webOS platform.
    So that isn't exactly a "No", at this point in time, I personally feel that an Windows Mobile 6.5 upgrade for the Treo Pro is unlikely.
    Alan G

  • Portege Z930: BT Sync Outlook 2010 (Win 7) + smartphone Win Mobile 6.5

    Hello,
    I would like to synchronize my Protege Z930 via bluetooth and the windows mobile center with my outlook on my HTC HD2.
    I can connect the systems and they show that they are connected, but the data synchronization don't start.
    Until now I have only connected the Microsoft bleutooth mouse 5000 and the Jabra Wave headset, which both works.
    In another thread in another forum I saw, that I have to change some bluetooth security option, to synchronize. That don't work and if I try that, I have to give a PIN-code for my mouse, but it has no PIN-code.
    Is there any possibility, to get all three additional products working over the bluetoth stack?
    stormlight

    Hello,
    I now got the synchrinization running, after I did the following sequenze for five times. After the firt for tryings I had to the delete the devices on notebook and
    smartphone every time and had to rebbot alte the delete.
    Here is the instruction how the synchronization via bluetooths runs (I suppose, taht this answer, which I found in the Internet, is original from the Toshiba support:
    Ensure Bluetooth is on (notebook and windows mobile device)
    Ensure Bluetooth is discoverable (notebook and windows mobile device)
    Ensure that you have enabled the "Bluetooth COM Port Service"
    (Start-Programs- Bluetooth - Bluetooth Settings - Bluetooth - Options...- General- check "Bluetooth COM Port Service"
    Check which Bluetooth COM port is used as LocalCOM-Server:
    (Control Panel - Switch to Classic View - Bluetooth Local COM)
    Configure your ActiveSync on your notebook to the Bluetooth LocalCOM-Server port (it was in my case "COM8")
    ActiveSync - File - Connection Settings...- Allow connections to one of the following: "COM8" (in my case)
    Reboot
    ---------Windows Mobile device----------------
    Start the Bluetooth Device configuration program on your Windows Mobile device
    Discover Bluetooth devices and select your notebook and afterwards in the notebook popup window follow the questions.
    Select at the smartphone question the port "Active Sync"
    Reboot both devices and try again if it should fail."
    stormlight

  • Download firefox to mobile smartphone tried to view howto video I never did view video, now a black circle with a moving green arrow is in the top of my screen, and I was given a notice that Im being charged money for something?

    Tried to down load firefox and view a how to video and was given a notice AFTER, that I will be charged for something. I don't want anything that will cost me any money. What should I do? Can you find out what it is and stop it?

    Firefox is free, open-source software developed by a non-profit organization. We do not change any money for our software or content.
    If your phone is displaying a notification about a charge, you should contact your carrier (T-Mobile, according to the system details above) for more information.

  • Sending SMS on Win Mobile 5.0

    Hi !
    I am relatively new to J2Me and would like some help on sending SMS using a PDA. I have been trying to create a program (using WMA) which should enable me to send an sms via my PDA (O2 Zinc). Although there are no errors to the program, it simply refuse to send the SMS out.
    A portion of the codes is found below:
    private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {                                     
    try {
    String addr = "sms://+6598292837";
    jLabel1.setText("address added");
    {color:#ff0000} MessageConnection conn = (MessageConnection) Connector.open(addr);{color}
    jLabel2.setText("message connection set");
    TextMessage msg =
    (TextMessage)conn.newMessage(MessageConnection.TEXT_MESSAGE);
    jLabel3.setText("text message set");
    msg.setPayloadText("Hello World!");
    jLabel4.setText("text set");
    conn.send(msg);
    }catch (Exception e){e.printStackTrace();}
    I added in the jLabel text change to see which are the lines being executed. And it was found that the codes after {color:#ff0000}
    MessageConnection conn = (MessageConnection) Connector.open(addr); {color:#000000}was never executed.
    I must apologise i kinda s.u.c.k in using exception but i try to add this in and it caught the connection not found exception.
    public void sendTxtMsg() throws IOException{
    try{ ......
    } catch (ConnectionNotFoundException ex) {ex.printStackTrace();jLabel3.setText("error: "+ex);}
    have i missed out on any steps? or should i use a different approach to the problem?
    Your help is very much appreciated! Thanks for all the help
    Desperate Programmer.
    {color}{color}

    The JavaFX Mobile 1.2 runtime can only be run on Windows Mobile 6.1 and up

  • Bugreport: Popup LOVs in jQuery mobile Smartphone Applications

    Hi APEX Team,
    I just looked at Popup LOVs for mobile, as this is a supported item type.
    Unfortunately this wasn't adapted to JQM and still has a Desktop definition.
    Somehow the created HTML isn't valid, seems there are duplicate CSS-File inherits and some unnecessary closing tags.
    Also the pagination doesn't work. When requesting the next set of rows the font switches to tiny and doesn't show any results anymore.
    Wishlist: Improve Popup LOV Templates so that developers have full control over structure of the page, the search items, buttons and result sets. Then we could adapt the template to use JQM Dialog. Having control over opening link (javascript) and choosing the result (javascript) would also be fine :-)
    thanks,
    Peter
    get Syntax Highlighting for the Application Builder: http://apex.oracle.com/pls/apex/f?p=APEX_DEVELOPER_ADDON:ABOUT:0:::::
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at
    Fantastic Plugins for APEX: http://www.tryfoexnow.com

    Thoughts anyone?

  • Tether MBP to Win Mobile Phone as Modem

    Has anyone successfully tethered a Windows Mobile phone as a modem?

    I do not have internet access setup on my phone. can
    i still use the phone (via bluebooth) to dial my ISP?
    for example...i would dial a number say 888.555.1212
    with my user name and password configured in the
    bluetooth setting?
    Yes that is possible if your phone can act as a modem (non-GPRS) though note that your speed will be 9.6Kbps which is really sssslllllooowww.
    Probably okay for plain text e-mail from my experience and just not viable for web browsing.
    the link you gave me talks about GPRS for phone that
    has internet access, but i do not have that.
    Follow the guide on the left on this page.
    http://homepage.mac.com/jrc/contrib/tzones/
    iFelix

  • Problem sending audio with fp7 on win mobile 5 ppc

    Hi all,
    we are developing an application which uses
    flashmediaserver2.
    We have been successfully on sending and receiving streams
    with the "new" flash player 7 for ppc.
    We found a problem anyway... looks like some devices can't
    send audio to the player.
    On the settings panel you will see the "usual" audio input
    value... but it won't capture any audio.
    Any suggestion on what we could check in order to solve this
    problem ? (same code works on different wm5 device)

    I installed FP7 on T-Mobile MDA. (also called HTC Wizard).
    The install was sucessful but flash content does not display. IS
    there anything else i need to do to get it to work?

Maybe you are looking for

  • Intel HT (Hyper-Threading) BIOS 1.9?

    Sup People!    My Intel HT (Hyper-Threading) don't work right now, what to do?  I was told that I need the new BIOS 1.9 for HT to work?  I have: Intel P4c with HT             Intel 875P with HT             MS Windows XP Professional Version 2002 & SP

  • Extract info from RFH2 header in MQ message

    Hi All, I'm trying to send a MQ message with RFH header. Purpose is that JMS adapter extracts user data from RFH Header. A few questions: 1.Format RFH2 header: -In the MQMD I assign the format: MQFMT_RF_HEADER_2 -Apart from the mandatory fields in th

  • What do I need to draw on my ipad

    What do I need to draw on my ipad - I.e. do I have to have a special app or programme or what?

  • Scroll by week in month view

    I am an Outlook '03 convert, and I would like to scroll from week to week in the month view. So say its Oct 15, I want to see the current week and the next few weeks. I don't need to see what i did on oct 5.

  • Intranet sites do not load from history

    Firefox loads the wrong site when you attempt to visit a site from the location bar history, if that site is on an intranet and contains a space in the name. These sites can be visited if you type the address by hand, and they work from if you select