Tips for porting J2SE app to J2ME?

Hi all,
I need to port a J2SE app to a java env even more restrictive than J2ME.
The app relies on several java and javax packages that are not in the
target environment.
Are there any shortcuts quicker than re-implementing the missing classes
and changing the app to reference the re-implementations?
Is is possible/practical/legal to extract java and javax .class files from a
J2SE jar file (like rt.jar) and use them in a non-J2SE environment?
I'm guessing that a VM would block that as a security problem.
Thanks,
-troy

Hi all,
I need to port a J2SE app to a java env even more
restrictive than J2ME.
The app relies on several java and javax packages
that are not in the
target environment.
Are there any shortcuts quicker than re-implementing
the missing classes
and changing the app to reference the
re-implementations?
Is is possible/practical/legal to extract java and
javax .class files from a
J2SE jar file (like rt.jar) and use them in a
non-J2SE environment? you may have some depedencies problems
I'm guessing that a VM would block that as a security
problem.
Thanks,
-troybut way is to rewrite everything ! good luck
fred

Similar Messages

  • Unicode/glyph/font advice needed for porting WinForms app to Macintosh using AIR

    I've written an application in WinForms/.NET that I'd like to port to the Macintosh platform. I have never developed for the Mac but it seems as though AIR might be a good choice. I'm totally new to AIR. Some advice and info would be much appreciated!
    Can an app be developed in AIR on a PC running Windows and then later be deployed transparently on a Macintosh? Or do I need to be developing on a Mac?
    The app is a search interface for use against text-bases comprised of texts composed in ancient European languages. I pre-index the text-base and store it in SQLite as a fully-normalized (1NF) set of relations:  TITLES, WORDS, WORDOCCURRENCES.  So the app is really nothing more than a (query-only) database application with some specialized glyph-rendering requirements.
    In the WinForms app, I used a custom third-party edit control with  extensive support for the RTF specification, in combination with some third-party fonts that contain the necessary glyphs for rendering the Unicode characters corresponding to RUNES and to some abbreviations found in medieval manuscripts. BTW, these special non-ASCII characters are represented in the database not as unicode codepoints but as entities that can be represented in standard ASCII (e.g. "þ"   ); when rendered to screen, the correct glyph has to be substituted when the Unicode codepoint for the entity supplied -- in this example the codepoint would be [U+00DE] and a thorn glyph  ( Þ) should be rendered.
    Since it might not be possible to find a single omnibus Unicode font that contains a glyph for every codepoint I need to render (what are the most glyph-rich freeware Unicode fonts for Macintosh, btw?)  the text widget must let the programmer "wrap" a Unicode character or series of Unicode characters in whatever font may be required at that point in the text. Is there a rich-text widget for AIR that can do this?  A widget that can render HTML and supports CSS stylesheets would be ideal (inline-CSS-only would be OK too). If the widget had CSS stylesheet support, the string of Unicode codepoints could be wrapped with a <span class='rune'>.....</span> and  the font-name for the .rune class could be specified in the CSS stylesheet.
    Thanks very much if you've taken the time to read through this tedious stuff !

    Flash Professional started as an animation tool and was expanded with a programming language that became ActionScript (now ActionScript 3.0). Content creators began using Flash to develop applications rather than just animation, so a lot of developer-centric and application-centric functionality was added to Flash, including pre-built user interface components (written in ActionScript). All that functionality and those components are still available in Flash Pro today. However, many developers who came from a traditional programming background had trouble getting into Flash Pro because it is really an animation design tool -- so it uses a timeline, layers, visual drawing canvas, and it required some figuring out to learn how to structure an application in that type of tool.
    In response to this, Macromedia (now Adobe of course) created Flex. Flex uses ActionScript just like Flash Pro. Flex also includes numerous user interface controls, written in ActionScript. Flex also adds advanced, flexible layout control and many utilities for common programming tasks like loading data from or sending data to a server, formatting values, validating user input, and more. With Flex, you can define your user interface using an XML markup language (MXML); the compiler then turns the MXML into ActionScript code before turning it into your compiled application. As far as tooling, an eclipse-based IDE called Flex Builder was created that gives you a code editor, a workable but not designer-oriented design view, and other developer tools like debugging and profiling. (Note that Flex Builder has been renamed to Flash Builder for the next release, which is currently in public beta.)
    So to generalize, Flash Pro favors a more visual design and animation type of working style, whereas Flex favors a more text-based, code-centric working style. (But that's just a generalization -- many people, especially people who "grew up" with Flash before Flex, still prefer Flash Pro even though they're heavy coders.)
    Also, if you want to write everything in code with no pre-drawn visuals (i.e. Flash Pro) and without using MXML or Flex components, you can create your application entirely in ActionScript code. Flex Builder supports ActionScript-only projects for that purpose.
    Here are a few links for getting started with Flex, which I would personally recommend if you haven't used either one and you're building something that's more "application" focused rather than media or animation focused:
    Flex "Quick Starts" -- short articles focused on specific tasks in Flex
    Flex "Getting Started Experience" -- designed as a set of training courses, intended to take 12+ hours to complete (but you can skip around of course)
    "Flex in a week" video training -- a free 5-day video tutorial series on Flex
    Flex Developer Center "Learning Paths"
    As a side note, the link you included actually goes to the JavaScript version of the documentation, which is what you would want if you are going to use HTML/Ajax to build your app. However, if you're wanting to use Flex you would want to use the Flex version of the documentation:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/HTML.html
    http://livedocs.adobe.com/flex/3/langref/flash/html/HTMLLoader.html
    And if you're wanting to use Flash, you can use the Flash Pro version of the documentation:
    http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/html/HTMLLoader.html
    Yes, it's somewhat confusing and overwhelming. We're definitely working on improving things in that regard.

  • PKGBUILD Tips for Funky Java App

    I'm trying to make a PKGBUILD for the GURPS character sheet program. It's a Java app, so I tried to follow the Java PKGBUILD guidelines from the wiki, but gcs has a weird build system that made things difficult. The main annoyances are that it tries to include its own JRE, and rather than running using a normal jar it includes a binary launcher for which I can't find the source.
    Here's my PKGBUILD that just tries to whip the binary package into shape:
    pkgname=gcs
    pkgver=4.0.1
    pkgrel=1
    pkgdesc="An editor for building character sheets for GURPS 4th Edition."
    arch=('i686' 'x86_64')
    url="http://gurpscharactersheet.com"
    license=('MPL')
    depends=('java-runtime')
    src="$pkgname-$pkgver-linux"
    if test "$CARCH" == i686; then
    src+='-32'
    fi
    source=("${src}.zip::http://sourceforge.net/projects/gcs-java/files/${src}.zip/download")
    md5sums=('SKIP')
    build() {
    pushd $srcdir/$src
    rm -r support/jre
    ln -s /usr/lib/jvm/default/jre support/jre
    popd
    package() {
    install -d $pkgdir/usr/{bin,share}
    cp -dr --no-preserve=ownership ${src} $pkgdir/usr/share/gcs
    ln -s $pkgdir/usr/share/gcs/gcs $pkgdir/usr/bin/gcs
    Am I doing anything stupid?

    How are you supposed to configure a package that requires Java 8? Should I not use $JAVA_HOME since that could be pointing to an older version?
    Anyway, I've produced a better package, but the build process is still kinda ugly.
    I couldn't figure out a way to use ant's bundle (which includes the JRE and the precompiled binaries), so I skipped that entirely and just copied everything myself - that let me use the recommended /usr/share/java organization. But since the app expects everything to be in one directory (with a fixed path), I had to patch it to let me configure the app directory using an environment variable.
    Here's a git repo for the files: https://github.com/silverhammermba/gcs
    And my new PKGBUILD:
    pkgname=gcs
    pkgver=4.0.1
    pkgrel=1
    pkgdesc="A WYSIWYG editor for building character sheets for GURPS 4th Edition."
    arch=('any')
    url="http://gurpscharactersheet.com"
    license=('MPL')
    makedepends=('git' 'apache-ant')
    depends=('java-runtime')
    source=(
    'git://code.trollworks.com/apple_stubs.git'
    "git://code.trollworks.com/gcs.git#tag=$pkgver"
    "git://code.trollworks.com/toolkit.git#tag=$pkgver"
    md5sums=('SKIP' 'SKIP' 'SKIP')
    prepare() {
    cd "$srcdir/toolkit"
    git apply "$startdir/set_app_path_from_env.patch"
    build() {
    cd "$srcdir/apple_stubs"
    ant
    cd "$srcdir/toolkit"
    ant
    cd "$srcdir/gcs"
    ant
    package() {
    install -d "$pkgdir/usr/share/java/gcs"
    find "$srcdir" -name '*.jar' ! -name '*-src.*' -execdir install -m644 {} "$pkgdir/usr/share/java/gcs" \;
    mv $pkgdir/usr/share/java/gcs/gcs-*.jar "$pkgdir/usr/share/java/gcs/gcs.jar"
    install -d "$pkgdir/usr/share/gcs"
    cp -dr --no-preserve=ownership "$srcdir/gcs/Library" "$pkgdir/usr/share/gcs"
    install -Dm755 "$startdir/gcs.sh" "$pkgdir/usr/bin/gcs"
    Last edited by silverhammermba (2014-10-01 15:23:13)

  • Building a simple J2ME chat client (for own J2SE-based server) Threading Qs

    Hi!
    I am making my own simple chat / messenger service to use between a couple of friends over GPRS.
    On the server side i have made a multi threaded TCP server that opens a new thread for each connecting client and stores these socket connections in a hashtable for access to send data between each thread.
    So when a client logs on to the server, the server sends a printwriter message to all other clients informing them of what client connected, and the clients can put the username in its out-database. then the clients can send messages to each others using a simple, self build protocol.
    All connection between clients/server happens over a simple printwriter on in/out streams.
    Problem is: it works perfectly most of the time.... However, sometimes a message is mysteriously lost when transferred from the server to a client. Transfer from client to server works flawlessly. I am thinking that it might have something to do with the client side threading, or slow network transfer casuing a TCP read error.
    Client structure is as following:
    start-> Midlet class -> (press connect to server) -> new Client class (impl runnable) -> new thread(this) -> void run() sets up all connections and writers, waits in a while loop for messages from server and takes action according to message type. -> Button(send) uses output stream to send a message to server.
    Do anyone have any suggestions on what I must consider when making a client that will simultaniously be able to listen for data from server as well as send data to server over 1 socket and slow mobile connection without causing any trouble?
    More info can be provided if necessary.
    Thank you!

    Building a simple J2ME chat client (for own J2SE-based server)a. i would like to say that this is a bl00dy brilliant idea. i mean ~ its been done before but building one yourself is quite thrilling.
    b. are u using java 4 or java 5. ?
    sometimes a message is mysteriously lost when transferred from the server to a client. Transfer from client to server works flawlessly.are you using push registry to recieve incoming connections.
    i recommend using a StreamConnectionNotifier connection instead of just a socket connection. you could send your data (xml/plain text) just like a stream (tcp ofcourse). if you want to know how to use a StreamConnectionNotifier connection, here's how
    try{
    // listen at local port 789
    StreamConnectionNotifier notify = (StreamConnectionNotifier) Connector.open(“http://:789”);
    // infinite loop to get incoming connections
    for(;;)
    StreamConnection stream = notify.acceptandOpen();  // return a stream connection when a connection is made
    InputStrean mystream = stream.openInputStream();
    while(mystream!=-1)
    mystream.read();
    ....cheers

  • J2ME dev tools for simple demo apps

    Hello community,
    I 've been using Java for a long time and recently got a project involving j2me. Its mostly apps for demo purposes, therefore there is not a lot of logic/network traffic involved. For example, one app is a bunch of screens guiding the user throught different text blobs and pictures. It is very similar in structure to browsable content, with links and forms, just like a very simple HTML site.
    I have always used netbeans for developing java, and it seems that it has some neat tricks for create ME apps.You can use a nice drag and drop design mode that also auto-gens code. But I have found a tool like http://www.cascadamobile.com/ , in which you write simple HTML/js pages that link to each other and then this thing will generate the j2me code from that. That would be exactly what I would need for my purpose, save for the fact that the product is Ad-supported, so its a no-go.
    Maybe I could make a j2me app as a WML-browsable content so that I would just have to compose the wml and then the app would just "browse" them from the phone's memory?
    In any case, the question is, are there any fast tools for making simple (mostly demo) apps, in a j2me environment?
    Thank you.

    RealBasic, Metrowerks Codewarrior, you might find some references on http://developer.apple.com/ and one software vendor I know still makes software for it is http://www.lemkesoft.com/
    And they might be able to tell you what tools they use.

  • Set external ports for Android Link App

    Hello,  I wanted to request the option to manually set the port when accessing the nas remotely from the Android Link app.  My provider blocks standard ports like 80 and 443 from incoming so usually just forward a non-standard port from my router to any internal servers.   Asus Routers have a similar app to access data but they allow you to set different ports when accessing services internally vs remotely.  Hoping we could get the same options for the Link app.   

    Steven_Lenovo wrote:
    Hello mrhector Unfortunately the Lifeline firmware does not have the option to change the ports need to fully access personal cloud via the Link application. Hey Steven, That's ok, I don't need to change the ports on the NAS.  I just need to be able to change the port settings that the Link application uses to connect to the Nas remotely. I would forward the ports from my router. ie.  Router forwards8080 -> nasip:804443 -> nasip:443  So instead of having the Link app try to connect to remoteip:80 / remoteip:443 it would connect to remoteip:custom port I hope that makes more sense.  

  • What are the ways to download j2ME app to j2ME phones

    Hello Friends,
    What are the ways to download j2ME app to j2ME phones, is there any method that all phones supports.
    I am downloading app to different phone in different ways, i.e using infrared, bluethooth, cable (different cable for different phones), URL (WAP)... offff.....
    Can any one let me know is there any one way that we can download app to phone... i mean is WAP URL support on all phone?
    Thanks
    Kumar.M.R

    The following Java tip may help:
    How to install a J2ME aplication on a mobile device
    http://www.java-tips.org/content/view/617/73/

  • How do I get my new Apple ID associated with an older MacBookPro so that I don't get charged more than once for a purchased app when I download it to the older computer recently upgraded to Snow Leopard?

    I recently upgraded my 2 year old MacBookPro to Snow Leopard so I could download Face Time and Final Cut ProX to it.
    I've already purchased the apps and installed on my iMAC and Macbook Air.
    After downloading Face Time I received the following mail;
    "Your Apple ID, *************, was just used to purchase FaceTime from the App Store on a computer or device that had not previously been associated with that Apple ID.
    If you made this purchase, you can disregard this email. This email was sent as a safeguard designed to protect you against unauthorised purchases.
    If you did not make this purchase, we recommend that you go to iforgot.apple.com to change your password, then see Apple ID: Tips for protecting the security of your account for further assistance.
    Regards,
    Apple"
    I don't want to be charged twice for these apps, especially Final Cut ProX, so how can I get the MacBookPro associated with the Apple ID I'm using now?
    Cheers

    This is probably a new precaution that Apple has taken to alert folks that something has occurred with their account that has not occurred before*, namely a Mac has downloaded something from their account that has not done so before. And as the notice says, if it was you doing so, then you may safely ignore the notice. Also, do not be alarmed, Apple refers to all downloads as purchases, even when they are free.
    But if you are truly concerned about the notice then you can authorize the Mac with your iTunes account, which should be the same as your MAS account. Open iTunes on the older Mac and sign into your account. Then in the Store menu choose Authorize This Computer. Now this Mac is definitely associated with your account and can now play media that you purchase from the iTunes Store as well.
    *My banks do the same thing when I pop up making a purchase with my bank cards somewhere in the world I have never made a purchase before. They call me and email me and want to know if it is indeed me using the card.

  • Where can I find a good tutorial for mobile game developement with J2ME ?

    Hi All,
    I'm completely new to J2ME programming. But I have past experience on J2SE developement. Now I would like to know that where can I find a good tutorial for mobile game developement with J2ME ?
    I'll be very greatful if I can find a useful step-by-step tutorial (eg. "The Java Tutorial" for J2SE)
    Please point me ot the direction.
    Thanks
    ZuriJAckshoT

    ibook-widgets.com    have a free tutorial book in the iBooks store.  Search for "Create your first interactive book using iBooks Author"   they also  sell widgets.
    I  dont have any connection - I  found their eBook in the store long ago  and used it to learn more about iBA.
    The best advice though, is be patient,  go back over the process step by step, I cannot  access the Help files for some reason.. but i am sure its in their.

  • How do I configure my airport utility for port mapping?

    I am trying to view my FOSCAM cameras over the internet while away from home. They work fine in my house using Wi-Fi. Instructions say to do port forwarding. I have cameras set up, but can't get my router to port forward. I found "Port Forwarding" in Airport Utlility then NETWORK. 'Router mode: DHCP and NAT';on 'Port Settings I click on the "+" at the bottom. 'Private IP Address: populates to 10.0.1.201'. What goes in the other blocks?

    Please check out the following AirPort User Tip for details on how to configure Port Mapping on the AirPort routers. I would suggest that you check your FOSCAM documentation as to what TCP and/or UDP ports are required to access their IP cameras from a remote location.

  • Partitioning Tips for Most Effective Usage

    Hi guys,
    I'm running on Snow Leopard with 4GB DDR3. I'm hoping I'll be able to get some advice here on how i should fully utilise my MBP's hard drive.
    I recently bought a new 500GB Samsung HDD but I've yet to install it cos I'm still pondering on what type of partitioning scheme i should stick to. I use my MBP as a workhorse. I do photography, design with photoshop, video editing, recording and gaming (with windows). From time to time i work with large transfers of files in and out, like we're talking GB here.. There are also 2 other people in my family who use this com, but just from time to time, transfer pictures and sync their iphones etc. I'm aware that too many partitions can also slow down the system, but this time round, im really certain i'd wanna partition my mac after a tragic crash of my os x partition hdd. It wasn't the HD's fault tho as my bootcamp partition survived.
    Anyway, how many partitions is too much and how should i partition my new drive to effectively use it? I've been reading quite a bit around the internet and so far from what i've gathered, im thinking of the following scheme:
    1) Primary Boot ROM - System and Applications (150GB)
    From my experience some apps like Final Cut Studio and Logic Studio 9 can take up as much as 56 GB each, Adobe CS5 takes up quite a bit too.
    2) Emergency Boot - For emergencies (15GB)
    System files and essentials like Alsoft Disk Warrior 4 and Data Recovery 3 in the event of nasty crashes for damage control/rescue
    3) Windows Partition - For Windows 7 and Games (100GB)
    Games like Modern Warfare 2 and Fallout 3 can take up to 15GB etc,
    4) Data Files (Remaining).
    What do ya'll think?
    More Questions I'd like to raise are:
    1) Would you think it would be better to create a partition, just for installing hugeass apps (ala logic and fc) and does anyone know if they can be installed on the non boot roms? eg if im using my primary startup partition, can i install logic on another partition which doesn't have Mac OS X on it?
    2) Should my Video, Audio and photography workfiles be in separate partitions or would it be more advisable to just keep them together?
    3) Should there be a partition just for temporary file storage like if im moving 50gb of data?
    4) How about video capturing? Recording sessions and post production project files? Should they be in a partitions of their own?
    5) I've read about scratch/swap partitions, what are they and are they advisable to have? Especially cos the stuff i do are pretty resource intensive.
    6) Should the different users be on different partitions?
    I guess that's about all the questions on my mind for now..
    Would greatly appreciate your help before i plan out and partition
    Thanks in advance!

    @Kappy,
    I'm sorry! Nono don't get me wrong.. I'm not shutting out your advises. I'm just in a dilemma as there seems to be 2 opposing camps: people who swear by partitioning and those against it. I read that a lotta people in the media industry, ie sound engineers who do recording on the go/designers who do huge projects highly recommend the practice of partitioning as huge amoutns of time are spent on each project, so they'd rather be safe than sorry.
    On the otherhand, people here are saying there's no need to do so/it sounds illogical.. I'm just wondering why.. I mean, i understand its gonna be a hassel and all, but is it not advantageous to to do so especially in times of adversity?
    About rEFIt, understand that the point of the article was aimed at being a tutorial at creating a multiple booting computer. However one of the steps pointed out was that we could create multiple partitions before installing Windows in just one partition. If that can be done, wouldn't it mean that instead of creating multiple boot partitions , i can create storage partitions as well, by selecting the appropriate kind of disk formats, which technically bypasses the limit of Bootcamp's 2 partition only policy.. Do you think that would be possible? PS: im not looking to install Windows on an external drive..
    About the emergency disk,
    I fully agree with you that ideal is to have it on an external drive, which i definitely have been practicing. However cos of my recent crashing, i figured that data recovery from my external usb harddrive indeed help, but was quite a slow process (yea.. i know firewire's the fastest option! heh), but im just wondering, any idea if booting from a good partition would be faster than one from an external hd/usb stick?
    OS X is structured to expect data/documents to be stored in their appropriate folders on the startup volume. This i do agree, do you think there are ways to re route them?
    Video, Audio and photography workfiles might best be kept on another hard drive, preferably FW800 for speed.Yea this i definitely agree that it would be the ideal, however i bring my mac out for live recordings sometimes using a firewire interface. My mbp has only 1 firewire interface tho, so an ext firewire HD wouldnt be an option.. and if i can avoid bringing along an external drive, that would too be great.
    Your tip on backing-up with a dedicated large external HD that i do agree fully and couldn't disagree less! In fact that's what i'm practicing. The RAID box is a wonderful idea actually! So thanks! (:
    @Michael Black
    Thanks for your answers to #5 and #6.. !
    Everyone, thanks for your responses so far! (:

  • How to do a Facebook OAuth Login for HANA XS App in Trial Account?

    Currently I am playing around with Facebook logins from the SAP HCP Trial account.
    Using the Facebook JavaScript SDK in an HTML5 app works easily with a few lines of code.
    Now I try to do it in an XS application. I found this blog about OAuth2 Authentication but this does not seem to work in the Trial landscape?
    I also read the blog from Chris Paine or Chris Paine but there is also Java code involved and maybe things changed in the last two years?
    Then I read many help pages from SAP HCP help about OAuth, Trust etc but the more I read the more I am confused
    So my question is:
    How can I do a Facebook login via OAuth in an HANA XS app on the trial landscape?
    Any hints or tips for further steps appreciated
    Thank you for your help,
    Mark
    EDIT: In this tutorial from Martin Raepple is a similar scenario described (here a Cordova app authenticates with OAuth2) but my scenario should be a lot simpler because on SAP HCP I use anonymous access (no Identity Provider involved) and only the Facebook login is needed. But maybe I can use parts of this tutorial? Currently there are so many options that I cannot see which parts are relevant and which are not...

    as far as I can remember, you can also try to click menu Contacts >> Contact List >> Facebook.  Then the option to connect Facebook and Skype will be presented (under the Contacts Tab).  
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • Tip for Bose SoundDock 10 Remote to play Aux input from Logic (or other)

    Here is tip for live performance.
    If you are using a Bose SoundDock 10 for playback in a live setting (where you want to minimize awkward public HiFi system tweaking) here is a tip.
    The Bose SoundDock 10 plays plugged-in iPods (I use a Nano; 4th Generation) AND has a simple auxiliary in 1/8" port. But there is neither a volume nob NOR a volume meter for the Auxiliary signal.
    So.. in the process of trying to create a predictable consistent output level
    I experiment to see wether I should
    a) Count increment clicks from zero,
    b) Count increment-hold-seconds from zero,
    c) Use the iPod's volume level meter.
    Wow! the iPod's level WILL set the auxiliary signal!! Yea!!
    Problem: while toggling back and forth between
    1) iPod-input to SEE and SET level by sight, and
    2) Auxiliary-input to test the level by hearing,
    you will inadvertently expose your set-up audience to load, undesired music.
    This is because of a limitation of the Bose SoundDock remote control’s toggling behavior. You see, even if you PAUSE the undesired music before toggling from the iPod-input to the Auxiliary-Input, UPON TOGGLING BACK, to the iPod-input the Bose SoundDock remote AUTOMATICALLY DE-pauses. This, then subjects you and your unsuspecting audience to an annoying and distracting snippet of the least objectionable song you can remember to que up!
    For that reason I suggest creating in Logic a "Sound of Silence" Song and exporting to iTunes.Thus, no iTunes library (or professional musician's iPod) is complete with out a 3 minutes of silence file for balance, check, and normalizing etc. Don't forget to attach a remember artwork.
    You could also you this track on memorial day or at funerals.
    Good luck.
    See upcoming video of the whole thing at TheEnchantedPiano.net

    I greatly enjoyed Philip Norman's Lennon biography. He said Ono changed her mind about endorsing the book because (according to her) Norman "had been 'mean to John.' " Norman does say some candid things about Lennon's behavior as a parent.

  • Helpful Tips for all iOS Devices!

    Here's the link for helpful stuff, including news and tips for all iOS devices!
    El LINKO

    Thank you,
    Then, when you have to create an iphone+ipad app joined, have you only possibility to create Multifolio app type?
    Then, can you only see some multifolio options like the Android app (next link)?  
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/digitalpublishingsuit e/articles/making-and-deploying-android-dps-viewers/fig03.jpg
    So, with iPad+iPhone apps, the iPad version would be multifolio app too, that is right?
    And are these apps (iPad+iPhone) multifolio (next link)?
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/digitalpublishingsuit e/articles/making-and-deploying-android-dps-viewers/fig10.jpg
    can I only create single folio for iPads when I have iPad app alone?
    Thanks a lot for you information,

  • Tips for ensuring iOS compatibility?

    Are there any tips for ensuring that iWork Pages on the Mac is limited to the functionality and fonts supported by the iOS Pages app?

    Here is one thing published by Apple, but not sure how accurate or complete it is:
    http://support.apple.com/kb/HT4647

Maybe you are looking for

  • CRM Content Management in CRM 2007

    Currently, we are upgrading our CRM system from 4.0 to CRM 2007. In 4.0 this is how, we used to assign the content management alias in IMG. CRM->Basic Functions->Content management->Define Alias for MS office Integration in the People-Centric. What s

  • A stopListener in AS3

    I have AS2 code that listens for the end of an instance of FLVPlayback and a .js file that picks that event up and removes the transparent video from the layer above existing HTML content. (I think.) I've been using the combination for two years succ

  • Custom icon for boot camp disk?

    I have a Win XP boot camp disk partition (NTFS file system) on an internal hard drive. I want to use a custom icon for this partition on my OS X desktop. However, when I select the icon of this partition in a Get Info window, the only Edit option tha

  • Capture video on iphone applicationand play it on website

    Hi, I capture movies with my iphone application. I think the only format the iphone creates is .mov - does it? Anyway, later, I save the video file on Amazon server (AWS) and I want to be able to view the video again both on iphone devices and on my

  • Macbook wont go to sleep on its own

    hi guys...my macbook wont go to sleep on its own. i mean, Energy Saver Preferences is set to turn-off the display in 1 minute, and to make the computer sleep in 3 minutes - but the macbook wont turn off the display or sleep, based on the settings. Bt