Using converter

Hi, I am trying to convert a MidLet File to my Palm. However, the converter that I have downloaded from the Sun web site doesn't work. I do not know how to set the class path to make the converter work. I am using xp pro with NetBeans IDE. I have try this forum a few times with no luck at all. I am hoping someone will give this newbie a chance and at least give me a link to where i can look for a solution. If you look at this post at least let me know that you can't help me solve this promblem. Thanks in advance.

I think the main reason you are having trouble with your post is that most people haven't had much experience with midlets or j2me, myself included. If you main problem is on the class path of your computer and it works the same way as with j2Se I would search the forum for problems, since this comes up frequently with people who are new to j2se.

Similar Messages

  • I would like to burn dvds..does anyone know a good safe easy to use converter/burning download to allow me to change mp4 /avi files to dvd so i can burn them on a disc that will play in all or most dvd players...thank you

    i would like to burn dvds..does anyone know a good safe easy to use converter/burning download to allow me to change mp4 /avi files to dvd so i can burn them on a disc that will play in all or most dvd players..also is it possible to upload store boughten dvds/bluerays to my macbook..if so does anyone know how one would do that ? im just getting used to this mac and i do love it but alas i am comp stupid  hahaha...thank you

    Toast Titanium by Roxio.

  • Missing Text when using CONVERT to PDF

    I am using Acrobat Pro 9 in Wnidows 7 and Microsoft Publisher 2003.
    When I use the CONVERT command to create a PDF - it is missing all of the text on the master page.
    If I create the PDF with the PRINT command - everything is OK.
    PS: The same Publisher File on another computer using Acrobat Pro 8 works fine - CONVERT or PRINT and no missing text
    I prefer to use convert because sometimes the PRINT command drops some of the hyperlinks.
    [edited by forum host - email removed]

    Hi,
    Could you mail be the file with which you are seeing the issue. I will investigate at my end to see what the issue is. You can mail me at [email protected]
    Thanks,
    Love Bisht

  • After Preflighting a PDF, using Convert to CMYK, Flatten Transparency and Prepress Profile Convert to CMYK only the resultant PDF has a grubby halo along the edge of some white type sitting on an image. The type is part of the image.

    I am using a 27" iMac 3.2 GHz Intel Core 5, 8 GB Memory, running Yosemite 10.10.1. 
    The version of Acrobat that I am using is: Acrobat XI Version 11.0.10
    After Preflighting a PDF, using Convert to CMYK, Flatten Transparency (high resolution) and Prepress Profile "Convert to CMYK only" the resultant PDF has a grubby halo along the edge of some white type sitting on an image. The type is part of the image which is 300 dpi.
    It is like the image isn't really 300 dpi but has been artificially boosted to that to avoid being tagged by Preflighting, but when Preflighting the file it knows the original resolution.
    I have screen grabs which illustrate the problem perfectly but do not know how to post them, if indeed they can be.
    Any help or comments gratefully received.

    Without the files and possibly screen prints, it is virtually impossible to assist you.
              - Dov

  • CreateSparseDisk error using Convert-WindowsImage.ps1 to create VHD for Windows 10 Preview

    I have been trying to use convert-windowsimage.ps1 to create a Windows 10 .VHD under Windows 8.1 (inside VirtualBox)
    .\convert-windowsimage.ps1 -Sourcepath .\install.wim -Edition Professional -VHDFormat VHD -DiskType Fixed -SizeBytes 40GB -VHDPath .\Win10Previewx64.vhd
    This returns:
    ERROR : Exception calling "CreateFixedDisk" with "4" argument(s): "The parameter is incorrect"
    I get a similar error if I accept the default to create a sparse disk and the default SizeBytes value.
    I did notice when typing the command in the ISE that most of the parameter values turn purple, but with SizeBytes 40GB changes back to cream when you add the B of GB - I'm not sure if this is relevant. The code does appear to expect GB TB or KB.

    Post questions about scripts to the author here:
    https://gallery.technet.microsoft.com/scriptcenter/Convert-WindowsImageps1-0fe23a8f/view/Discussions#content
    ¯\_(ツ)_/¯

  • Layer got merged after using convert to profile form RGB to CMYK

    Hi all,
    I am converting a print design in photoshop cs5 from RGB to CMYK. My Layer got merged after using convert to profile form RGB to CMYK.
    after this i have save file and close it and i didn't have backup of this file.
    Now Please suggest How do i recover my all layers
    i need only my layers back.....  Please help me

    Sorry bud...but if you converted to CMYK and did NOT hceck Preserve Layers and then saved over your original layered RGB file, your layered RGB image is toast–as in gone, as in you are screwed...sorry, but Convert to Profile can flatten all the layers (depending on the options) and once flattened and saved, you have no option to recover the layered RGB file (unless you have is saved somewhere).

  • Using convert function on nvarchar2

    Hi experts,
    I am having a bit of a problem with the convert function. We use convert to compare street- and citynames and ignore any special characters, such as é ç etc.
    Something like:
    select ...
    from   ...
    where  convert(new_street_name, 'US7ASCII') = convert(existing_street_name, 'US7ASCII')
    This works fine if the datatype is varchar2, for instance:
    SQL> select convert('äàáâçëèéêïìíîöòóôüùúûÿ','US7ASCII') text from dual;
    TEXT
    aaaaceeeeiiiioooouuuuy
    If the datatype if nvarchar2 however, the result is not as expected:
    SQL> select convert(cast('äàáâçëèéêïìíîöòóôüùúûÿ'as nvarchar2(64)),'US7ASCII') text from dual;
    TEXT
    慡慡捥敥敩楩楯潯潵畵
    The NLS character settings on our database (10.2.0.4) are:
    NLS_CHARACTERSET       AL32UTF8  Character set
    NLS_NCHAR_CONV_EXCP    FALSE     NLS conversion exception
    NLS_NCHAR_CHARACTERSET AL16UTF16 NCHAR Character set
    I have tried several combinations... but no luck so far. Is it possible to use convert on an nvarchar2 to go from é to e?
    Maybe it is better just to use the translate function and define each conversion explicitly. Convert seemed a nice option because it works without any additional parameters... on a varchar2 at least
    Thanks!

    The usage of convert is not encouraged by the docs and in my opinion it's rather by accident that this works in your specific case than something other.
    What's going on?
    Convert returns the char-datatype of the input.
    We can use simple to_char to use the convert funtion in the way you intend.
    (You shoud take care when handling n_char data in sql statements, especially in 10 g enviromnments. You have to set the environment parameter ORA_NCHAR_LITERAL_REPLACE=TRUE and use the n-prefix. Take a look at the globalization guide for more details.)
    CREATE TABLE  "TESTNCHAR"
       ( "ID" NUMBER,
    "STR" NVARCHAR2(30),
    "STR2" VARCHAR2(300)
    insert into testnchar values (1, n'ßäàáâçëèéêïìíîöòóôüùúûÿ','ßäàáâçëèéêïìíîöòóôüùúûÿ')
    select
    id
    ,str,str2
    ,dump(str,1010) dmp
    ,dump(str2,1010) dmp2
    ,dump(convert(str,'US7ASCII')) dc
    ,dump(convert(str2,'US7ASCII')) dc2
    ,convert(to_char(str),'US7ASCII') c
    ,convert(str2,'US7ASCII') c2
    from testnchar
    ID
    STR
    STR2
    DMP
    DMP2
    DC
    DC2
    C
    C2
    1
    ßäàáâçëèéêïìíîöòóôüùúûÿ
    ßäàáâçëèéêïìíîöòóôüùúûÿ
    Typ=1 Len=46 CharacterSet=AL16UTF16: 0,223,0,228,0,224,0,225,0,226,0,231,0,235,0,232,0,233,0,234,0,239,0,236,0,237,0,238,0,246,0,242,0,243,0,244,0,252,0,249,0,250,0,251,0,255
    Typ=1 Len=46 CharacterSet=AL32UTF8: 195,159,195,164,195,160,195,161,195,162,195,167,195,171,195,168,195,169,195,170,195,175,195,172,195,173,195,174,195,182,195,178,195,179,195,180,195,188,195,185,195,186,195,187,195,191
    Typ=1 Len=23: 63,97,97,97,97,99,101,101,101,101,105,105,105,105,111,111,111,111,117,117,117,117,121
    Typ=1 Len=23: 63,97,97,97,97,99,101,101,101,101,105,105,105,105,111,111,111,111,117,117,117,117,121
    ?aaaaceeeeiiiioooouuuuy
    ?aaaaceeeeiiiioooouuuuy
    We can see that this already fails for ß.
    To give you an idea of alternative approaches:
    create table test_comp (nid number, str1 varchar2(300), str2 varchar2(300))
    insert into test_comp values (1, 'ßäàáâçëèéêïìíîöòóôüùúûÿ','ssäàáâçëèéêïìíîöòóôüùúûÿ')
    insert into test_comp values (2, 'ßäàáâçëèéêïìíîöòóôüùúûÿ','säàáâçëèéêïìíîöòóôüùúûÿ')
    select
    from test_comp
    where
    str2 like str1
    no data found
    select
    from test_comp
    where
    upper(str2) like NLS_UPPER(str1, 'NLS_SORT = XGERMAN')
    NID
    STR1
    STR2
    1
    ßäàáâçëèéêïìíîöòóôüùúûÿ
    ssäàáâçëèéêïìíîöòóôüùúûÿ

  • Pen tool not reconnecting after using convert point tool to reajust?

    Hi
    I was wondering if anyone had come across the problem pen tool not reconnecting afer using convert point tool to reajust? sorry if you don't understand what I mean, basically I can't reselect my pen tool to its path one doing another similar type task with another pen tool task.
    thanks,
    helen

    http://forums.adobe.com/people/Larry%20G.%20Schneider
    Larry,
    I Just tried the solution you gave. It did not work. I still have 1 point vectors in a very small image. The image is a simple drawing of a map. I just want to size it to fit a smaller page size.
    Elaine

  • Cannot use "convert to PDF" even though I'm subscribed

    I am subscribed to Adobe PDF pack (I am correctly signed in using the right profile, and the subscription is showing in my account in the Adobe app).  When I click on the convert to PDF button in order to convert a Word file to PDF a query box appears asking whether I want to subscribe.  If I click cancel, and try the function again, the box reappears.  If I choose the other option which is "confirm", I get a message saying that I have a current subscription set to auto renew.  I click ok but the query box doesn't go away.  If I click cancel, the function button still cannot be used - I just keep getting the same query box.  I am using an iPad Air ver 7.0.4.  Any help would be appreciated.

    Thank you for trying to help but your instructions do not work.  I signed out, then signed back in.  I then clicked on a document (.doc) to convert.  I clicked the convert button (second from the top right).  A box appears titled "convert to PDF".  It has a "cancel" link at the top right.  If I click that, I can go no further and the box reappears.  If I click subscribe, it asks me to subscribe, which I already have.  If I click cancel, nothing happens - the subscription box stays.  If I click confirm subscribe and enter my Apple Store details, the box stays.  If I then click cancel to get rid of the box and then click convert, the subscribe box reappears.

  • Howto use Converting File Content in Rec. Adapt. to suppress a xml-element

    Hi,
    we use PI/700, SP6.
    I have following structure (example):
    <MsgOut>
      <Sender>Partner1</Sender>
      <Receiver>Partner2</Receiver>
      <FlatPayload>
         blabla blabla
      </FlatPayload>
    </Msgout>
    Now I wanna use a XI-File-Adapter to write just a Flat-File with the content (of the element <FlatPayload>):
        blabla blabla
    (in other words: I wanna suppress all other xml-elements beside of FlatPayload)
    But I'm not able to configurate this with the function "Converting File Content"
    I tried different possiblities:
    e.g.
    setting yyy.fieldFixedLengths = 0 and yyy.fixedLengthTooShortHandling = Cut
    (yyy = Sender and Receiver)
    or
    just defining "MsgOut,FlatPayload" as RecordSet Structure (without Sender and Receiver)
    Result: no success.
    Now my question: is it possible to suppress some xml-elements?
    Thanks for your help!
    bye
    Wolfgang

    HI,
    You can suppress the XML Nodes/Elements over here. Not Fields ..
    For e.g if your outout xml is like this
    <MsgOut>
        <Sender>Partner1</Sender>
        <Receiver>Partner2</Receiver>
    <FlatPayload>
       <flatdata> blabla blabla</flatdatat>
    </FlatPayload>
    </Msgout>
    In this case you can suppress the <FlatPayload> node/element here.. Using Cut Parameter in the Receiver File Content COnversion.
    /people/sravya.talanki2/blog/2005/08/11/solution-to-the-problem-encountered-using-variable-substitution-with-xi-sp12
    So in your case, you can restructure your data type as you required.. I have mentioned in vice-versa here
    Hope this helps,
    Regards,
    Moorthy
    Message was edited by: Krishna Moorthy P

  • Convert a dynamic vhd to fixed vhd using Convert-VHD cmdlet

    Hi folks,
    I have dynamically expanding vhd. Now I want to convert it to fixed size vhd.
    I used the  Convert-VHD  cmdlet, which works fine.
    But if I give the source and want to overwrite my dynamic vhd to the fixed vhd,  it is throwing error, such the file exists.
    Convert-VHD –Path "\path\to\vhd\mydata.vhd" –DestinationPath "\path\to\vhd\mydata.vhd" -VHDType Fixed -DeleteSource
    Is there any other option (like -Force) available for this ?
    Note: Without using a temp file and renaming, I hope we have a better solution
    Thanks,
    Saleem

    Syntax is like below
    Convert-VHD -Path C:\temp\200MB-Dynamic.vhdx -DestinationPath c:\temp\200MB-fixed.vhdx -VHDType Fixed
    you need to have different names :-) like a copy command in the old days of DOS
    otherwise the Option -deletesource in your example would delete the disk file ? makes no sense right
    What is the Problem to fire a Rename Command after the Convert ?
    Udo

  • Can I use/convert Flash *.fla sources to Flex sources?

    I have an older project with a *.fla source file.
    Can I use this old Flash source in Flex SDK resp. Flex
    builder too?
    Do I have to convert this *.fla source in advance?
    Peter

    I did some further Investigation on my own.  Actually YES YOU CAN EXPORT VIDEO DIRECTLY from flash to AVI - MOV
    just select export/export movie/avi
    From there you can select the output resolution and have full HD 1920x1080.

  • Using Convertion agent adapter module (mail sender)

    All,
    In my scenario pdf file is being sent as mail attachment. The pdf file content should be mapped to rfc.
    I was able to implement similar scenario in which attached file is xml and not pdf (using adapter modules).
    I was able to use the Conversion agent module over file sender (and convert pdf to xml).
    Yet, I'm not able to the combination of both.
    Can you please provide useful links & advice?
    Regards,
    Uri

    Prateek,
    Thank for your replay.
    I'm using the following modules (&params):
    MODULE:localejbs/AF_Modules/PayloadSwapBean:
    PARAMETER NAME;PARAMETER VALUE
    swap.keyName;Content-Disposition
    swap.keyName;Content-Description
    swap.keyValue;attachment;filename="Z1HR_ADOBE_CREATE_INCIDENCE_AD.pdf"
    swap.keyValueZ1HR_ADOBE_CREATE_INCIDENCE_AD
    MODULE:localejbs/sap.com/com.sap.nw.cm.xi/CMTransformBean:
    PARAMETER NAME;PARAMETER VALUE
    TransformationName;Z1HR_ADOBE_CREATE_INCIDENCE_AD
    I tried using them in variety of sequences, yet none of them worked.
    Regards,
    Uri

  • Pro Tools & Kontakt 3 using converted Giga samples

    Any help or advice would be greatly appreciated.
    1) Computer
    iMac running OSX (10.4.11).
    2.1 GHz PowerPC G5
    2.5 GB DDR2 SDRAM
    2) Host
    Pro Tools LE 7 (version 7.3)
    3) Sample Instrument
    Kontakt 3 (version 3.0.2.004)
    DFD info:
    Channel Buffer Size: 120.0kB
    Preload size: 72.00kB
    4) Samples are located on an external drive connected via Firewire
    Hello,
    Used Gigastudio for ever. Recently switched to Kontakt 3 because it converts and plays all the giga files.
    When I play instrument thorough pro tools as a plug in sampler instrument everything sounds and plays perfectly. I hear the whole sound of all the instruments. attack and sustain (if I hold down the keys). and when I record the instruments into Pro Tools I hear the whole sound (attack and sustain). And Pro Tools records the proper midi data in the track with the proper length of sustain.
    The problem occurs upon playback. Pro Tools only plays the attack and the sustain is lost. I have noticed it on
    Nemesys GigaPiano 1GB
    Synclavier Keys & Guitars
    Larry Seyer Acoustic Bass
    Dan Dean Bass
    SI Hammond B3
    Well.. pretty much everything.

    Boy, do I feel like a *******!! I renamed a folder on the aux drive, for "convenience," yeah right. Thanks to David Das on the NI Kontakt forum who asked me the $64,000 question.
    later,
    John

  • Help! ORA-12703 without using convert

    Hi!
    First of all. I´m not crazy. I swear.
    It´s a very strange error.
    I have a form.
    This form has a trigger that calls a function inside a package [ form_var := my_pkg.my_func(x); ]
    That is been working for years.
    I added another function in that package.
    This new function is not been used in my forms. Not at all. Not other function inside the package calls the new function.
    It´s a isolated new function. No object uses it yet. I will use it latter, but nothing is using it for know. Clear?
    But now when I run my form, I get the error ORA-12703 when it calls my_pkg.my_func (the older function).
    (again: my_func does not call the new function).
    If i comment the new function in package specification (no need to comment in package body), It works again.
    If i run outside the form (sqlplus) it works (the older function and the new function: both works).
    Nowhere in my code there is convertion or anything that would require a charset translation.
    There was no changes in the server. Neither in forms builder and client. Neither in the Windows.
    Does anyone know why a non-used function would cause this error?
    Forms [32 Bits] Versão 6.0.8.11.3 (Produção)
    Oracle Database 10g Release 10.2.0.3.0 - 64bit Production

    I think you are right.
    I found a workaround for this.
    The problem is that forms 6 does not accept functions or procedures that has string parameters with a default value. Example:
    procedure test(my_var in char default 'N'); -- Error
    procedure test(my_var in number default 0); -- Ok
    procedure test(my_var in char); -- Ok
    This happened probably becouse I did not applied the patchs for my forms 6.
    So... for now I´m avoiding default values in string parameters... I ask to infra team to upgrade forms, but they don´t like to do this.. they love old softwares... (go figure!)
    Thanks

