<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TRT Tidbits</title>
	<atom:link href="http://blogs.adobe.com/tidbits/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.adobe.com/tidbits</link>
	<description>Notes, Info and Experiences from the Adobe Technical Response Team</description>
	<lastBuildDate>Fri, 30 Jul 2010 08:20:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Trapping Keystrokes from an Acrobat Plug-in on Windows</title>
		<link>http://blogs.adobe.com/tidbits/2009/05/trapping_keystrokes_from_an_ac.html</link>
		<comments>http://blogs.adobe.com/tidbits/2009/05/trapping_keystrokes_from_an_ac.html#comments</comments>
		<pubDate>Thu, 21 May 2009 11:04:18 +0000</pubDate>
		<dc:creator>Patrick Leckey</dc:creator>
				<category><![CDATA[Acrobat Plug-Ins]]></category>
		<category><![CDATA[Acrobat SDK]]></category>
		<category><![CDATA[Interface]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/tidbits/2009/05/trapping_keystrokes_from_an_ac.html</guid>
		<description><![CDATA[
 <a href="http://blogs.adobe.com/tidbits/2009/05/trapping_keystrokes_from_an_ac.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This is a question I get a lot &#8211; &#8220;How do I prevent certain hotkeys from being issued by the user using the Acrobat SDK?&#8221;.  Well, quite frankly, the answer is &#8211; you don&#8217;t.  The Acrobat SDK does not provide any mechanism for trapping keys in the Acrobat interface, and these features have been left out for a good reason; your platform APIs already have a mechanism to do this, and they provide much greater control than anything the SDK could provide (which would need to be limited in scope to the active application window).  You can use these platform APIs in your plug-ins, using your plug-in as a proxy to these interfaces, and doing whatever you want with the resulting responses from the platform APIs.</p>
<p><span id="more-8"></span><br />
In this article, we&#8217;re focusing on Windows (since this is the OS the majority or these questions come from).  We&#8217;ll be focusing on the <a href="http://msdn.microsoft.com/en-us/library/ms644990(VS.85).aspx">SetWindowsHookEx</a> method to set up a keyboard hook that will pass all keystrokes to a callback, analyze the key codes and discard the ones that we want to ignore while passing the rest on down the line.</p>
<p>For the purposes of this article, I have modified the file &#8220;BasicPlugin.cpp&#8221;, which is part of the &#8220;BasicPlugin&#8221; sample contained in the <a href="http://www.adobe.com/devnet/acrobat/">Acrobat 9 SDK</a>.  I am using Visual Studio 2005, as this is the only tested &amp; supported platform for developing Acrobat plug-ins on Windows.</p>
<p>You can download the updated &#8220;BasicPlugin.cpp&#8221; <a href="http://blogs.adobe.com/tidbits/files/BasicPlugin.cpp">here</a>.  Simple replace the BasicPlugin.cpp in the PluginSupport/Samples/BasicPlugin/Sources folder and rebuild the project.  This will add a menu item in Acrobat named &#8220;Hook Plugin&#8221; under the &#8220;Acrobat SDK&#8221; submenu.  Choose this menu item and it will alternate enabling or disabling the hook.  I have hooked CTRL+C, CTRL+V, CTRL+X in order to demonstrate impeding a user from using hotkeys to copy data from a PDF.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/tidbits/2009/05/trapping_keystrokes_from_an_ac.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Binding and Accessibility</title>
		<link>http://blogs.adobe.com/tidbits/2009/02/data_binding_and_accessibility.html</link>
		<comments>http://blogs.adobe.com/tidbits/2009/02/data_binding_and_accessibility.html#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:28:52 +0000</pubDate>
		<dc:creator>Jay Proulx</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/tidbits/2009/02/data_binding_and_accessibility.html</guid>
		<description><![CDATA[
 <a href="http://blogs.adobe.com/tidbits/2009/02/data_binding_and_accessibility.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>When updating text via data binding in Flex, JAWS (or other screen readers) will not automatically read the change. Imagine a Flex application where every time a visual String was updated, the screen reader read that change. It would be worse than being in a theatre before the curtain rises! However, after data binding has occurred, you can use your screen reader shortcuts to move back and forth through the accessible properties and hear any changes that have been made.</p>
<p>The best way to review what text should be read is to use an accessibility inspector such as <a href="http://www.microsoft.com/downloads/details.aspx?familyid=3755582A-A707-460A-BF21-1373316E13F0&amp;displaylang=en">Inspect32</a>, or <a href="http://www.microsoft.com/downloads/details.aspx?familyid=3755582A-A707-460A-BF21-1373316E13F0&amp;displaylang=en">Accessibility Explorer</a> (both available from Microsoft). You can step through the MSAA properties and review the descriptions and names. I find the easiest way to ensure you&#8217;re looking at just Flash Player is to use Accessibility Explorer and use the select with mouse tool and click on an instance of Flash Player within a browser.</p>
<p><img alt="JAWS_mouse_select.jpg" src="http://blogs.adobe.com/tidbits/Posts/Flex/JAWS_mouse_select.jpg" width="682" height="563" align="center" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/tidbits/2009/02/data_binding_and_accessibility.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessibility updates in Flex SDK 3.1</title>
		<link>http://blogs.adobe.com/tidbits/2009/02/accessibility_updates_in_flex.html</link>
		<comments>http://blogs.adobe.com/tidbits/2009/02/accessibility_updates_in_flex.html#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:27:42 +0000</pubDate>
		<dc:creator>Jay Proulx</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/tidbits/2009/02/accessibility_updates_in_flex.html</guid>
		<description><![CDATA[
 <a href="http://blogs.adobe.com/tidbits/2009/02/accessibility_updates_in_flex.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re using JAWS, and are experiencing unusual behaviour reading your mx:Text controls, it may be due to an issue in Flex SDK 3.0.0 (or Flex Builder 3.0.0). There were a number of Accessibility updates released in Flex SDK 3.1 (or Flex Builder 3.0.1). Since then Flex 3.2 and Flex Builder 3.0.2 have been released, and official support is offered for those products, try the latest Flex SDK Mileston release available here:</p>
<p><a href="http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3">http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/tidbits/2009/02/accessibility_updates_in_flex.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entering and Exiting Forms mode with JAWS 9</title>
		<link>http://blogs.adobe.com/tidbits/2009/02/entering_and_exiting_forms_mod.html</link>
		<comments>http://blogs.adobe.com/tidbits/2009/02/entering_and_exiting_forms_mod.html#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:22:42 +0000</pubDate>
		<dc:creator>Jay Proulx</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/tidbits/2009/02/entering_and_exiting_forms_mod.html</guid>
		<description><![CDATA[
 <a href="http://blogs.adobe.com/tidbits/2009/02/entering_and_exiting_forms_mod.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>So, this doesn&#8217;t seem very obvious. If you want to enter forms mode in JAWS 9, you either need to hit numpad-plus, or for those of you who are numpad-challenged, the other obvious combination is capslock-semicolon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/tidbits/2009/02/entering_and_exiting_forms_mod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
