<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.m2osw.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Made to Order Software Corporation - coordinate</title>
 <link>http://www.m2osw.com/taxonomy/term/628/all</link>
 <description></description>
 <language>en</language>
<item>
 <title>SWF Zone Data (swf_zone_data)</title>
 <link>http://www.m2osw.com/swf_struct_zone_data</link>
 <description>&lt;fieldset class=&quot;fieldgroup group-swf-structure&quot;&gt;&lt;legend&gt;SWF Structure Info&lt;/legend&gt;&lt;div class=&quot;field field-type-number-integer field-field-swf-tag-version&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Tag Flash Version:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    8        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-swf-structure&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;SWF Structure:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    &lt;pre&gt;
struct swf_zone_data {
	short float		f_zone_position;
	short float		f_zone_size;
};&lt;/pre&gt;

        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;/fieldset&gt;
&lt;p&gt;The &lt;a href=&quot;/swf_struct_zone_array&quot;&gt;swf_zone_array&lt;/a&gt; includes   an array of zone data as described below:&lt;/p&gt;
&lt;p&gt;The &lt;i&gt;f_zone_position&lt;/i&gt; specifies the X or Y coordinate.   The array   can either include only horizontal, only vertical or both sets of   coordinates.&lt;/p&gt;
&lt;p&gt;The &lt;i&gt;f_zone_size&lt;/i&gt; specifies the Width or Height of the zone.&lt;/p&gt;

</description>
 <comments>http://www.m2osw.com/swf_struct_zone_data#comments</comments>
 <pubDate>Sun, 13 Dec 2009 07:18:53 +0000</pubDate>
 <dc:creator>Alexis Wilke</dc:creator>
 <guid isPermaLink="false">255 at http://www.m2osw.com</guid>
</item>
<item>
 <title>DefineFont</title>
 <link>http://www.m2osw.com/swf_tag_definefont</link>
 <description>&lt;fieldset class=&quot;fieldgroup group-swf-tag-info&quot;&gt;&lt;legend&gt;Tag Info&lt;/legend&gt;&lt;div class=&quot;field field-type-number-integer field-field-swf-tag-number&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Tag Number:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    10        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-content-taxonomy field-field-tag-swf-type&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Tag Type:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Define        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-number-integer field-field-swf-tag-version&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Tag Flash Version:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    1        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-swf-tag-def&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Tag Structure:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    &lt;pre&gt;
struct swf_definefont {
	&lt;a href=&quot;/swf_struct_tag&quot; class=&quot;swf_anchor&quot;&gt;swf_tag&lt;/a&gt;			f_tag;		&lt;font color=&quot;green&quot;&gt;/* 10 */&lt;/font&gt;
	unsigned short		f_font_id;
	&lt;font color=&quot;green&quot;&gt;/* there is always at least one glyph */&lt;/font&gt;
	f_font_glyphs_count = f_font_offsets[0] / 2;
	unsigned short		f_font_offsets[f_font_glyphs_count];
	&lt;a href=&quot;/swf_struct_shape&quot; class=&quot;swf_anchor&quot;&gt;swf_shape&lt;/a&gt;		f_font_shapes[f_font_glyphs_count];
};&lt;/pre&gt;        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;/fieldset&gt;
&lt;p&gt;It is common to use the &lt;b&gt;DefineFont&lt;/b&gt; tag in order to create an array of   shapes later re-used to draw strings of text on the screen. Note that the   definition of the shape within a font is limited since it can&#039;t include any   specific fill and/or line style. Also, each shape is assumed to be defined   within a 1024x1024 square. This square is called the &lt;em&gt;EM Square&lt;/em&gt;.   Fig 1. below shows you the &lt;em&gt;EM Square&lt;/em&gt; and how it is used. The   characters baseline can be placed anywhere within the &lt;em&gt;EM Square&lt;/em&gt; (it certainly   can be outside too if you wish?!?).

&lt;p&gt;&lt;a href=&quot;http://www.m2osw.com/swf_tag_definefont&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.m2osw.com/swf_tag_definefont#comments</comments>
 <category domain="http://www.m2osw.com/taxonomy/term/577">Define</category>
 <category domain="http://www.m2osw.com/taxonomy/term/648">DefineEditText</category>
 <category domain="http://www.m2osw.com/taxonomy/term/591">DefineFont</category>
 <category domain="http://www.m2osw.com/taxonomy/term/646">DefineFont2</category>
 <category domain="http://www.m2osw.com/taxonomy/term/595">DefineFontInfo</category>
 <category domain="http://www.m2osw.com/taxonomy/term/683">DefineFontName</category>
 <pubDate>Sun, 29 Nov 2009 10:29:02 +0000</pubDate>
 <dc:creator>Alexis Wilke</dc:creator>
 <guid isPermaLink="false">180 at http://www.m2osw.com</guid>
</item>
</channel>
</rss>


