AR9.1 Rich Media Annotation TextInput and Backspace Key

I've put together a test PDF see:
http://www.amrita-cfd.org/4adobe/rich-media/shock-tube.pdf
that shows that the backspace key does not work as expected
for an a TextInput field in a rich-media annotation when
viewed with Linux AR9.1; at least not with my SuSE 10.3 setup.
There are a couple of other issues not alluded to in the test PDF:
(i) the /Widget used to toggle the attachments pane does not work
in fullscreen mode; (ii) the /Widget used to zoom out from
the rich-media annotation has /Normal, /Rollover and /Down
appearances, but only the /Normal appearance is drawn.
James Quirk

Hi Sandip,
Thanks for your reply. I'm glad to hear that the backspace
issue is being worked on and I'm guessing that you're
also aware of a similar problem with the enter key?
I agree that my non-Acrobat PDF might be deficient in some
way and it's also possible that my user preferences are
not quite right. But consider the following.
I re-jigged the test PDF such that the /Widget whose /R
and /D appearances were not activated now lies half on
the rich-media SWF and half on the background page.
Recall this is the /Widget that reads "Click to zoom out!",
which appears when the SWF is activated.
Interestingly, when I position the mouse over the /Widget
half that lies off the SWF (the right-hand half) then the
right-hand half does have its /R and /D appearances rendered.
But the left-hand half, the part that lies over the SWF,
is stuck with the /N appearance.
Following this observation, I re-jigged the /Widget to
print out the events its receives on the JS console.
And it seems that the left-hand half of the /Widget
is not getting /E or /X events, even though the
mouse correctly changes shape, but it does receive
/D, /Fo, /U and /Bl events. The right-hand half
receives all events as normal.
You can also try the following. Move the mouse over
the right-hand half of the /Widget, such that an
/E event is generated. Then move the mouse along
the /Widget towards the left-hand half: the second
the mouse reaches the left-hand half the /Widget
receives an /X event.
Therefore it looks like there is some inconsistency
in the event model when a /Widget lies on top of
a rich media annotation, or at least the behaviour
I'm observing is not hinted at in the document adobe_supplement_iso32000.pdf which covers rich-media
annotations.
Anyhow, I'll send you the original PDF as you requested
along with the modified one I describe above.
Regards,
James
p.s. For anyone else reading this message, I've posted
the modified PDF at:
http://www.amrita-cfd.org/4adobe/rich-media/shock-tube-v2.pdf