Maybe you are looking for

  • I just upgraded my iPhone to IOS 7.1 and not the speech to text function and the Siri function doesn't work. I tried rebooting but that didn't help

    I just upgraded my IPhone to IOS 7.1 and now the speech to text function and Siri doesn't work The microphone icon is white not grey And when I hit it it only stays on for a split second Not long enough to dictate a message It worked fine before upgr

  • Exporting for web question

    OK, I'm sorry to ask  this one; I'm sure it's been asked hundreds of times. How do I add my own personal watermark to my images upon export?  I have the .png file.  I just need to apply it to the bottom right corner so it will show up when I post it

  • Running a vi using run vi invoke method

    Hello, I have a question about the run vi invoke method. I have a start vi and a stop vi.  When I run the start vi, it uses the run vi invoke method to call a third vi.  I want the third vi to run until I call the stop vi which sets a global causing

  • Adobe pdf online form: how to stay anonymous

    If i fill out a smart pdf form online where i enter some information into the form, how can i make sure my ip address is not shown? If I use a proxy and disable javascript will the smart pdf form only see the proxy's ip address? Anything else I shoul

  • How to turn off battery percentage on iphone 4 ?

    Hi, Got the new iphone 4 recently. Since the initial set up the battery percentage icon is on. I tried to turn it off through settings- general-usage-battery percentage. But it still shows up. I even rebooted the phone by holding home button and powe