Submit button in form not working

Hi I've created a pdf forms, the submit button created (formcentral) does not appear in adobe reader for ipad while works great in the pc version
Is it something that will be fixed in a new version?

We've implemented Forms Central submit but are awaiting an approval from Apple to release our latest version. I'm hopeful you'll see it by the end of the month.

Similar Messages

  • Unable to create Menu Item List Buttons in Forms - Not Working!

    Hi guys,
    I need desperate help since I have been stuck on these for 2 days and I am unable to move forward!!
    I am trying to create a pdf form using Acrobat pro 9 and Adobe LiveCycle Designer ES. Since I am new to this, I have been browsing through numerous sites, forums and tutorials to learn about this. So far, I was able to create the forum with text fields, etc.. I am trying to have a column in my pdf form where the users can simply copy & paste image icons here..I was having difficulty with this already and have done numerous searches in google. In the end, I thought I am better off trying to use the "stamp" tool for this instead of image field. So this is what I did:
    1) I already placed the image icons (that the users will be copying & pasting) on my pdfs so users can simply click on it to select the image.
    2) I added a new bottom to this form which has the short cut to the menu item "copy" function. I labeled this button as 'Copy' and to this button, I added the following javascript for "Mouseup":
    app.execMenuItem("CopyFileToClipboard");
    3) Next I created another button that I called 'paste' and this button executes the "Paste Clipboard Image as Stamp Tool" menu. This button has the following javascript:
    app.execMenuItem("Annots:Tool:StampFromClipboardMenuItem");
    I thought that after doing the above, the user should be able to click on one of the images in the pdf, then click on 'copy' button and in the end click on 'paste' button that will then run an action so user can stamp this copied image to where ever they want in that file. But this is not happening!! I dont why?? Nothing happens when these buttons are clicked. I have made sure that the "Extended features in Adobe Reader..." is enabled and also tried running the above javascripts on my console window to test it and i know that the actual javascript code is not at fault since these functions works when I try the code through the debugger window. But I just cannot figure out why these menu item functions are not working when the buttons I had created are clicked!!! I dont know if what I have done is correct or if there is a easier way to achieve what I am trying to do!! Its a shame there is no simpler way for the end-users to copy and paste images to the columns in the pdf forms.
    please help me understand why the above button are not working....any help will be great!!

    Hi Paul,
    This is further to our email correspondence. I am just pasting your email response here since it may be useful to other newbies like me:
    "Ok here you go ......I had to add the new row via a script object as the new objects are not completely available until the script ends so I cannot resize the new row from teh current script.
    Then when we resize - we have to resize the row, the cells and the image ....we start with all existing subforms then we do it for the new row that was just added.
    Lastly I see that you have a delete row button. This will have to be part of the row otherwise we ill not know which row the user will want to delete .....unless you ask them (which is not good UI design)."
    I was really impressed the way you modified the script so the table height does not change when new rows are added. That did help me in understanding the methods and it will certainly be v useful to me in the future. I have been practicing and getting a hang of LS and I have actually decided to redesigned my form since it appears that trying to have a fixed table height is quite a bit of work each time a row is added, removed or changed, etc... Your advise so far have been v helpful and it has helped me in redesigned the form into a different layout. So far so good...However, I just have a few more clarifications regarding some hurdles I am facing:
    PS: I have emailed you a sample of my new form now so you can have a look at it.
    1) Dynamic Image fields:
    In this form, I have a subform that has a dropdown list and next to this, I have an image field. I want to change the image based on the selection in the dropdown list. I found a few samples and tutorials on this already and I tried 2 different approach for this. One works and the other doesnt.
    Method that works: What I have done here is, I added all the images in the form and have put their presence to invisible. Then using the javascript, I am making the image visible based on the selection in the dropdown list. I found this method somewhere through googling and it works.
    Method that doesnt work: Its similar to the above, but instead of putting all the images in the form, I just inserted 1 image field and then tried to change the url of this dynamic image based on the selection in the drop down list. But this method is not working. I tried inserting this jscript and nothing happens:
    switch (this.rawValue)
    case "1":
    myImages.value.Image.href=http://www.mysiteaddress.com/blah_blah.jpg;
    break;
    case "2":
    myImages.value.Image.href=http://www.mysiteaddress.com/blah_blah2.jpg;
    break;
    The 2nd method does not work. Although I know the method 1 above works and I am currently using it, I am just curious to find out why the 2nd method is not working? Did I get the script wrong or is this feature no longer allowed? I just thought that if the second method works fine, it saves the hassle of putting all the images on the form and then making them hidden. Instead, I just need to put one image field and then dynamically change its image based on the selection. I hope this make sense..please advise..
    2) Changing the background colour of the Dropdown list box:
    I am trying to change the bg colour of the listbox in the dropdown list object (only the listbox bg color and not the whole background color). So, I added the following script to the mouseEnter event and this works:
    var vName = this.somExpression;
    var fieldObj = xfa.resolveNode(vName + ".ui.#choiceList.border.fill.color");
    fieldObj.value = "255,255,225";
    My Problem: The above script works so I dont need to change anything there. But, I also want to add another script to the mouseExit event to change the fill color to its default once the mouse leaves the dropdown lists. Initially, this field has no fill colour and the border fill style is none. The fill color is only added during the mouseEnter event. How do I change the bg color fill back to none during mouseExit after the above script is executed on mouseEnter?
    (NOTE: If you see my form, I have used the above scripts for the dropdown list only in "boxSubform[0]".)
    3) Changing the length of the Dropdown List box:
    I only have about 1.6 inches workspace to add this dropdown list box. However, the length of some lists (list items) in this dropdown list box is actually longer and the remaining part is cut out. So, I added the following script to increase the dropdownlist length and it does not work the way I would have hoped...
    The script I have written so far:
    I added these to the mouseEnter event and it works fine -
    form1.pageSubform.dynamicSubform.Table1.Row1.boxSubform[0].MyDropdown::mouseEnter - (JavaScript, client)
    this.w = "2in";  //this is to to increase the width of the dropdown list
    I added these to the mouseExit event and it works fine too-
    form1.pageSubform.dynamicSubform.Table1.Row1.boxSubform[0].MyDropdown::mouseExit - (JavaScript, client)
    this.w = "1.625in";
    When I tested the form with the above script, this is what happens:
    1) First when you move the mouse over this field, the width increases. Similarly the width decreased when you move away.
    2) So, even if this is clicked, the list box is opened with this 2inch width so thats good.
    3) There are no problems when the mouse is moved over these list items as well. However, this does not look good when the dropdown list item is clicked with its item lists open and then the mouse leaves this area. In this case, as soon as the mouse leaves this area, the mouseExit script runs and hence it makes the drop down list width to shrink eventhough the list items are still open. How do I resolve this? I was thinking about this and I thought the possible way to overcome this is by writing a javascript for the mouseExit event executing something like this:
    if this dropdown list is open,
    then  this.w = "2in";
    else
    this.w = "1.625in";
    I am not sure how to write a jscript for the above?
    (NOTE: If you see my form, I have used the above scripts for the dropdown list in "boxSubform[0]".)
    4) Hiding the alternative row shadowing for hidden columns:
    If you check out my form, you can notice that I have put the "close" button (button to delete table rows) on the left column and I have also put its presence to "Visible (screen only)". The parent table has got the 'alternative row shadow' checked. What I notice here is, when this page is printed, eventhough the first column's presence is set to "Visible (Screen Only)", it still prints the row shadow for this column and it looks bad. How can I fix this? Any help will be great!
    I have already emailed you my new form again so you can have a look.
    Thanks again Paul and I cant thank you enough for your help. I am sooo happy to see such a great support and resources available here since it can be a nightmare for some newbies like me... :-)

  • Submit button on pdf not working?

    Unsure but submit button works fine on my system but when I have loaded on a web page it doesn't seem to work
    http://www.tlc.net.nz/wp-content/uploads/lts-registration.pdf

    I have made a form with email submit button in Adobe designer 8. Then I opened this form into Acrobat8 Professional to distribute the form. It worked fine. But the thing that upset me that the form receiver can distribute this form after receiving it. How I can restrict this distribution option to the form receiver?
    I will highly appreciate if any one can help me in this regard.
    Sohail Butt

  • Shortcut on Quiz Submit button make "click" not work! CP8 - HELP

    Can someone help me out here?
    Okay, I have a few quiz questions. If I have not shortcut on the submit button, it works just fine. If I put "Enter" on the submit button, I cannot click it. Yes, Allow Mouse Clicks is checked.
    I would like my users to be able to press enter or click.
    Running cp8 on win 8.1. Tried in preview mode, as well as published in IE and Chrome.
    Feels like I'm losing my mind! I have also tried with accessibility enabled and not. Not that it should make a difference, but I tried it.
    Thanks for any insight gang,
    Lori

    Looks like I have fallen victim to the transparent button again.  When I switch the quiz buttons to text or image, the shortcuts on them work just fine. Then they are transparent I have issues.  The nice thing about transparent is that you can color them. Because you can't use smartshapes as actual quiz buttons (submit, etc) at least not that I'm aware of, I have had to place a smart shape on the masterslide and overlay a text button with "make transparent" selected on top to make my buttons look AND behave correctly. Adobe is now aware of the issue.
    -- Lori

  • I have createad a from with a submit button which is not working at the receipents end.

    As far as we can tell, it only works when someone has Abode Acrobat Pro. It doesn't work with Adobe Acrobat 10. The form can be filled out but none of the writing can be emailed.

    Do you mean that it doesn't work with Adobe Reader? If so, did you Reader-enable the form before you sent it out?
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features

  • Disabling Radio Button Conditionally is not working Well

    Hi friends,
    I have three radio buttons
    <li>self
    <li>New Hire
    <li>On Behalf of
    I will be showing this radio button conditionally according to the user who logs into the application.
    Assume, suppose if a person 'A' enters into the application means he will be shown only these radio button options ---NH---,----OB----,----Self-----
    Suppose, if a person 'B' enters into the application means he will be shown only these radio button options ----NH----,----Self---
    If a person 'C' enters into the application means he will be shown only these radio button options ---Self---
    I have restricted those radio buttons according to the users who enter into the application using their roles.
    But my challenge here is once the user logged in and if he select anyone of the radio button means,
    Example if he selects----NH---means, then ---OB----and -----Self---radio button has to disable and if he selects ---OB----means then ----NH-----and ---Self---has to
    disable(vice versa).
    I have also achieved the same using the DA.
    With true action as: javascript Expression i have given the following codings( i have written the below DA for three cases, if the request_class_code is equal to
    (NH,OB,S)
    var enabled=$v('P22_REQUEST_CLASS_CODE');
    if (!$u_SubString(enabled,'S')) $('#P22_REQUEST_CLASS_CODE_2').attr("disabled","disabled");
    if (!$u_SubString(enabled,'NH')) $('#P22_REQUEST_CLASS_CODE_0').attr("disabled","disabled");
    if (!$u_SubString(enabled,'OB')) $('#P22_REQUEST_CLASS_CODE_1').attr("disabled","disabled"); The above DA is working great only for the user who has the option of viewing three radio buttons in my form(i.e)(NH,OB,S).
    For the user who has the option of viewing two or one radio button, it is not working properly(i.e)(NH,S) or(OB,S) or(S).
    Why it is not working for the user with two options or with one option radio button means, the source of that radio button property is changing. Since i have taken
    the source of my radio button in my DA only when the three options are present.
    How i can solve this issue for the user who is having this two radio option or one radio option.
    Hope you understood clearly about the problem.
    Brgds,
    Mini

    Hi,
    If I did understand what you like have this might work
    var lVal = $v('P22_REQUEST_CLASS_CODE');
    $('#P22_REQUEST_CLASS_CODE input:not([value="' + lVal + '"])').attr("disabled","disabled");Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME

  • Urgent!!! Forms not work on web browser(OAS 10g,Solaris 10 x86).

    Problem discribe:
    1.environment:
    (1)Network: only local network.
    (2)Platforms
    All platforms we use are Solaris 10 for X86.
    (2.1)Server: (intel) Solaris 10 for X86
    Oracle Application Server Forms Services 10.1.2.0.2
    (2.2)Client: Mozolla web browser on (intel) Solaris 10 for X86 .
    Mozolla web browser information:
    (2.2.1)[menu]-[Help]-[About web browser]display:
    Welcome to Mozilla 1.7 for Sun Java(TM) Desktop System
    Mozilla/5.0 (X11; U; SunOS i86pc; zh-CN; rv:1.7) Gecko/20070606
    (2.2.2)[menu]-[Help]-[About Plug-in]display:
    Java(TM) Plug-in 1.5.0_12-b04
    file name: libjavaplugin_oji.so
    Java(TM) Plug-in 1.5.0_12
    MIME type
    application/x-java-vm Java
    application/x-java-applet Java
    application/x-java-applet;version=1.1 Java
    application/x-java-applet;version=1.1.1 Java
    application/x-java-applet;version=1.1.2 Java
    application/x-java-applet;version=1.1.3 Java
    application/x-java-applet;version=1.2 Java
    application/x-java-applet;version=1.2.1 Java
    application/x-java-applet;version=1.2.2 Java
    application/x-java-applet;version=1.3 Java
    application/x-java-applet;version=1.3.1 Java
    application/x-java-applet;version=1.4 Java
    application/x-java-applet;version=1.4.1 Java
    application/x-java-applet;version=1.4.2 Java
    application/x-java-applet;version=1.5 Java
    application/x-java-applet;jpi-version=1.5.0_12 Java
    application/x-java-bean Java
    application/x-java-bean;version=1.1 Java
    application/x-java-bean;version=1.1.1 Java
    application/x-java-bean;version=1.1.2 Java
    application/x-java-bean;version=1.1.3 Java
    application/x-java-bean;version=1.2 Java
    application/x-java-bean;version=1.2.1 Java
    application/x-java-bean;version=1.2.2 Java
    application/x-java-bean;version=1.3 Java
    application/x-java-bean;version=1.3.1 Java
    application/x-java-bean;version=1.4 Java
    application/x-java-bean;version=1.4.1 Java
    application/x-java-bean;version=1.4.2 Java
    application/x-java-bean;version=1.5 Java
    application/x-java-bean;jpi-version=1.5.0_12 Java
    2.Install Config:
    (2.1)formsweb.cfg
    after install,
    /export/home/ias/OraHome_2/forms/server/formsweb.cfg
    include a section :
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    (2.2)run oracle test form and my forms
    http://s216:7777/forms/frmservlet?form=test&userid=scott/tiger@orcl
    (Oracle simple test demo form)
    or
    tttp://s216:7777/forms/frmservlet?form=myform&userid=scott/tiger@orcl
    (2.3)browser dialogue window display:
    [title:Default Plugin]
    This page contains information of a type (application/x-java-applet;jpi-version=1.4.2_06)that can only be viewed with the appropriate Plug-in.
    Click OK to download Plugin.
    when I Click Ok ,display warning :
    File not found:www.sun.com, check filename ,try later.
    (2.4)change formsweb.cfg
    /export/home/ias/OraHome_2/forms/server/formsweb.cfg
    change:
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    to:
    jpi_mimetype=application/x-java-applet;
    (2.5)run again oracle test form and my forms
    http://s216:7777/forms/frmservlet?form=test&userid=scott/tiger@orcl
    (Oracle simple test demo form)
    or
    http://s216:7777/forms/frmservlet?form=myform&userid=scott/tiger@orcl
    (2.6)Problem:
    myform and test(Oracle simple test demo form) can run and display,
    but all buttons(when click) not work(no response);
    all meuns not work...........
    How to Solve this problem?
    thanks in advance.

    The currently supported versions with patches installed are as follows:
    <li>10.1.2.3 (10.1.2.0.2 + patch 5983622)
    <li>11.1.1.4 (11.1.1.2 or 11.1.1.3 + patch 11060983 : this also requires WLS 10.3.4)
    Fusion Middleware (FMw) 11 downloads are available from here:
    http://www.oracle.com/technetwork/middleware/weblogic/downloads/index.html
    Patches are only available to customers with access to MyOracleSupport (http://support.oracle.com)
    For Forms/Reports users, look for the FMw download titled "Portal, Forms, Reports and Discoverer". The distribution includes all that is necessary to design and deploy your applications. Note that WebLogic Server is also required and is a separate download (from the same page). Be sure to carefully review the installation instructions before attempting the process. It may also be helpful to review MyOracleSupport note 1073776.1.

  • My speaker is not working properly in 4s if i use headphone its working now my volume increase decrease button is also not working properly how can i solve it pl help me my warranty finished

    my speaker is not working properly in 4s if i use headphone its working now my volume increase decrease button is also not working properly how can i solve it pl help me my warranty finished

    Hello. I sent my WRT1900AC V1 to Linksys four days ago (Monday) via UPS with a RMA. Linksys paid the shipping and everything. The router is still in route, and it should arrive to their offices tomorrow. Once they receive the WRT1900 AC V1, they are going to send me an EA8500 as a replacement. But I have been reading the comments about the EA8500 here in the forum and it seems to have the same problems. I guess the firmware is extremely flawed in both routers (maybe it is almost the same code?). Anyway, I will try the EA8500 and I hope it works. I bought a temporary router from Walmart and I paid $35 for it. It is a Belink N600 DB. I can't believe that a $35 router is working a lot, lot, lot better than my previous $250 WRT1900AC router. Unbelievable. If the EA8500 doesn't work, I'm going to try and get my money back from Linksys, or contact The Consumerist or someone to get my money back and get a Nighthawk instead.

  • HT4623 iOS 6.1 no longer available because you are no longer connected to the internet- this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.

    this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.
    is there any other method to download ios 6.1.2.
    my phone is not being recognized by itunes on my new windows 8. neither its working on touch copy.
    kindly help.
    thanks

    well in thatcase, i need another help .
    thanks for your instant reply.
    i have currently bought a new laptop (windows 8) and my iphone is not being recognized by itunes.
    because i have no backup on my previous laptop, i downloaded touchcopy but even touch copy is not recognizing my iphone.

  • Why isn't my back button in Safari not working? I am constantly resetting Safari.

    Why isn't my back button in Safari not working? I am constantly resetting Safari.

    Cheryl...
    Go to ~/Library/Caches/com.apple.Safari
    Move the Cache.db (or ApplicationCache.db) file from the com.apple. Safari folder to the Trash.
    Restart your Mac. Launch Safari. Try the back button.
    ~ (Tilde) character represents the Home folder.

  • What to do now when my iPad won't turn on after I turn it off. It shows only the apple logo. I am sure it has above 70% charge as when I sync my iPad it shows necessary detail in iTunes. I have tried, HOME & POWER button, but did not work.

    What to do now when my iPad won't turn on after I turn it off. It shows only the apple logo. I am sure it has above 70% charge as when I sync my iPad it shows necessary detail in iTunes. I have tried, HOME & POWER button, but did not work.

    First try a Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least Ten seconds... (But can take Longer)... until the Apple logo appears. Release the Buttons
    If no joy... Try a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    3: If Unable to Restore, try using the Steps in this article to force the device into Recovery Mode.
    Note on Recovery Mode.
    You may need to try this More than Once... Be sure to Follow ALL the Steps...
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Custom Master Detail form not working In EBS

    Custom Master Detail form not working In EBS
    Hi all,
    I have two custom tables -- 1) XXX_DIE_Headers
    2) XXX_DIE_LINES
    I developed a Master Detail form based on above tables. XXX_DIE_Headers is the Master Block (Single record) & XXX_DIE_LINES is the detail block ( Multi line block ).
    Yes, I used Appstand,Template.fmb for developing this form. The Master block has three fields out of which Two are required fields and i have given initial value for them.
    As i deployed it in APPS(EBS),everything about it is working fine (insert,delete,master-detail behaviour) except querying.
    When i press F-11 , It pops up a message "Do you want to save changes you have made" Choice - yes,no,cancel.
    I don't want this message to pop up.
    The scenario is :- I open the form.( without entering ) Press F11 . The message Pops up.
    Please give me suggession on how to work it around so as form directly goes to query mode ,without popping the message.
    regards
    ravi

    It seems that you are changing a database value in your form, do you have any changes in WHEN-NEW-FORM-INSTANCE???
    what the form is trying to tell you that you have changed something, do you want to save it?
    I suggest you debug your form and see what's happening step by step.
    Tony

  • Satellite M70: Control button keys are not working

    I currently reformatted my M70 to WinXp Pro Sp2, downloaded all related TOSHIBA drivers and related programs [ie. Toshiba control button driver / program] and system is running normal. However, CONTROL BUTTON keys are not working, was working fine with XP Home edition and Win Media but when I called Toshiba Support they couldn't help me because I had upgraded to Xp Pro. My Question is...Is there a fix or a solution to this issue and where can I download or find this fix.
    Thanks
    Emm

    Hey Folks
    Thanks for the advice, however, I did download the control driver and the controls program for the M70 model AND installed them in that order. The Controls Driver installs correctly but unfortunately, when installing the Controls Program, I get a message that the program will not install because it's not the right version for my M70-CL3 [PSM73C]. Not sure what to do here. I would think that everything should work properly seeing as taking the step up to XPPro SP2 isn't that far of a stretch.

  • I am about to buy and iphone 4, its second hand and is in amazing condition. The only problem is that the 'wi-fi' button doesn't not work. I tried to click on it but nothing responds. Can this be fixed? Should i still purchase it?

    I am about to buy and iphone 4, its second hand and is in amazing condition. The only problem is that the 'wi-fi' button doesn't not work. I tried to click on it but nothing responds. Can this be fixed? Should i still purchase it?

    while you are with the person selling it to you, ask if you can do a complete restore of the software settings->general->reset->reset all
    reboot the phone to factory settings and see if that fixes the problem.  if not, i wouldn't buy it unless they are selling it to you for less than $50.  wifi is crucial for keeping data low and using features like facetime

  • So does Flash Forms not work in Safari?

    Does Flash Forms not work on Safari Browser? I have them on
    my site but when I try to look at them in Safari, they don't work..
    Or do I need to just add some type of extension to my Safari
    Browser to View a Flash Form?
    Here is the page. it won't work in Safari.. unless I"m
    missing an install extension. I just downloaded the browser for
    Windows for the first time today and so I wanted to check my site
    in that browser.
    http://www.jimmyharrell.com/contact.cfm
    is the page in question.

    yes but still no luck. When you go here do you see my flash
    form load in Safari? I'm using Safari for Windows not mac.
    http://www.jimmyharrell.com/contact.cfm

