Publishing to iBooks error

After I publish my Edge file to iBooks, when I go to insert it into iBook I get this error:
The HTML Dashcode file “critter.wdgt” wasn’t added. The file doesn’t define a main HTML file.
I'm not sure this is an Edge problem or an iBooks problem.  The only file I can get to work with
iBooks is a stupid file made with Dashcode (which now crashes on startup YAY.... )
I looked at the package contents, and they seem to be the way they should be.
When I take the package contents of the Edge Created widget and copy them into the Dashcode one, it works.
Really strange!
Any help would be awesome!!!!

I tried it a couple of ways... the drag and drop from the created location, drag and drop from same folder as the ibook, from the inspector tool in ibooks.... tried it all
Honestly ibooks has been really strange with the way it handles widgets... I've done a re install to just check that it wasnt the source of the issues.
I can drag and drop a file... (unfortunately not created by edge) , then take the same file.. rename the widget, then it throws an error.  Not the html file, just the widget filename i.e. critter.wdgt  changed to critterTest.wdgt.  To me that's really strange!  I tried changing the name of other widgets, and they work after the name change.  Totally at a loss of ideas.
I have gotten edge created widgets to work in ibooks by taking a pre existing widget that works, showing package contents and copying the edge files into the working wdgt... then it works... WEIRD!
Any help would be awesome!
Here's the zip of the widget THANKS!
http://www.pvband.org/Files/critter_test.wdgt.zip

