<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using a clipboard menu in Flex with Flash Player 10</title>
	<atom:link href="http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Fri, 19 Mar 2010 20:35:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/comment-page-1/#comment-3742</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Wed, 26 Nov 2008 21:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/#comment-3742</guid>
		<description>Daniel,

Good timing! I was actually trying to do this on an FxTextArea control in Flex Gumbo the other day and it looks like it may not be possible. I was also able to reproduce the issue with a standard Flash Player TextField instance, so filed a bug report in the public Flash Player bug base:
&lt;a href=&quot;http://bugs.adobe.com/jira/browse/FP-1094&quot; rel=&quot;nofollow&quot;&gt;http://bugs.adobe.com/jira/browse/FP-1094&lt;/a&gt;

Peter</description>
		<content:encoded><![CDATA[<p>Daniel,</p>
<p>Good timing! I was actually trying to do this on an FxTextArea control in Flex Gumbo the other day and it looks like it may not be possible. I was also able to reproduce the issue with a standard Flash Player TextField instance, so filed a bug report in the public Flash Player bug base:<br />
<a href="http://bugs.adobe.com/jira/browse/FP-1094" rel="nofollow">http://bugs.adobe.com/jira/browse/FP-1094</a></p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/comment-page-1/#comment-3741</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 26 Nov 2008 15:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/#comment-3741</guid>
		<description>Hi,

I have a weird problem with the context menu. I`m trying to hide the clipboardItems (cut, copy...) from a textArea`s context menu. And it still appears. I`d appreciate any answers that might help. My code is below:
&lt;pre class=&quot;code&quot;&gt;
private function init():void
{
    var cm:ContextMenu = new ContextMenu();
    cm.hideBuiltInItems();
    cm.clipboardMenu = false;
    cm.clipboardItems.copy = true;
    cm.clipboardItems.cut = true;
    cm.clipboardItems.paste = true;
    cm.clipboardItems.selectAll = false;

    var m1:ContextMenuItem = new ContextMenuItem(&quot;Mark as Company Name&quot; );
    var m2:ContextMenuItem = new ContextMenuItem(&quot;Mark as Industry&quot; );
    var m3:ContextMenuItem = new ContextMenuItem(&quot;Mark as Location&quot; );
    var m4:ContextMenuItem = new ContextMenuItem(&quot;Mark as Cost&quot; );
    var m5:ContextMenuItem = new ContextMenuItem(&quot;Mark as Market Value&quot; );

    m1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    cm.customItems.push(m1, m2, m3, m4, m5);

    panelParsedText.contextMenu = cm;
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have a weird problem with the context menu. I`m trying to hide the clipboardItems (cut, copy&#8230;) from a textArea`s context menu. And it still appears. I`d appreciate any answers that might help. My code is below:</p>
<pre class="code">
private function init():void
{
    var cm:ContextMenu = new ContextMenu();
    cm.hideBuiltInItems();
    cm.clipboardMenu = false;
    cm.clipboardItems.copy = true;
    cm.clipboardItems.cut = true;
    cm.clipboardItems.paste = true;
    cm.clipboardItems.selectAll = false;

    var m1:ContextMenuItem = new ContextMenuItem("Mark as Company Name" );
    var m2:ContextMenuItem = new ContextMenuItem("Mark as Industry" );
    var m3:ContextMenuItem = new ContextMenuItem("Mark as Location" );
    var m4:ContextMenuItem = new ContextMenuItem("Mark as Cost" );
    var m5:ContextMenuItem = new ContextMenuItem("Mark as Market Value" );

    m1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    m5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, mark);
    cm.customItems.push(m1, m2, m3, m4, m5);

    panelParsedText.contextMenu = cm;
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: flash designer</title>
		<link>http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/comment-page-1/#comment-3740</link>
		<dc:creator>flash designer</dc:creator>
		<pubDate>Thu, 23 Oct 2008 08:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/27/using-a-clipboard-menu-in-flex-with-flash-player-10/#comment-3740</guid>
		<description>guys will this alos work with menus that retrieve their content from an external xml file?</description>
		<content:encoded><![CDATA[<p>guys will this alos work with menus that retrieve their content from an external xml file?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
