How to publish an app with editable resourse files?

I have coded a app that has a text file included in the resourses bundle.   Is there any way I can make the resourse file editable for the users (not by retyping it but most likely overwriting the resourse file)?

You can also copy the file from the bundle to your application's folder in the user's ~/Library/Application Support/ directory (the path is similar for a sandboxed application) - see the File System Programming Guide.

Similar Messages

  • How to publish iPhone Apps with Flash CS5 for beginners

    After many trial/errors and with lots of support from this site, I've decided to start building some tutorials to help people get into the packager. This is the first one and, now I'll work on a usual erros handle tutorial.
    Any comments and/or critics are welcome.
    http://www.chrisid.com/blog/2010/10/how-to-publish-iphone-app-with-flash-cs5-for-beginners /
    cheers,
    Chris.

    It helped me a lot, exept I hav this little problem ..
    I can't select the .p12 file .. it's disabled..

  • How to publish android app with the new AIR 2.6 ?

    Please anyone can help to instruct the correct way to install the new AIR SDK?
    I work with Flash IDE and don't know how to link them...
    And another noob question, are there any differences between "AIR Android" and "Adobe AIR 2" in publish settings when I'm going to create an android app with up-to-date AIR version? I was very confused by the scenario that as long as I upgraded to AIR2.6 SDK, "AIR Android" remains 2.5 though "Adobe AIR2" will surely be 2.6?
    Much appreciated for any help.

    To create an APK package, use the ADT package command, setting the target type to apk for release builds, apk-debug for debug builds, or apk-emulator for release-mode builds for running on an emulator.
    adt     -package
        -target apk
        -storetype pkcs12 -keystore ../codesign.p12
        myApp.apk
        myApp-app.xml
        myApp.swf icons
    Type the entire command on a single line; line breaks in the above example are only present to make it easier to read. Also, the example assumes that the path to the ADT tool is on your command-line shell’s path definition. (See Path environment variables for help.)
    You must run the command from the directory containing the application files. The application files in the example are myApp-app.xml (the application descriptor file), myApp.swf, and an icons directory.
    When you run the command as shown, ADT will prompt you for the keystore password. (The password characters you type are not displayed; just press Enter when you are done typing.)
    You can find more details here

  • How to start java app with many jar files

    Hi,
    I have an application that makes use of 50 jar files. When I try to start the application, I need a very long command line like
    java -classpath file1.jar;file2.jar;file3.jar; ... de.me.myapp.myclass
    This is not very handy. Is there a shorter way if all jars are in the same directory? I would like a command like this:
    java -cp /usr/local/my_jars de.me.myapp.myclass
    but this does not work.
    Any Idea if there is an easy solution?
    Andreas

    aaa801 wrote:
    i think there was a way to do it but it eather only worked with javac or java exe which is a lil problem but i did -cp .;./*.jar or something of that sortAs of Java 6, the classpath can contain wildcards.
    http://java.sun.com/javase/6/docs/technotes/tools/solaris/classpath.html

  • Publish Client App with My Adobe Account or Clients?

    I have a client and they don't have an Adobe Account so they want me to publish their app with my personal Creative Cloud design account. Is this a bad idea. I'm thinking that the app will FOREVER have to be updated by my account because it will be tied to my ID. Is this correct? How should I advise them. My initial thought is that they should setup a CC account ASAP and use their own account. Unless they want ALL updates for LIFE to go through. That is fine with me because then I they will have no choice but to continue to use me to update their app and I'll have a client for a long time. Ha. But seriously. Need help on this topic. What should I do?

    As long as your cleint upload the app using thier own Apple Developer account, you should be ok. Though you may build their first app using your CCM account, if the client decided to purchase their own CCM and built the app, they can move away from you and update the app whenever they have to

  • How to debug web app with weblogic?

    I wrote a web app that includes jsp files and some javabeans, then I put the jsp files to directory
    mydomain\applications\DefaultWebApp
    then I complied javabeans and put those classes to
    mydomain\applications\DefaultWebApp\WEB-INF\classes
    Then I start the weblogic,it runs very well.
    I modified some javabean, complie them and put classes override the old classes,
    but the web app can not find the new classes.
    Any one know How to debug web app(with javabeans) in weblogic?
    thanks!

    how to config the hot deploy?
    thxSorry, for this delay in responding. I had set notify me with email option in Watch This topic; but I never did get any email notification.
    I use wls6.1; I think the process may be very similar to this in wls8.x. In wls6.1 (sp5), this is done via the -
    Dweblogic.ProductionModeEnabled=False or
    Dweblogic.ProductionModeEnabled=True
    in the startup cmd/sh script. Out of the box, wls6.1 is set to Dweblogic.ProductionModeEnabled=False which automatically enables hot deploys.

  • Help:How to publish a Flash with full screen HTML

    Please, guys, be kind enough to teach me how to publish a
    Flash with full screen size in HTML. I have tried to search the
    board, but so far no luck.
    Originally, I want my .SWF to keep changing its background.
    The solution I got was placing colored stage-sized rectangles on
    the bottom layer. Then I don't want the viewers to see the HTML
    area where I cannot seem to control smooth color changes.
    So, after I construct a Flash file with backdrop-color
    changing by the method I mentioned above, how do I publish it with
    full screen mode in HTML, as you can see
    here? Help!
    Thanks in advance, guys.

    Here's an AS2 and a AS3 version I got from David Stiller
    2 small details you have to add 1 in publish settings set Dimensions to percent 100 100
    and in the html set <style>body {margin: 0; padding: 0}</style>
    // AS2
    import flash.display.BitmapData;
    Stage.align = "TL";
    Stage.scaleMode = "noScale";
    var tile:BitmapData = BitmapData.loadBitmap("tile");
    function fillBG():Void {
      beginBitmapFill(tile);
      moveTo(0, 0);
      lineTo(Stage.width, 0);
      lineTo(Stage.width, Stage.height);
      lineTo(0, Stage.height);
      lineTo(0, 0);
      endFill();
    fillBG();
    var listener:Object = new Object();
    listener.onResize = fillBG;
    Stage.addListener(listener);
    // AS3
    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    var bmp:Tile = new Tile(50, 50);
    var tile:BitmapData = new BitmapData(50, 50);
    tile.draw(bmp);
    function fillBG(evt:Event = null):void {
      graphics.beginBitmapFill(tile);
      graphics.moveTo(0, 0);
      graphics.lineTo(stage.stageWidth, 0);
      graphics.lineTo(stage.stageWidth, stage.stageHeight);
      graphics.lineTo(0, stage.stageHeight);
      graphics.lineTo(0, 0);
      graphics.endFill();
    fillBG();
    stage.addEventListener(Event.RESIZE, fillBG);
    David Stiller
    Co-author, ActionScript 3.0 Quick Reference Guide
    http://tinyurl.com/dpsAS3QuickReferenceGuide
    "Luck is the residue of good design."

  • How can i get apps with out using credit card info because i do not have a card ?

    how can i get apps with out using credit card info because i do not have a card ?

    Yo Chris. I've been following your answers to different threads and quite frankly, you're very keen in answering everybody regarding this stupidity that Apple has brought upon its customers. Kudos to you. But the problem is, most of the time, in some devices, your solution doesn't work because the NONE option is not there. The same goes for me.
    Meanwhile, I found a temporary workaround for the iPhone 4s, iPad 2 and iPod Touch 4th Gen.
    Register a free Apple ID from the iCloud Settings.
    Go to Settings>iCloud>Account>Tap Payment Information on the Storage Plan Category.
    Fill in the other boxes and choose "None" on Credit Card Information.
    That's it! Hope I helped those who still couldn't find the "None" Option.
    Must be running IOS 5.0.1 though, else there would be no iCloud.

  • Does any one can guide how to lock particular App with password?

    Does any one can guide how to lock particular App with password?

    CaptinSprinklez wrote:
    Yes, do these steps,
    Have you tested this throughly?
    As an example 'lock' Safari via your method.
    Now use Spotlight to search for Safari, tap it - is it 'locked'?
    Now go to your email & find a link to click - Safari opens again.
    Guided access is not a 'lock' in any sense of the word, it is a tool designed to stop things happening, but many apps have multiple ways to be found or launched you can't easily block them all.
    Mallik_Hyderabad, iOS doesn't have this feature & Apple do not seem interested in adding it (7.5 years & it still isn't an option) - use a passcode with a lock screen timeout if you have any sensitive data on the device or get an Android device.

  • Publishing air apps with native extension with Flash CS6 on Windows

    Hi all,
    is there any trick to publish air apps with Flash CS6 on Windows?
    I tried all native extensions from devnet, but nothing work to me.
    I read on Mac is possibility to specify the iOS SDK folder in publish
    settings, but on Windows it´s missing. 
    Is there anybody who has some experiences with publishing apps
    with native extensions for iOS and Android with windows Flash CS6?
    Thanks for all advices.

    I sympathize. I recently found a native alert for iOS and Android that's working with Flash CS6 on Windows with AIR 3.2.0.2070 but not AIR 3.2.0.2060. You can get the ANE here:
    http://www.jampot.ie/ane/
    Haven't tried the other ones. Let us know if you decide to try them.
    The sample code they have on the page doesn't work with the native alert. Here's the code I created - it's a document class for a .fla that has one dynamic TextField and one Button component on the stage :
    http://pastebin.com/DsxR9nJ4

  • HT204266 How do I update apps with the new version of itunes

    How do you update apps with the new version of Itunes ?

    If you're at the iTunes store, click on Library button at the top right. Then on the top-left side click on Apps and at the bottom right click on Check for updates.

  • How to Integrate Oracle Apps with BPEL

    hi
    How to Integrate Oracle Apps with Fusion Middleware(BPEL) ?
    Please Provide me steps:
    Regards,
    Khushal

    hi,
    There is an adapter thats being provided with the standard adapter set with SOA installation . There are several ways of integrating with Oracle Apps . The adapter has all the options listed out.
    Regards,
    Ajay

  • Can someone tell me how to buy an app with an iTunes gift card.  Is it possible to do it?

    Can someone tell me how to buy an app with an iTunes gift card.  Is it possible to do it?

    redeem the gift card first (bottom of itunes store on ur ios device). then purchase content.

  • Can I Publish iPad app with Creative Cloud or do I need to upgrade?

    I have a subscription to Creative Cloud that is about to expire.
    Before I renew - want to know if I can publish an iPad app with Creative Cloud, or do I need to upgrade to Creative Suite or Digital Publishing Suite?
    Thanks!

    Digital Publishing Suite, Single Edition was added to the Cloud in Sep 2012
    http://blogs.adobe.com/creativecloud/dpsse/
    "As a Creative Cloud member, you can now create, develop, and deliver iPad apps using the tools you’re already familiar with. Design brochures, personal portfolios, yearbooks, annual reports — and integrate interactive elements such as slideshows and image sequences — using our latest release: the Digital Publishing Suite, Single Edition.
    This new functionality comes as a plugin to InDesign, making it an approachable and intuitive solution that leverages your existing skills — so if you know print design, you already know how to create an iPad app. What’s even more exciting is that, as a Creative Cloud member, you get the exclusive benefit of being able to submit an unlimited number of iPad apps to the Apple App Store. If purchased separately, publishing each app costs US $395."

  • Can't publish an app with twitter timeline

    Hi,
    i have an app in Project Siena which i want to post my timeline and be able to post my tweets.
    I setup a twitter data source and in 'design' environment everything works OK.
    Then, the hell begins when I want to publish the app, as I can't get it to work with the twitter API.
    1) i registered an app with apps.twitter.com, copied the API key and API secret. For the callback URL I have just posted our company's website, as the app in Project Siena has nothing to do with any URL.
    2) suddenly the twitter timeline does not work anymore, the curernt user does not exist anymore within data sources and there is no timeline. I would think there is an issue with authorization?
    3) I tried adding a new twitter feed and doing it from the scratch straight away with the API, to no avail.
    4) I can't get rid of the twitter and twitter_1 data sources, as when I try to delete them from my app in siena, Project Siena just crashes. 
    My questions:
    - is there any specific catch connecting siena app with my twitter account?
    - is there anyone here who got to the point of feeding timeline from twitter to the PUBLISHED siena app?
    - is there a way to 'hack' the data source out of the app somehow differently than through the Siena GUI?  Like to edit something in the myapp.siena file?
    I appreciate your answers, thanks,
    Peter

    Actually, I got it to work somehow. 
    This is what I did:
    I added a new twitter data source and NOT logged in straight away with my user account (like I would normally do to play around with the app).  Instead, I set-up the APIs first, and only then went to change the feed elements in my screens
    (so that the source was pointing to this new twitter_2 data source instead of the old two which i setup earlier, i.e. twitter_1 and twitter).
    Now the app is publishable and when I open it, it asks me to log in with my twitter account - all good.
    Have still not got rid of the two old twitter sources in the .siena file. If i press delete Project Siena just crashes. Any ideas ?   At this moment it does not affect functioning of the app, it is just 'messy' and 'unnecessary' in 'source code'.  

Maybe you are looking for