Similar Messages

  • Editing of Books Published on iBooks

    I just finished a book published on iBooks for the iPad, by Annie Proulx, "Accordion Crimes". This comment has nothing to do with the literary work, but everything to do with the editing and publishing.
    In the most polite terms possible, the publishing work was very, very disappointing. I found numerous spelling errors, misplaced emphasis (the word "eyes" appeared in italics throughout the 500= page book, for no apparent reason), some just plain new words never seen before in the English language which were not the product of the writer, I'm sure. It felt a lot like I was being asked to proofread, and that I was working with a draft.
    If this was the final version of the book, then the software used to publish it is not ready for prime time.
    I don't want my money back, but I sure do think that Apple needs to look into the publishing that they're selling. If this book was a representative sample, it's pretty shoddy work.
    If this is the wrong forum for these comments, please accept my apologies, but I found no other channel to accept product quality feedback.

    Since the bookstore is part of itunes, you should send feedback here:
    http://www.apple.com/feedback/itunesapp.html
    However, it sounds like you should also send feedback to the publisher. Coding books for the ibookstore is a tricky process (despite the people who tell you it's a snap), and they need to know that what they're doing isn't working.
    You should also have a link in your receipt to report a problem; you could use that, too, if you do decide you want a refund.

  • When sharing iMovie11 project  with iDVD inmediately message 'the project could not be prepared for publishing because an error occurred (Error in user parameter list).  Finalize issue?

    When sharing my 60 minutes iMovie project with iDVD inmediately message 'The project could not be prepared for publishing because an error  occurred (Error in user parameter list)' appears. Could not find the user parameter list, so I've no more info about this error.
    Option File - Finalize Project gives inmediately the same errormessage.
    Also option Share - Media Browser - Large/Medium/Mobile give the same errormessage.
    Please advise, thank you!

    Additional info: trying to write to internal disk (268 GB Free out of 499 GB)
    Please advise, alko80

  • The project could not be prepared for publishing because an error occurred.

    I have just loaded iLife 09 on my MAC. I've edited a movie and now want to export it, put it in iTunes, whatever I can do to move it beyond my laptop. No matter what option I choose under Share I get the same error message, "The project could not be prepared for publishing because an error occurred. (-2009)". I can find the error message online, but not the (-2009) error code. I'm also a longtime PC person who has just switched to a MAC. Can anyone help?

    I also am having the exact same problem. iMovie '09. I have tried changing permissions on all sharing folders, exporting to desktop, sharing to iTunes in all size files - and yet still get "Unable to prepare project for publishing. error (-2009).
    Mac OSX version 10.6.2 Snow Leopard

  • XML Report Publisher program is erroring out

    Hi All,
    I've customized the AR Customer Statements.
    I've created a data definition as "ARXSGP" and uploded the sample_output.xml of Statement Generation Program to it. Also I've created a Data template as "ARXSGPO" and attached the data definition "ARXSGP" to it and uploaded the customized rtf file "XXHCC_CLE_F_ARCUSBALSL.rtf" and set the default output type to PDF.
    As I donot wish to call the XML Report Publisher program manually every time when I Print the Statements through Print Documents-->Statements.
    So I've done the below customization in ARXSGP.rdf file ie; Print Statements Report which is an Oracle Report.
    I've added the below code in After Report trigger.
    =======================================
    FUNCTION AfterReport
    RETURN BOOLEAN
    IS
    BEGIN
    Below code added for Customer Statement Case Study
    DECLARE
    l_req_id NUMBER := 0;
    L_XML_LAYOUT BOOLEAN := TRUE;
    BEGIN
    L_XML_LAYOUT := FND_REQUEST.ADD_LAYOUT (TEMPLATE_APPL_NAME => 'AR', TEMPLATE_CODE => 'ARXSGP', TEMPLATE_LANGUAGE => 'en', TEMPLATE_TERRITORY => 'US', OUTPUT_FORMAT => 'PDF');
    IF L_XML_LAYOUT THEN
    srw.message(20001, 'Template is picked ');
    srw.message(20002,'Concurrent request Id : '||:p_conc_request_id);
    l_req_id := FND_REQUEST.SUBMIT_REQUEST('XDO',
    'XDOREPPB',
    NULL,
    NULL,
    FALSE,
    :p_conc_request_id,
    222, -- Receivables
    'ARXSGPO', -- Statement Generate
    'en-US', -- English
    'N',
    'RTF',
    'PDF');
    IF l_req_id > 0 THEN
    COMMIT;
    ELSE
    srw.message(20004, 'Failed to submit request');
    END IF;
    ELSE -- Not L_XML_LAYOUT
    srw.message(20005, 'Template is not picked ');
    END IF;
    END;
    --------------------Code Ends----------------------------
    SRW.USER_EXIT('FND SRWEXIT');
    RETURN (TRUE);
    END;
    ==============================================
    After Printing the Statements through Print Documents-->Statements
    Statement Generation Program is being called and later XML Report Publisher program is also being invoked.
    But the XML Report Publisher Program is erroring out with below error.
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 03-SEP-2012 17:42:18
    Oracle XML Publisher 5.6.3
    java.lang.NumberFormatException: For input string: "ARXSGPO"
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:447)
         at java.lang.Integer.parseInt(Integer.java:497)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:215)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    0
    ------------- 1) PUBLISH -------------
    Disabling requested Output Post Processing. Nothing to process. The output of the request is zero byte.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 03-SEP-2012 17:42:22
    Please help out with a solution.
    Thanks,
    Tech D

    for r12 add one row for parameter "Dummy for Data Security" from desc of XDOREPPB
    follow works for me
    SQL> set serveroutput on
    SQL>
    SQL> declare
      2    v_request_id   number;
      3  begin
      4 
      5   begin fnd_global.apps_initialize(0, 20419, 0); end;
      6   v_request_id := FND_REQUEST.SUBMIT_REQUEST('XDO',
      7                                              'XDOREPPB',
      8                                              NULL,
      9                                              NULL,
    10                                              FALSE,
    11                                              'N', -- Dummy for Data Security
    12                                              9888637, -- Request
    13                                              0, -- Template Application
    14                                              'XXAND10_1', -- Template
    15                                              'en-US', -- Template Locale
    16                                              'N', -- Debug Flag
    17                                              'RTF', -- Template Type
    18                                              'RTF' -- Output Format
    19                                              );
    20 
    21    dbms_output.put_line(v_request_id);
    22    if v_request_id > 0 then
    23      dbms_output.put_line('successfully submitted.');
    24      commit;
    25    else
    26      dbms_output.put_line('not submitted.');
    27      rollback;
    28    end if;
    29 
    30  end;
    31  /
    9888651
    successfully submitted.
    PL/SQL procedure successfully completed
    SQL> 'Y' for "Dummy for Data Security" also works for me
    SQL> declare
      2    v_request_id   number;
      3  begin
      4 
      5   begin fnd_global.apps_initialize(0, 20419, 0); end;
      6   v_request_id := FND_REQUEST.SUBMIT_REQUEST('XDO',
      7                                              'XDOREPPB',
      8                                              NULL,
      9                                              NULL,
    10                                              FALSE,
    11                                              'Y', -- Dummy for Data Security
    12                                              9888637, -- Request
    13                                              0, -- Template Application
    14                                              'XXAND10_1', -- Template
    15                                              'en-US', -- Template Locale
    16                                              'N', -- Debug Flag
    17                                              'RTF', -- Template Type
    18                                              'RTF' -- Output Format
    19                                              );
    20 
    21    dbms_output.put_line(v_request_id);
    22    if v_request_id > 0 then
    23      dbms_output.put_line('successfully submitted.');
    24      commit;
    25    else
    26      dbms_output.put_line('not submitted.');
    27      rollback;
    28    end if;
    29 
    30  end;
    31  /
    9888652
    successfully submitted.
    PL/SQL procedure successfully completed
    SQL>

  • XML Publisher post-processing error 'java.io.FileNotFoundException'

    Hi,
    We are getting following XML Publisher post-processing error while running XML Publisher report.
    It was working earlier but suddenly its erroring out.
    [9/07/10 9:00:17 PM] [OPPServiceThread1] Post-processing request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Executing post-processing actions for request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Starting XML Publisher post-processing action.
    [9/07/10 9:00:18 PM] [39177:RT559655]
    Template code: XXHPOXPRRFLR
    Template app: XXH
    Language: en
    Territory: 00
    Output type: PDF
    [9/07/10 9:00:18 PM] [UNEXPECTED] [39177:RT559655] java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:274)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:173)
    [9/07/10 9:00:18 PM] [39177:RT559655] Completed post-processing actions for request 559655.
    Please help me out to resolve this issue.
    Thanks & Regards,
    Sagarika

    Hi,
    java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)Most probably this file is not created (since no changes have been done recently, so definitely it is not a permission issue), and if there are any log files generate at the client side it should help in investigating the issue.
    Thanks,
    Hussein

  • I have an apple id but ı can not use it for sign in to itunes connect account while publishing my ibook document. Why ı can not login? What can ı do to figure out this problem?

    I have an apple id but ı can not use it for sign in to itunes connect account while publishing my ibook document. Why ı can not login? What can ı do to figure out this problem?

    As note already on the iBA forum [ AppleID for ibooks publishing ], you need two IDs. You can't use your developer ID.
    If you already signed up for books with that ID, you need to talk to Apple to straighten things out.

  • The project could not be prepared for publishing because an error occurred. (-108)

    Got the following error while trying to share my project:
    "The project could not be prepared for publishing because an error occurred. (-108)"
    I got this error everywhere: share to idvd, share - export movie ...
    Computer: MAcbook Pro 2.3GHz Intel Core I5, memory : 4 GB (when I start exporting the available memory is about 2Gb, no other app runing)
    Softwer: Mac OS X 10.7.2, iMovie '11 9.0.4 (1635)
    Project: 50min, filmed with Gopro 960HD
    Please help!
    Thanks in advance,
    Lóránt

    Most recently there's been a series of errors -49 being posted to the Discussion Group. I've seen one other -108 error that showed up but without any resolution. The original poster hasn't replied yet to that mesage thread. I don't know if the two are related, but they both have a negative effect on exporting. So I'm going to suggest following the fix for the -49 errors:
    This requires using the Terminal app, in your Applications/Utilities folder
    To turn off Time Machine snapshots type in the following command:
    sudo tmutil disablelocal
    The Mac will likely ask for your password, so type it in and hit the return key. The type the word, exit and hit return. Quit Terminal.
    Open iMovie and try doing another export and see if the same error message pops up.

  • Im trying to share a project to idvd and gettingThe project could not be prepared for publishing because an error occurred. (Error in user parameter list) what does this mean

    I've been trying to burn my projects in imovie to dvd's and i keep getting the forllowing error message "UNABLE TO PRPARE PROJECT FOR PUBLISHING"
    "The Project could not be prepared for publishing because an error occured (Error in user parameter list)
    Does anyone know why this is happening and what I can do to fix it?
    Thanks!!

    Can you give more details?   What exactly is the entire error message text?  there should be an error number too.   Are you trying to finalize this to an external disk?

  • I keep getting this message from Imovie: Unable to prepare project for publishing. The project could not be prepared for publishing because an error occurred. (Error in user parameter list)

    I keep getting this message from Imovie:
    Unable to prepare project for publishing. The project could not be prepared for publishing because an error occurred. (Error in user parameter list)

    Bartirn,
    I called Apple under my Mac support contract.  They were completely unfamiliar with the error you and I were encountering.   Updating to 10.8.5 didn't help.
    I'm stopping my TimeCapsule while I perform these tasks, but I don't know yet if I have a consistent work-around.
    B

  • In iMovie I am getting this message...Unable to prepare project for publishing. The project could not be prepared for publishing because an error occurred.m file already open with write permission.

    In iMovie I am getting this message...Unable to prepare project for publishing.  The project could not be prepared for publishing because an error occurred. File already open with write permission. 
    How do I resolve this?

    Hi
    Most often it helps by - Turning Off the TimeMachine application - during work in iMovie.
    Yours Bengt W

  • No matter how I try to finalize my imovie , I get the following message:  "The project could not be prepared for publishing because an error occurred. (Error code = -49))"

    No matter how I try to finalize an imovie I get the following message:
    "The project could not be prepared for publishing because an error occurred. (Error code = -49)"

    Hi
    Error -49 opWrErr  File already open with write permission
    Trash the preference files while application is NOT Running.
    Easiest way to find out if this is the problem is by:
    • Create a new User-Account
    • Log out of Your old one and into this
    • Re-try iMovie
    If it now works OK - then 99.9% the problem is iMovie pref. file that needs to be trashed.
    from Karsten Schlüter
    Some users notice on exporting larger projects from within iMovie that this operation is aborted with an 'error -49'
    This issue occurs only on MacOs machines using 10.7x
    try switching-off the Local Mobile Backup
    in Terminal copy/paste
    sudo tmutil disablelocal
    Re-launch Mac
    Yours Bengt W

  • Whenever i try sharing my imovie trailer with idvd it says "The project could not be prepared for publishing because an error occurred. (Error in user parameter list)". How am i supposed to burn it to a dvd then?

    Whenever i try sharing my imovie trailer with idvd it says "The project could not be prepared for publishing because an error occurred. (Error in user parameter list)". How am i supposed to burn it to a dvd then?

    Additional info: trying to write to internal disk (268 GB Free out of 499 GB)
    Please advise, alko80

  • It says,The project could not be prepared for publishing because an error occurred. (Error in user parameter list)" What do i do so i can publish it?

    it says,The project could not be prepared for publishing because an error occurred. (Error in user parameter list)" What do i do so i can publish it?

    I'm having the same problem. 
    When I export (and I want HD quality) I get the error message that
    Unable to prepare project for publishing The project could not be prepared for publishing because an error occurred. (Error in user parameter list)
    How do I free up more space on my startup disk?  My hard drive has 158.61 GB free.  Do I need to free up more space?

  • Why am I getting this message suddenly, when I've done dozens and dozens of projects without trouble at all: The project could not be prepared for publishing because an error occurred. (OpWrErr: file already open with with write permission)

    Why am I suddenly getting this message after I've been using iMovie for a few years now and have never had any such issue before:  The project could not be prepared for publishing because an error occurred. (OpWrErr: file already open with with write permission)

    Two things
    I meant search THIS FORUM
    Error minus49 not same as ERROR 49
    Yours Bengt W