Similar Messages

  • I cann't typing letter P and backspace key

    is anyone having same problem?
    i can type any letter except letter P and backspace key.
    it was work yesterday.I reseted whole system but still same....should i take thi to appl store? i stil have a warranty.......
    please tell me the solution if sombody knows...please

    Hi,
    Does the issue occur when using all applications?
    Do you see the same issue when you rotate the iPhone?
    This article: http://support.apple.com/kb/TS2802#faq5 provides tips for issues with the display not responding to touch.
    You can try restoring the iPhone and setting it up as a new phone. This would rule out issues with the iPhone software and backup.
    If you restore as new, you may want to archive the backups as mentioned in this article: http://support.apple.com/kb/HT1766
    -Jason

  • IPhone and iPad Built in Delete key and backspace key.

    iPhone and iPad should have built in Delete key besides the backspace key. Due to screen with virtual default keyboard and big finger, it is difficult to position the cursor accurately.  A delete key should be made available to improve productivity.

    First of all, you cannot delete those backup files.  All those files are needed in the event of a "Restore from Backup" is required.  Everytime you do a backup, itunes only update those files with changes made on the phone or iPad only from the last backup. If there are no new changes to certain contents or media, the files will remain untouched in the folder.  This is the reason why you have some files dated as back as one year ago.  Now, even if you have deleted some of those files, a new backup will add those files back during the process.
    As for changing the Default location of the backup folder, you may refer to this link but do at your own risk:
    http://www.hanselman.com/blog/HowToChangeTheLocationOfYourIPhoneBackupAndITunesM obileSyncBackupFolder.aspx

  • SelectionChange for enter and backspace keys

    Hello all,
    Our VSTO addin needs to know the current selection so we can sync our taskpane with current selection. We are using the SelectionChanged event to register our taskpane synch routine. The problem is that this event doesn't fire on Enter or backspace key.
    We are specifically interested in the scenarios where the Enter/backspace results in a paragraph change(para add on enter and paragraph remove on backspace of the last character in a para). It seems like a bug to me that SelectionChange wont
    fire on backspace when the delete key does fires it.
    Is there any other workaround to detect this paragraph change state?

    Hi,
    >> I am not interested in a cursor change but rather a paragraph change which would indicate a change from one para to next.
    The current object model does not have an event to be triggered when changing the content.
    If you want to detect the paragraph changing, we could also use a global Timer to detect the paragraph changing of the active document.
    >> Multiple documents - i would have to suspend/reactivate my timer on Activate/Deactivate events
    >> Multiple windows of the same document - If i have the same document open in multiple windows, split window, new window etc, how would this timer work?
    Here is the sample code for your reference:
    using System.Collections.Generic;
    using Word = Microsoft.Office.Interop.Word;
    using System.Timers;
    using System.Runtime.InteropServices;
    namespace WordSelectionChangeIssue
    public partial class ThisAddIn
    private Timer addInTimer { get; set; }
    private Dictionary<string, int> ParagraphCountDict { get; set; }
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    addInTimer = new System.Timers.Timer();
    ParagraphCountDict = new Dictionary<string, int>();
    addInTimer.Interval = 1000;
    addInTimer.Elapsed += TimerElapsedHandler;
    addInTimer.Start();
    private void BindToChange(Word.Document document)
    ParagraphCountDict.Add(document.Name, document.Paragraphs.Count);
    private void TimerElapsedHandler(object sender, ElapsedEventArgs e)
    if(Application.Documents.Count == 0)
    return;
    try
    var activeDocument = Application.ActiveDocument;
    if (!ParagraphCountDict.ContainsKey(activeDocument.Name))
    BindToChange(activeDocument);
    var previousParagraphsCount = ParagraphCountDict[activeDocument.Name];
    var count = activeDocument.Paragraphs.Count;
    if (previousParagraphsCount != count)
    ParagraphCountDict[activeDocument.Name] = count;
    // trigger event
    ParagraphChangeHanlder(activeDocument);
    }catch(COMException comEx)
    private void ParagraphChangeHanlder(Word.Document document)
    System.Windows.Forms.MessageBox.Show("Paragraph Changed!");
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    addInTimer.Stop();
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Apple Wireless Keyboard and annoyance with fn and backspace key

    Hi everybody,
    Just took delivery of this beautiful Apple Wireless Keyboard but having only one problem with it. I've figured out how in System Preferences/Keyboard & Mouse/Keyboard it's possible to check the box which allows the F1, F2, etc. keys as standard function keys but when it's checked I also have to use the fn key to make the Backspace key work like a normal backspace. If I don't use the fn key the Backspace key will eat any type in front of the curser instead of backing up and eating the type behind it. Why is this..? I mean the Backspace Key isn't even on the same row as all the F keys are so why am I having to use the fn key to change the function of the Backspace key..? Actually it would be nicer if the function of with or without the fn key was reversed. Anyone know how I can change that..?
    paul

    Ahhh forget it..
    I realized having that option checked made other keys do screwy things as well unless I used the fn key with them so I've gone back to using the fn key only when I need to use the F keys..

  • Whether the AIR app support create some formats of rich media (besides html5) and share to others within the app?

    I want to develop an app that have some features like
    user can create animation content in some public or  proprietary format
    user can share the content to others within the app
    HTML5 is a choice but not the best for performance reason
    May I use AIR  or any other suggestions? thanks a lot!

    I think the real reason they choose INDesign is because it a first a layout tool. Which is what magazine's use for the content. They know the this is where the distribution sector is. You get the Magazine corporations to adopt it, then you add the Multimedia capabilities that provides these same corporations the ability to use their existing layouts as a base then build the interactivity from there.
    My issue is that I can't be the only one who saw this need arising. A tool that incorporates layout, multimedia and publishing to various platforms which has power and ease of use is so badly needed. I am amazed that Apple did not partner with someone, especially Adobe to create a tool of this nature.
    Creating great applications, apps, and multimedia documents in my opionion should not be developed only by those with great technical skill. Anyone who can conceive of an idea, has good knowledge of Adobe and Apple Professional tools should be able to easily create apps and multimedia documents. Yet no one has developed a good WYSIWG tool. You still need so much coding to get anything done.
    All I can say is... the labs division said that September was the release date for the tools they used for the Wired App. So where are they?

  • Rich Media and mobile devices

    Hi,
    I have opened a discussion at javascript forum but they tell me that mobile devices do not read javascript http://forums.adobe.com/message/4741591
    The point is that Rich Media Annotations can not be seen in mobile devices, android tablets, ipad.
    Is there any way to give a warning to the mobile device user that the PDF has Rich Media Annotations and a Windows or Mac Pc is needed to see it right?

    See http://forums.adobe.com/message/4740888#4740888. Please don't post the same question multiple times, it makes it difficult for other users to search for answers.

  • "backspace," "g" and "h" key not working

    Hello,
    Suddenly the "backspace," "g" and "h" keys stopped working. Due to this issue, I can't log in to use my computer. 
    Please, help.
    I have a Pavilion g7-1260 us Notebook PC, Windows 7.
    Please help becasue I can't use my laptop at all.
    Thanks,
    Carlos-Manuel

    Hi Carlos,
    Well, to get logged in (assuming your PC is at least booting up to the Windows Logon screen), you can try to use the On-Screen Keyboard, just click on the Ease of Access button (should be on the lower left hand side of the logon screen) and put a check mark in the box next to "Type without the keyboard" and select OK.  This should bring up the On-Screen Keyboard and allow you to enter your user name and password.  Note that I'm assuming here that you couldn't get logged on because either your user name or password or both uses one of the keys that isn't working.
    Alternatively you can also just connect an external USB keyboard, like what you might use with a Desktop PC.
    That should at least allow you to use your computer somewhat.
    To test your keyboard, reboot the computer and press F2 to access the UEFI diagnostics.  You can find the full procudure in this document:
    Testing for Hardware Failures (Windows 7, Vista)
    If you don't have the lastest UEFI diagnostics installed on your PC, you can get the download here for your model PC:
    HP Unified Extensible Firmware Interface (UEFI) Support Environment
    There is a keyboard test under system tests, it may take a while to get through the test procedure, but it will verify if the keyboard hardware is functional or not.
    If the keyboard test all pass, but you still have problems with some keys on the keyboard, check that the keyboard language has not been changed.  Go to Start --> Control Panel, choose "Change Keyboards or other input methods", then click the Change Keyboards button.  Based on your model, you should have the English (United States) - US option selected.  If some other keyboard is selected, that can cause some weirdness with your keyboard.
    Good Luck!
    Although I am an HP Employee, I am speaking for myself and not for HP.

  • Some keys as ENTER, SPACE and BACKSPACE type characters

    Some keys as ENTER, SPACE and BACKSPACE are not working properly in my HP Pavilion dm4 1055br. When pressing one of these keys type two or three characters ( ): ENTER (lçj), SPACE (.;M), BACKSPACE (~h). This latter at the same time turn off the F11 key (sound). The light of wireless key (F12) does not turn on. When turn off the F12 key, all the keys mentioned work well.

    Dear Customer, Welcome and Thank you for posting your query on HP Support Forum It looks like you are having issues with the Keyboard on your Notebook.We will surely assist you with this. Troubleshooting: Step 01. Click on the Start Button and go to Control PanelStep 02. Open the Device Manager and expand the Keyboard from the listStep 03. Right click on Standard PS/2 Keyboard and click on UninstallNote: This driver will get installed again automatically on your NotebookStep 04. Please turn OFF the NotebookStep 05. Un-plug the Power/AC Adapter and also remove the Battery tooStep 06. Press and Hold the Power Button of the Notebook for a full minuteStep 07. Now let's re-insert the battery back in and plug back the Power/AC AdapterStep 08. Start the Notebook and keep tapping F10 Key during the startup to access the BIOSStep 09. Once you get to the BIOS, Please press F9 or F5 Key[Model specific] to load setup defaults for the BIOSStep 10. Use the arrow keys to say "YES" and hit enterStep 11. Now let's press Esc/Escape Key. Save Changes and Exit - YesStep 11. Now please wait till the Unit loads the Windows Operating system If the issue still persists please check and verify if an External Keyboard works fine with your Notebook Note: Please click on the below shown link to find more troubleshooting stepshttp://h10025.www1.hp.com/ewfrf/wc/document?docname=c03738933&tmp_task=solveCategory&cc=us&dlc=en&lc=en&product=5442782 You also need to download and install the BIOS driver first and then Chipset driver followed by Graphics driver from the HP Website
    Note: Please follow this order only while installing the driver - BIOS, Chipset and then Graphics Hope this helps, for any further queries reply to the post and feel free to join us again   **Click the White Thumbs Up Button on the right to say Thanks**Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem. Thank You,K N R KAlthough I am an HP employee, I am speaking for myself and not for HP

  • Why does the backspace key now make the browser go back to the last page viewed, and how can I change that setting?

    When typing in a browser page to reply to a blog, when I pressed the backspace key to correct a typo, suddenly the browser went back to the previous web page. How can this setting be changed or turned off?

    This should never happen when the cursor is in an editing control, but it has always done that if the focus was on the page itself.
    Here's how to change it:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box that appears above the list, type or paste '''backs''' and pause while the list is filtered
    (3) Double-click the '''browser.backspace_action''' preference and enter the desired value:
    * 0 => back (default)
    * 1 => page up
    * 2 => ignore (actually, anything other than 0 or 1 does nothing)
    OK to save the change. You're done.

  • "backspace", "g" and "h" keys are not working.

    hello,
    my laptop is HP 450 and windows 7.it is one years old. i haven't spilled anyting on it or damaed it in anyway i can think of.
    suddenly the "backspace" , "g" and " h " keys are not working. 
    please help me, because i have to complete my university assignment as soon as possible.
    tank you,
    shehara

    Hi,
    While this could be a hardware issue, it's always worth trying the following.
    Open windows Control Panel, open Device Manager, expand Keyboards, right click the entry 'Standard PS/2 Keyboard' and select Uninstall.
    Shutdown the notebook.
    Then unplug the AC Adapter and then remove the battery.  Hold down the Power button for 30 seconds.  Re-insert the battery and plug in the AC Adapter.
    Tap away at the esc key as you start the notebook to launch the Start-up Menu and then select f10 to enter the bios menu.  Press f9 to load the defaults ( this is sometimes f5, but the menu at the bottom will show the correct key ), use the arrow keys to select 'Yes' and hit enter.  Press f10 to save the setting and again use the arrow keys to select 'Yes' and hit enter.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Hello, my backspace and enter keys suddenly stopped working. I have done a PRAM reset and used the keyboard viewer to see if the buttons work and they don't.  The PRAM reset didn't work  either

    Dear All,  the backspace and enter keys on my wireless keyboard suddenly stopped working.  Im using OS 10.7.5 and have tried a PRAM reset which didn't work.  I also used the keyboard viewer to see if the keys worked on that but they don't.  This is driving me mad, can anyone please tell me what to do?  It happened just after an update but this could be a coincidence.  Thank you for your time 

    For my computers, though some of them support BlueTooth devices and accessories,
    my preference and economy of standard, is to have wired USB and also use powered
    USB hubs for accessories.
    I've used USB wired keyboards and mouse products; and some I've bought from the
    original owners who had upgraded to BT, and never used the new Apple USB model;
    so I have spares of these on-hand since they seldom fail, but do work when BT won't.
    {A SMC reset should not cause a problem, or seldom has; but can solve some.}
    In my opinion, the wired USB keyboard is an essential accessory, if not a necessary
    primary means of user access on a continuous basis. At least until the wires fail...!

  • Backspace and delete keys not working in LS?

    Hi all, I was tutoring a co-worker on the basics of LiveCycle Designer, and ran into a very odd problem.  Neither the backspace nor the delete keys work in the application.  In order to delete text or a cell, she had to resort to using "Cut."
    Moreover, when she tried to create a drop-down list, she was not able to click the "+" sign in the object palette in order to add items to it...it was as if the button simply was not there.  I've never seen this issue before.  Anyone know what's going on and if there is a setting to fix this?  I know the keyboard is not damaged because backspace and delete keys work fine in other applications.
    Thanks!
    Windows 7   LS 9.0.0

    It's quite possible.  Closing the document and then re-opening it somehow magically reset the keys so that they work now.  Thanks for the response, though!

  • Building Advanced iBooks HTML 5 Widgets and iAd Rich Media Ads

    Is there example files that go with the presentation and video from the developer conference session "Building Advanced iBooks HTML 5 Widgets and iAd Rich Media Ads - 611". In particular the code dynamically referencing the NASA assets?

    You can check this link
    http://docs.huihoo.com/apple/wwdc/2013/session_611__building_advanced_ibooks_htm l5_widgets_and_iad_rich_media_ads.pdf
    and this link
    http://www.youtube.com/watch?v=XHAPJY_dW1Y&list=PL5F63484A0A2B2C6D&index=2
    at youtube click about / show more and you see a dropbox link to download the file
    Hope i help you
    regards
    haris

  • Rich Media and Windows 8

    Hi,
    I have installed Windows 8.
    It looks and runs great and I think is going to have a big success.
    My first surprise is when I have opened a PDF file . By default Windows 8 reads all pdf files with a windows pdf reader applicattion. This means that if  a pdf containing Rich Media elements is opened nothing will happen. You see a "flat" pdf document.
    I am thinking about some code to alert the user that Adobe Reader is needed to see the Rich Media elements.
    Any ideas?
    Thanks in advance.

    The best way to ensure a PDF is opened in Reader is to use JavaScript (or more precisely, use the lack of it).
    See this post for the basics of showing a message if PS is not present, if you want to extend the idea to require a particular version of Acrobat or Reader  you can modify the JS code to check the values of app.viewerVersion. To detect if you're in Adobe products, look at app.viewerType (which will be "Reader" for Reader, "Exchange" for Acrobat Standard or "Exchange-Pro" for Acrobat Pro).
    e.g. suppose you use method 1 (a warning page at the end of the document set as the initial page number, with a JS event to move back to page 0) and your valid conditions are for the user to have Acrobat Pro, version 10.0 or later. The redirection code on the final page would be:
    if (app.viewerVersion>10 && app.viewerType == 'Exchange-Pro') this.pageNum = 0;
    Anyone opening the file in Reader, OS X Preview, or with scripting disabled, will see the warning message on your final page. Those who meet the requirements will see the first page.
    Being suitably vague and handwavey, imagine a mystical future time when Reader on mobile gains a JS  API but still cannot display Rich Media - in that case you could detect the problem directly by trying to open a reference to the RMA inside a try-catch loop - if you throw an error or get an undefined object you know something is blocking your content. The same technique can be used to detect users of Acrobat or Reader XI who've disabled Rich Media via the security message bar.

Maybe you are looking for

  • How to make a really basic pong game for a beginner

    Hello.  I've read through a couple of threads on here dealing with making a game of pong in LabView, but in them the users had questions with far more complex aspects of the program than I want to deal with.  I am a beginner programmer in LabView wit

  • OBIEE 11g - Dashboard Prompts - Radio Buttons

    I have a report where I need to run 3 different ways based on the same filter with different values. Each way has multiple values. I was hoping to create a Dashboard prompt as a radion button to allow the user to select which variation of the report

  • Problem in safari access

    when i access safari then automatically new unwanted window open and  different  advertisement create on my apple homepage at the

  • Buy phone in canada, can/cannot use in hk?

    I wanna ask is it able to use the iphone  in hk? bcuz i order it online on apple.ca and i am using the iphone 5 in hk right now but it seems like it cant read the carrier.

  • Code check please

    Hi have a mysql databse which includes colums: UserSex, UserEthnicity,UserAge, UserArea etc. I've created a form using spry select to search the database for any combination or age, sex ethnicity etc. When I add four test records to the database and