In need of some advice - Trying to publish my first iOS app

Hi there!
I've been looking just about everywhere for this error, and it does seem like a lot of people have encountered the same problem. However, i cannot find the answer anywhere.
When i click "publish", I'm getting this error message: " iOS publishing requires files which are not installed. Please quit Flash Professional and run the original installer to ensure that all optional components are installed"
Now, after my 5th reinstall I cannot figure out which files these would be. From what i know, I've selected all the optional files that i can see during installation.
So if anyone out there knows how to solve this, your reply would be more than greatly appreciated!
- TJ

Hi there!
I've been looking just about everywhere for this error, and it does seem like a lot of people have encountered the same problem. However, i cannot find the answer anywhere.
When i click "publish", I'm getting this error message: " iOS publishing requires files which are not installed. Please quit Flash Professional and run the original installer to ensure that all optional components are installed"
Now, after my 5th reinstall I cannot figure out which files these would be. From what i know, I've selected all the optional files that i can see during installation.
So if anyone out there knows how to solve this, your reply would be more than greatly appreciated!
- TJ

Similar Messages

  • "no access to the digital certificate" - Trying to export my first iOS app from Flash - Help please

    Hello
    I'm trying to export my first iOS app from flash to my desktop / on the device (Flash Pro CC, Iphone5)
    I followed the instructions on the adobe website to build an air app for iOS but on the last step it
    doesn't export the app.
    What I've done so far:
    - Apple developer account
    - creating the certificate + convert it to .p12
    - app ID / Name etc.
    - creating the provisioning profile from apple
    - iOS Air app in flash (Only Text "Hello world" with a tween)
    Now i have to load the certificates into Flash & enter a password (is it the password that
    i entered in the certificate or from my developer account/ Apple ID password? Both didn't work at the end)
    When i klick on publish in the last step than it loads a while but then i get the Error:
    "no access to the digital certificate"
    What is wrong? Can you help me please.

    Also, I should say, when I go into my phone on the computer and try to install an app, I get this message:
    Unable to start operation. Installer is already in use.
    Any ideas

  • I'm logged in to Creative Cloud, have saved a web gallery within Lightroom, and am trying to publish my first web gallery.  All seems to be going well until it looks like it's almost finished and I consistently get the same message, 'An error occurred sen

    Am logged in to Creative Cloud, have saved a web gallery, and am trying to publish first web gallery.  Consistently get the same message, 'An error occurred sending the file : connection to the server failed'.  Can somebody help me to resolve this?

    Firstly, have you entered the correct FTP settings as given by the host where you are uploading to?
    Next, try using Export and then uploading via an external FTP program like Filezilla. FTP from Lightroom isn't as robust as a dedicated FTP program.

  • What does it mean "Will Install" when I tried to install/sync an iOS app in iTunes and how long is the wait until the app is installed/Sync on my iOS device

    I am testing an iOS app developed by my team.  When I tried to update the new version, I kept receiving the "Will Install" status.  What do I have to do to get it installed as soon as I sync the device?  If I have to wait for whatever reasons, how long do I have to wait for the status to change.  I am using iTunes 11.0.1 (12).  Thanks

    I found that I had "restrictions" turned on under general settings. Turned them off, rebooted the iPad and it was able to install apps from iTunes.
    Hope this helps you.

  • Invalid Credentials when trying to login to iPrint iOS App

    I've recently setup a fresh install of the iPrint Appliance 1.1 and installed all security patches.
    Original setup was iPrint appliance was SSL but syncing to our edirectory server was not, and I was unable to login with the iOS app. This was in Evaluation mode so I am unsure if the password being encrypted over SSL from the appliance then trying to match on the eDir server not on ssl caused that issue.
    However I then installed our license, and configured LDAP sync to be over SSL, but I am still gettin the same "Invalid Credentials" message. That being said, our current license only entitles us to the appliance and iprint desktop, not iPrint Mobile whereas when in evaluation mode you have access to iPrint Mobile.
    My question here is, should I be expecting it to say "Invalid Credentials" even though I do not have any iPrint Mobile licenses, or should there be a different message or result?
    Thanks!

    mojeda92,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Need for some advice

    hi.
    i am getting started with swing, and i was wondering if i am making some right choices. Meanwhile i dont know where to start.
    I want to create an graphical editor for my thesis.
    That means that I need to implement:
    - a tree with a hierarchy of concepts
    - draw several kind of graphs/ diagrams (drag and drop the concepts from the tree and create the nodes, connect them with each other with edges, extend a graph with other type of nodes...)
    - docks with properties for the edges. there with be various kind of edges, so the properties will have to comply with the type of the edge.
    - docks with tools for the graphs, e.g. edges, types of nodes.
    - save the created 'project' somehow... and load the saved ones.
    - .. and other stuff that i guess will come during the develpment.
    So the questions are:
    1. is swing enough? if not, what should i use?
    2. from where to start to?! how to organize my code? packages/ objects, is there a desing pattern for this kind of java projects? (e.g. web applications have mvc for start, factory, observers...). Is there a book that i could read?
    3. how to save the created object/project?
    - docks will be separate JFrames?
    Can someone advice me on this?
    I will be grad to provide you more information for the project if it is needed.

    ok, i ve done some work for this editor, and more questions came up.
    since now, i can drag a node of a tree and 'drop' it to a panel (GraphPanel). The 'drop' means that the panel is re-painted, drawing some Ellipses:
    public class GraphPanel extends JPanel implements Transferable {
         // holds all the nodes of my graph
         Set<GNode> nodes; // a node has a name (string) and a Point
         public void paintComponent(Graphics g) {
              super.paintComponent(g); // clear
              // repaint
              Graphics2D g2d = (Graphics2D) g;
              for (GNode n : nodes) {
                   Ellipse2D.Float circle = new Ellipse2D.Float(
                        (float)n.getPoint().getX(), (float)n.getPoint().getY(), 20, 20);
                   g2d.setColor(new Color(204, 159, 42));
                   g2d.fill(circle);
                   g2d.setColor(Color.black);
                   g2d.drawString(
                        n.getName(), (int)n.getPoint().getX()+20, (int)n.getPoint().getY());
    }while the JPanel implements Transferable and the TranferHandler of the JPanel accepts only the String (i only need the name of the node of a JTree) and importData() adds a new node each time a string flavor is tranfered.
    The bad thing is that (a) i repaint all the panel each time.. -ok this is dummy-, (b) the nodes cannot be draggable, neither i can add mouse listeners, (c) it is realy dummy...
    So.. how should i draw the nodes? Should I extend JComponent and add() an Image (e.g. an image with just a circle) in it and a Label, and add() a component to the GraphPanel on every drop?
    The next thing is to be able to draw an edge among two nodes. How the edge should be implemented?
    Thanks in advance (again).
    Edited by: 831144 on 11-Feb-2011 08:41
    Edited by: 831144 on 11-Feb-2011 08:42

  • In Need of some advices

    Hi
    I've got to build a small mailing module in an application which sends simple emails with attachements but I never used emails in Java.
    I've looked around and found the org.apache.commons.email package. Unfortunately I could not find articles on it. I just want to know if it's good, stable and relatively bug free.
    Also I would like to know if it is going to be a lot easier and faster to develop with this library VS using directly the javax.mail package.
    Thanks

    I've got to build a small mailing module in an
    application which sends simple emails with
    attachements but I never used emails in Java.
    I've looked around and found the
    org.apache.commons.email package. Unfortunately I
    could not find articles on it. I just want to know if
    it's good, stable and relatively bug free.Probably. Apache Commons stuff has a good reputation but I don't know anything about this particular package.
    Also I would like to know if it is going to be a lot
    easier and faster to develop with this library VS
    using directly the javax.mail package.Probably. They have done a lot of the work that you would have to do. The only hitch would come if you needed some mail feature that they don't support. But if you did, it still might be easier to fix their code than to write your own code from scratch.

  • HT1904 Hi can i gt some advice. tried to download app from iPad air. it said vertification code sent to email address. when i tried to log in email address not recognise. what do i do?

    Tried to download an app.
    Mentioned certification code sent to email .....
    When I tried to log into my email address it says email address not known.
    Please advice what to do?

    Edits:
    *could not access for the past three months
    *while the inter-apple messaging system

  • In need of some advice of approaches I could take

    1)I want to create a program in java that allows the user to select six numbers from a fixed set of numbers (1-10,25,50,75,100)
    2)Then i want to generate a number from 100-999 which will be the target value
    3)Then i want to use arithmetic with the six chosen numbers to form an arithmetic expression that is equal to the target number, or as close to the target as possible.
    Can anyone give me any ideas on how I can go about developing part 3) using java?
    I know it can be done using a binary tree or just doing it recursively but im not too sure where to start, any help would be great.

    create a function that takes in your test number (1 to 100).
    within that function:
    Declare three variables as follows:
    int absoluteDifference;
    int fixedNumberFound;
    int[] fixedNumbers=new int[]{1,23,4,5,6,7,8,9,10,50,75,100};
    Get the first value in fixedNumbers and take the absolute difference between it and the number entered into your function. Store the values in the 3 variables above.
    Do the same above for each number in fixedNumbers and if the difference is less than the above steps you've taken, store this value and difference in the 3 variables above. If not, go onto the next fixedNumber. at the end, the three varaibles will hold the data you need.
    The above is roughly what needs to be done. Sorry, I cant help further without actually coding it for you (which I wouldn't).

  • Error when trying to run my first Java app

    Okay, Im new to Java programming. I started a day ago :). My question is after I compile my application like so.
    javac TestGreeting.javaIt give me a .class file. So the next step is I want to run it so I do the following.
    java TestGreeting.classWhen I run this I get this error:
    Exception in thread "main" java.lang.NoClassDefFoundError: TestGreeting/classCan some one tell me what is going on? I am running Mac OSX Leopard on a MBP. I have the latest Xcode Tools which is 3.1 if I am not mistaken.
    Thanks everyone. Go easy on a newbie :)

    The argument for the java command is the fully qualified Class Name. It is not a file name or path. You provided a file name. The JVM tried to find a class named 'class' in a package named TestGreeting. Most likely, you should have typed "java TestGreeting"
    Here is a link to a tutorial, and the Getting Started section includes a section for problem resolution.
    [http://java.sun.com/docs/books/tutorial/]

  • Error trying to publish (real time) to delivery: No response from remote execute trying to save assettype [error was -103].

    Hi all,
    I'm trying to publish for first time to a new environment (delivery).
    The light of target destination is green.
    When i click on "inicialize" i get these errors and in the docs i cannot find why or what i have to do.
    Trying to publish asset types during inicialization it returns this error:
    No response from remote execute trying to save assettype [error was -103].
    Looking for the meaning for this i found: No table. What does it mean? Why the tool has not created the table?
    And then, the next error message is shown (all of them are shown in the same screenshot) trying to mirroring. It might have to do with the previos error message... but i have no idea!
    -12011. No response from remote execute trying to save assettype [error was -103]
    sites.log in delivery environment says as follows
    [2014-01-24 12:13:52,496 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.db] SQLException loading table definition for SiteCatalog with state HY000: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    [2014-01-24 12:13:52,527 CET] [ERROR] [.kernel.Default (self-tuning)'] [com.fatwire.logging.cs] ContentServer exception running CS recursively
    COM.FutureTense.Common.ContentServerException: pagename not supplied  Error code:BAD PARAMETER
    [2014-01-24 12:13:52,543 CET] [ERROR] [.kernel.Default (self-tuning)'] [logging.cs.satellite.request] Error accessing the external page with pmd: page: ?Browser=Unknown  Browser&SystemAssetsRoot=/dlv/futuretense_cs/&errdetail=0&errno=0&null= &pagename=fatwire/wem/sso/casInfo
    [2014-01-24 12:13:52,543 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.request] COM.FutureTense.Common.ContentServerException: ContentServerException: (Reading page page: ?Browser=Unknown  Browser&SystemAssetsRoot=/dlv/futuretense_cs/&errdetail=0&errno=0&null= &pagename=fatwire/wem/sso/casInfo from co-resident Content Server failed (errno=0).) Error code:GENERIC SERVER ERROR
    [2014-01-24 12:14:06,021 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.db] SQLException loading table definition for SystemInfo with state HY000: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    Does anybody know how to help here?
    Thank you very much.
    Gala

    What SQL server driver are you using, Microsoft's or the jTDS driver (see jTDS JDBC Driver)? It may be worth trying the other.
    Also, can you enable
    com.fatwire.logging.cs=DEBUG
    in log4j.properties and retest, then post the entire resulting sites.log and application server log somewhere for us to see? e.g somewhere like pastebin.com
    Phil

  • Trying to create first iPhone app, use Interface Builder or Xcode first?

    I'm trying to create my first iPhone App, do I start with Interface Builder or Xcode first? And how do I link the two together?

    It's not really that simple -- you'll be working with both. Interface Builder is used to design the GUI (graphical user interface, which consists of the windows and buttons and text fields and so forth, the parts of the application that your user interacts with). Xcode, on the other hand, is used to write the code that tells that GUI what it's supposed to do, and how to do it. So, to answer your question as best I can -- generally, I would imagine you would want to start by creating the basic form of your GUI in Interface Builder and then start coding where appropriate in Xcode, then you'll move back and forth between the two (Xcode and Interface Builder) as needed.
    If you're new to programming and want to start with iPhone apps, I recommend picking up a book on the topic (Apress publishing has a book called "Beginning iPhone 3 Development: Exploring the iPhone SDK" that is a good one, and don't forget to take advantage of Apple's iOS Dev Center, which has lots of good documentation on most any topic that will be helpful in supplementing the information in the book you buy -- click [here|http://developer.apple.com/iphone/index.action] to go there).
    Keep in mind, however, that trying to learn to program iPhone apps will be difficult (to say the least) if you don't already know Objective-C, and the Apress book I recommended above will not be easy to follow without understanding Objective-C first. Objective-C an object-oriented extension of C, and it is the programming language that is used to develop iOS apps (apps for the iPhone, iPod touch, or iPad). I would definitely recommend learning Objective-C on the Mac before jumping in to iPhone development in specific. Apress has another book called "Learn Objective-C on the Mac" that I would recommend for this.
    Furthermore, since Objective-C is an extension of C, you won't have an easy time learning it without a prior understanding of the C programming language. Again, Apress has a book for this, called "Learn C on the Mac."
    Put simply, learning to program for the iPhone is not something that comes overnight -- it's a step-by-step process that takes patience, and you have to be willing to go through these steps if you want to learn to program properly for the iPhone.
    Step 1 -- learn the C programming language
    Step 2 -- learn the Objective-C programming language
    Step 3 -- apply your knowledge to developing for iOS (iPhone's operating system) with the Cocoa Touch framework
    Anyways, that's just my advice -- I definitely recommend taking the time to do it right and not jumping straight into the deep end, but in the end only you know what works best for you. Also, like I said, I definitely think investing in a book on the subject is worth the time and money, so let me know if you want any other recommendations for books beyond the ones listed above.
    Hope this was helpful to you, and best of luck with your journey toward programming for iOS.

  • Reduce publishing time for Air iOS apps?

    Hi,
    Currently it's taking my machine up to  4 minutes to publish an Air iOS app.
    Are there any settings or hacks I could try to reduce the time?
    I'm using Flash CS 6 + AIR SDK 16 on a Windows 8.1 laptop.
    Stats:
    - Intel Pentium Prozessor (1,5 GHz, Intel HD Graphics, Microsoft Windows 8, 64-bit)
    - 4 GB DDR3-RAM
    - 500 GB Hybrid-SSHD-Festplatte with 8 GB SSD
    Thanks for any tips.

    Hi,
    I'm really interested in this feature as well. Have spent a bit of time attempting to get one running through a native extension but it doesn't appear to work. I believe something in the AIR build process is blocking the components required. I've tried several methods so far:
    packaging the appex with an ANE
    packaging the appex with the AIR container app
    using a class instead of a storyboard
    But nothing seems to be working. This is even before the app extension is doing anything. My guess is that the plist file specifying the app extension isn't correctly being included in the application but I have no idea how to update it to test.

  • Publishing AIR for iOS in Flash CS5.5 gives Java VM error

    Hi,
    I have been getting the following error when trying to publish AIR for iOS from Flash CS5.5. I'm using AIR 2.7 overlayed, Windows 7 x64.
    Any help would be greatly appreciated.
    Thanks!

    I tried overlaying the latest AIR as sinious suggested, but that only changed my error message by adding the line about ADT as in the original post.
    I was finally able to get the app to compile by calling adt from the command line.  Here is an example .bat file that worked for me:
    @echo=off
    @set java_cmd="C:\Program Files\Java\jre6\bin\java.exe"
    @set java_param=-Xmx128m -jar
    @set adt_cmd="C:\Program Files (x86)\Adobe\Adobe Flash CS5.5\AIR2.6\lib\adt.jar"
    @set target=ipa-test
    @set cert=iOS_dev.p12
    @set cert_pass=password
    @set provisioning=my_iOS_device.mobileprovision
    @set build_file=helloworld.ipa
    @set desc_files=helloworld-app.xml
    @set files=helloworld.swf AppIconsFolder
    %java_cmd% %java_param% %adt_cmd% -package -target %target% -storetype pkcs12 -keystore %cert% -storepass %cert_pass%  -provisioning-profile %provisioning% %build_file% %desc_files% %files%
    pause

  • I need some advice about the macbook pro and iPhone 5. I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it th

    I need some advice about the macbook pro and iPhone 5.
    I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it through other mail goes through any ideas how to resize it or what it might take to send it?

    I agree with LowLister, the best option for you to share the video online is to upload it to your online storage account for example : Box, Dropbox, SkyDrive (All of them provide free storage beginning from 2GB).
    You can upload the files which you want to share in this online storage and then they have sharing options in which you'll will get the link of the file to be sent and send the email. You're good to go!
    Tip : You can store multiple files for backup purposes.

Maybe you are looking for

  • IPhoto MESS: Multiple iphoto libraries duplicate photos

    Sorry folks - this is one of those "big data" messes.  I know there's a problem - just looking for a solution. I have multiple iPhoto Libraries (unintentional) due to an old iMac which had died.  There are three libraries: Default(rebuilt) 121.41GB (

  • Link button in matrix

    Hi all, I am using link button in matrix. I bound link button with existring SAP transcation like employees and UDO too. but link is not working in both cases. can anybody help me out.... Manish

  • Smiley Emoticons for a Mac?

    I use Comcast high speed internet for my email and would like to know if there is a program install for my Mac like Windows has for emoticons that you can insert in emails. They have a program like smiley central but it is only for Macs.

  • Dreamweaver CS5 - Welcome Screen shows CS4!

    Hi, after upgrading Dreamweaver from CS4 to CS5 the welcome screen insists on identifying itself as CS4. What's going on? Win7 64bit All updates installed. I also tried re-installing DW CS5 to no avail. Any suggestions?

  • Was going to download pictures from camera now cant find anywhere. PLEASE HELP!!

    was trying to download pictures from my digital camera to my macbook. i saw that it was on the computer at one point but then before i could put it anywhere it got lost. have looked everywhere can't find the pictures anywhere. please someone help me!