Maybe you are looking for

  • Schedule line in delivery

    Hi friends, I have  a scenario where the client has created the sale order say on 22.2.2008 ,but did not get the confirmed quantities on that day.Now assume the quantity receieved is on 22.3.2008 during availibilty check. Now the client wants to do a

  • Issues with acquiring from multiple GigE cameras

    Hi, I'm trying to build a simple app where three cameras are running simultaneously and can optionally record AVIs with timestamped data appended to each frame. I'm not having the recognition issue (all three cameras are seen through either a network

  • H67MA-35 (B3) No video - new build

    This is a new build. Intel i5 2400, Corsair CMV4GX3M2A1333C9 memory.  I've tried this outside the case with nothing else but the monitor connected.  All CPU fan powers up.  I hear two beeps, silence, then two beeps, over and over.  No video output. 

  • Functionality of IF in OSB message flow

    Hi Team, am just confused about the functionality of IF in OSB message flow, either in a proxy or in a split-join. for example consider the following scenarios in  if-then stage, 1. I write the condition as status="yes", then some process will be don

  • Action won't work on a quickbooks .qbmd file

    I'm trying to create the simplest of actions, and I can't get it to work. I think it has something to do with the type of file (quickbooks *.qbmd file) because the flow will work with other file types. Here's the desired flow: 1. In a designated fold