<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244</link>
    <title>MATLAB Central Newsreader - fullcrosshair</title>
    <description>Feed for thread: fullcrosshair</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Fri, 05 Oct 2007 22:10:17 -0400</pubDate>
      <title>fullcrosshair</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244#395334</link>
      <author>german </author>
      <description>hi,&lt;br&gt;
I want to use a cursor like fullcrosshair, but to have only &lt;br&gt;
the horizontal line.&lt;br&gt;
Is it possible to edit the pointer? if not, how can I make &lt;br&gt;
a pointer with a full horizontal line?&lt;br&gt;
&lt;br&gt;
thanks&lt;br&gt;
german</description>
    </item>
    <item>
      <pubDate>Sat, 06 Oct 2007 23:43:27 -0400</pubDate>
      <title>Re: fullcrosshair</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244#395418</link>
      <author>carlos lopez</author>
      <description>&quot;german &quot; &amp;lt;nospam@yahoo.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fe6co9$rr0$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; hi,&lt;br&gt;
&amp;gt; I want to use a cursor like fullcrosshair, but to have only &lt;br&gt;
&amp;gt; the horizontal line.&lt;br&gt;
&amp;gt; Is it possible to edit the pointer? if not, how can I make &lt;br&gt;
&amp;gt; a pointer with a full horizontal line?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; thanks&lt;br&gt;
&amp;gt; german&lt;br&gt;
It is possible. You need to look for the properties of the&lt;br&gt;
figure, namely with something like:&lt;br&gt;
set(gcf,'Pointer','custom','PointerShapeCData',something)&lt;br&gt;
where something is explained in the manuals, and is where&lt;br&gt;
you can freely use your creativity ;-)&lt;br&gt;
Other property which might be worth investigating is&lt;br&gt;
'PointerShapeHotSpot' &lt;br&gt;
Regards&lt;br&gt;
Carlos</description>
    </item>
    <item>
      <pubDate>Sun, 07 Oct 2007 07:28:37 -0400</pubDate>
      <title>Re: fullcrosshair</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244#395450</link>
      <author>Yair Altman</author>
      <description>&quot;carlos lopez&quot; &amp;lt;clv2clv_00000000_@adinet.com.uy&amp;gt; wrote in&lt;br&gt;
message &amp;lt;fe96iv$coe$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &quot;german &quot; &amp;lt;nospam@yahoo.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;lt;fe6co9$rr0$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; hi,&lt;br&gt;
&amp;gt; &amp;gt; I want to use a cursor like fullcrosshair, but to have only &lt;br&gt;
&amp;gt; &amp;gt; the horizontal line.&lt;br&gt;
&amp;gt; &amp;gt; Is it possible to edit the pointer? if not, how can I make &lt;br&gt;
&amp;gt; &amp;gt; a pointer with a full horizontal line?&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; thanks&lt;br&gt;
&amp;gt; &amp;gt; german&lt;br&gt;
&amp;gt; It is possible. You need to look for the properties of the&lt;br&gt;
&amp;gt; figure, namely with something like:&lt;br&gt;
&amp;gt; set(gcf,'Pointer','custom','PointerShapeCData',something)&lt;br&gt;
&amp;gt; where something is explained in the manuals, and is where&lt;br&gt;
&amp;gt; you can freely use your creativity ;-)&lt;br&gt;
&amp;gt; Other property which might be worth investigating is&lt;br&gt;
&amp;gt; 'PointerShapeHotSpot' &lt;br&gt;
&amp;gt; Regards&lt;br&gt;
&amp;gt; Carlos&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Look inside the setptr function for ideas/examples of how to&lt;br&gt;
do this, as well as a few predefined cursor shapes that are&lt;br&gt;
unavailable in set(gcf,'Pointer',...).&lt;br&gt;
&lt;br&gt;
Note: setptr (and its sibling getptr) have been around in&lt;br&gt;
Matlab for ages (at least since Matlab 5.3), but to this day&lt;br&gt;
they are only partially documented (help text, but no doc)&lt;br&gt;
and apparently unsupported. I really have no idea why:&lt;br&gt;
Unlike moveptr (also semi-doc'ed, but which has a few quirks&lt;br&gt;
and is still not ready for prime time), setptr &amp; getptr&lt;br&gt;
appear pretty stable and usable as-is.&lt;br&gt;
&lt;br&gt;
Yair Altman&lt;br&gt;
&lt;a href=&quot;http://ymasoftware.com&quot;&gt;http://ymasoftware.com&lt;/a&gt;</description>
    </item>
    <item>
      <pubDate>Tue, 09 Oct 2007 19:36:53 -0400</pubDate>
      <title>Re: fullcrosshair</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244#395859</link>
      <author>german </author>
      <description>hi&lt;br&gt;