Maybe you are looking for

  • Key field in sender file adapter

    Hi All,        I am using FCC ( sender) to convert a flat file into XML .I have a record structure of the following type : HEADER,1,DETAIL,,SUBDETAIL, . The problem is i dont have any KEYFIELD in HEADER or DETAIL or SUBDETAIL . Is it possible to do F

  • GL Data Load - INIT and FULL

    Hi, I am getting different record count for Full and Init GL - Data loads. Count for Init is about 300 records less than the count for Full load. What could be the reason ? Thanks,

  • Where is the audio track in a dvdproj file?

    I have a number of old iDVD projects stored on hard disc that I need to convert to a useable format.  I've been able to find the MPEG compressed video files by right-clicking on the .dvdproj bundle and opening the Contents/Resources/MPEG.nobackup fol

  • How to escalate Time Zone bug in iPhone Calendar to Apple?

    Hi, does anyone know how to escalate a bug in the iPhone calendar software to Apple? Time Zone support on the iphone which causes calendar items created in location "Kuwait" to be saved as "Gulf Standard Time" and not "Arabian Standard Time", which m

  • Crash on startup

    Hello, I have a version of FCPX 10.0.5.    Everything was working fine and I have created a few projects with it.    I installed a trial version of FXFactory with it and now it crashes everytime I start it up. I am running Mountain Lion on a Macbook