thanks for the reply.&lt;br&gt;
custom pointers allow me to plot what I want but just in a &lt;br&gt;
16 by 16 pixel scale. I need an horizontal line which will &lt;br&gt;
extend through the whole x axis scale (similar to fullcross &lt;br&gt;
hair, but without the vertical line).&lt;br&gt;
setptr allow me to use more pointer designs but still &lt;br&gt;
within 16 by 16 pixels scale.&lt;br&gt;
do you have any ideas? where the fullcrosshair pointer &lt;br&gt;
script is?&lt;br&gt;
&lt;br&gt;
thanks&lt;br&gt;
german&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;Yair Altman&quot; &amp;lt;altmanyDEL@gmailDEL.comDEL&amp;gt; wrote in message &lt;br&gt;
&amp;lt;fea1r5$g8f$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &quot;carlos lopez&quot; &amp;lt;clv2clv_00000000_@adinet.com.uy&amp;gt; wrote in&lt;br&gt;
&amp;gt; message &amp;lt;fe96iv$coe$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &quot;german &quot; &amp;lt;nospam@yahoo.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;fe6co9$rr0$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; hi,&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; I want to use a cursor like fullcrosshair, but to &lt;br&gt;
have only &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; the horizontal line.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Is it possible to edit the pointer? if not, how can I &lt;br&gt;
make &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; a pointer with a full horizontal line?&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; thanks&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; german&lt;br&gt;
&amp;gt; &amp;gt; It is possible. You need to look for the properties of &lt;br&gt;
the&lt;br&gt;
&amp;gt; &amp;gt; figure, namely with something like:&lt;br&gt;
&amp;gt; &amp;gt; set&lt;br&gt;
(gcf,'Pointer','custom','PointerShapeCData',something)&lt;br&gt;
&amp;gt; &amp;gt; where something is explained in the manuals, and is &lt;br&gt;
where&lt;br&gt;
&amp;gt; &amp;gt; you can freely use your creativity ;-)&lt;br&gt;
&amp;gt; &amp;gt; Other property which might be worth investigating is&lt;br&gt;
&amp;gt; &amp;gt; 'PointerShapeHotSpot' &lt;br&gt;
&amp;gt; &amp;gt; Regards&lt;br&gt;
&amp;gt; &amp;gt; Carlos&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Look inside the setptr function for ideas/examples of how &lt;br&gt;
to&lt;br&gt;
&amp;gt; do this, as well as a few predefined cursor shapes that &lt;br&gt;
are&lt;br&gt;
&amp;gt; unavailable in set(gcf,'Pointer',...).&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Note: setptr (and its sibling getptr) have been around in&lt;br&gt;
&amp;gt; Matlab for ages (at least since Matlab 5.3), but to this &lt;br&gt;
day&lt;br&gt;
&amp;gt; they are only partially documented (help text, but no doc)&lt;br&gt;
&amp;gt; and apparently unsupported. I really have no idea why:&lt;br&gt;
&amp;gt; Unlike moveptr (also semi-doc'ed, but which has a few &lt;br&gt;
quirks&lt;br&gt;
&amp;gt; and is still not ready for prime time), setptr &amp; getptr&lt;br&gt;
&amp;gt; appear pretty stable and usable as-is.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Yair Altman&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://ymasoftware.com&quot;&gt;http://ymasoftware.com&lt;/a&gt;&lt;br&gt;
&amp;gt; </description>
    </item>
    <item>
      <pubDate>Tue, 09 Oct 2007 19:47:23 -0400</pubDate>
      <title>Re: fullcrosshair</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244#395862</link>
      <author>Yair Altman</author>
      <description>&quot;german &quot; &amp;lt;nospam@yahoo.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fegl8l$kg5$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; hi&lt;br&gt;
&amp;gt; thanks for the reply.&lt;br&gt;
&amp;gt; custom pointers allow me to plot what I want but just in a &lt;br&gt;
&amp;gt; 16 by 16 pixel scale. I need an horizontal line which will &lt;br&gt;
&amp;gt; extend through the whole x axis scale (similar to fullcross &lt;br&gt;
&amp;gt; hair, but without the vertical line).&lt;br&gt;
&amp;gt; setptr allow me to use more pointer designs but still &lt;br&gt;
&amp;gt; within 16 by 16 pixels scale.&lt;br&gt;
&amp;gt; do you have any ideas? where the fullcrosshair pointer &lt;br&gt;
&amp;gt; script is?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; thanks&lt;br&gt;
&amp;gt; german&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I have a File Exchange submission that does this - you can&lt;br&gt;
copy &amp; modify the relevant code from there: DataMatrix -&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=16181&quot;&gt;http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=16181&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Yair Altman&lt;br&gt;
&lt;a href=&quot;http://ymasoftware.com&quot;&gt;http://ymasoftware.com&lt;/a&gt;</description>
    </item>
    <item>
      <pubDate>Fri, 17 Jul 2009 18:40:17 -0400</pubDate>
      <title>Re: fullcrosshair</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/157244#666169</link>
      <author>PopV Visitkul</author>
      <description>Did you manage to do it? I'm looking to do the same thing now.&lt;br&gt;
Regards</description>
    </item>
  </channel>
</rss>

