<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 10:54:13 +0000</lastBuildDate>
    <item>
      <title>(JavaScript) React: Pass value to method from onClick - heathbo</title>
      <link>https://snipplr.com/view/282667/react-pass-value-to-method-from-onclick</link>
      <description>&lt;p&gt;How to pass a parameter into a method from an onClick method found in the render method.&#13;
&#13;
Majority of the times when you need to do this, your adding it through a loop.  In this case, call a function where the item in the loop will automatically be passed into the function.  This will prevent the component from re-rendering every-time  it's parent changes and none of it's props or state changed.&#13;
&#13;
** DO NOT DO **&#13;
Adding the code below marked with DON'T DO, will cause this component to re-render every-time it's parent changes, regardless of whether this components state or props changed.&lt;/p&gt;</description>
      <pubDate>Thu, 08 Dec 2016 09:05:59 UTC</pubDate>
      <guid>https://snipplr.com/view/282667/react-pass-value-to-method-from-onclick</guid>
    </item>
    <item>
      <title>(CSS) CSS: Float Center - heathbo</title>
      <link>https://snipplr.com/view/158210/css-float-center</link>
      <description>&lt;p&gt;.float_center is applied to the parent of the object you want to float center.&#13;
.float_center &gt; .child is applied to the object you want to float center.&lt;/p&gt;</description>
      <pubDate>Wed, 31 Aug 2016 04:32:02 UTC</pubDate>
      <guid>https://snipplr.com/view/158210/css-float-center</guid>
    </item>
    <item>
      <title>(JavaScript) React:  Get width, height, and coordinates of a react object - heathbo</title>
      <link>https://snipplr.com/view/145863/react--get-width-height-and-coordinates-of-a-react-object</link>
      <description>&lt;p&gt;Use ref with getDOMNode() to get the actual html.  &#13;
Using getBoundingClientRect() on the actual html will give you the width, height, etc.&#13;
&#13;
Below:&#13;
specs =  ClientRect {} bottom: 269 height: 18 left: 797.546875 right: 1062.609375 top: 251 width: 265.0625__proto__: ClientRect&#13;
&#13;
console.log(specs.bottom) will return 269&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jan 2016 06:28:14 UTC</pubDate>
      <guid>https://snipplr.com/view/145863/react--get-width-height-and-coordinates-of-a-react-object</guid>
    </item>
    <item>
      <title>(JavaScript) React: How to access returned HTML within a React Component - heathbo</title>
      <link>https://snipplr.com/view/145862/react-how-to-access-returned-html-within-a-react-component</link>
      <description>&lt;p&gt;Within a react component.  How to gain access to the HTML that was just rendered.&#13;
&#13;
Any returned html element that is tagged with a ref, can easily be accessed by it's ref after it's been rendered.  In the below case, use this.refs["domainModal"] to access the html.  This access is limited to within the scope of the instance of this react component.&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jan 2016 04:57:14 UTC</pubDate>
      <guid>https://snipplr.com/view/145862/react-how-to-access-returned-html-within-a-react-component</guid>
    </item>
    <item>
      <title>(JavaScript) React:  Adding multiple styles - heathbo</title>
      <link>https://snipplr.com/view/111931/react--adding-multiple-styles</link>
      <description>&lt;p&gt;Adding the width style to a table header that already has a headerCell style attached to it from a Mixin.&lt;/p&gt;</description>
      <pubDate>Sat, 10 Oct 2015 06:58:07 UTC</pubDate>
      <guid>https://snipplr.com/view/111931/react--adding-multiple-styles</guid>
    </item>
    <item>
      <title>(CSS) CSS: Media Query - heathbo</title>
      <link>https://snipplr.com/view/111647/css-media-query</link>
      <description>&lt;p&gt;This is code you put in a CSS file.  It queries the size of the screen using the parameters passed in.  If its true, it then applies the CSS&lt;/p&gt;</description>
      <pubDate>Sat, 03 Oct 2015 03:01:44 UTC</pubDate>
      <guid>https://snipplr.com/view/111647/css-media-query</guid>
    </item>
    <item>
      <title>(C#) C#: Check NULL, Return value shortcut - heathbo</title>
      <link>https://snipplr.com/view/88482/c-check-null-return-value-shortcut</link>
      <description>&lt;p&gt;If debit is null, return credit.  Otherwise return debit.&lt;/p&gt;</description>
      <pubDate>Tue, 27 Jan 2015 03:23:13 UTC</pubDate>
      <guid>https://snipplr.com/view/88482/c-check-null-return-value-shortcut</guid>
    </item>
    <item>
      <title>(SQL) SQL: Find all table and stored procedure dependencies - heathbo</title>
      <link>https://snipplr.com/view/84758/sql-find-all-table-and-stored-procedure-dependencies</link>
      <description>&lt;p&gt;In Microsoft SQL Server Management Studio, the below code will save a file to your computer that shows all of the functions and stored procedures linked to the bi_settlement table.&lt;/p&gt;</description>
      <pubDate>Tue, 23 Dec 2014 05:37:59 UTC</pubDate>
      <guid>https://snipplr.com/view/84758/sql-find-all-table-and-stored-procedure-dependencies</guid>
    </item>
    <item>
      <title>(C#) Moq: Verify that a method is not called - heathbo</title>
      <link>https://snipplr.com/view/80695/moq-verify-that-a-method-is-not-called</link>
      <description>&lt;p&gt;Verify that the Execute("ping") method is never called.&lt;/p&gt;</description>
      <pubDate>Sat, 01 Nov 2014 03:10:37 UTC</pubDate>
      <guid>https://snipplr.com/view/80695/moq-verify-that-a-method-is-not-called</guid>
    </item>
    <item>
      <title>(SQL) SQL: How To Search All Files For Specific Text - heathbo</title>
      <link>https://snipplr.com/view/80205/sql-how-to-search-all-files-for-specific-text</link>
      <description>&lt;p&gt;This query shows how to search all the files associated with a database for specific text.&lt;/p&gt;</description>
      <pubDate>Fri, 24 Oct 2014 03:05:03 UTC</pubDate>
      <guid>https://snipplr.com/view/80205/sql-how-to-search-all-files-for-specific-text</guid>
    </item>
    <item>
      <title>(SQL) SQL:  How To Display &amp; Compare 2 Query Results In The Same Window - heathbo</title>
      <link>https://snipplr.com/view/78615/sql--how-to-display--compare-2-query-results-in-the-same-window</link>
      <description>&lt;p&gt;This is how to run 2 separate queries and display them in the same window in order to compare the results.&#13;
&#13;
You need to add the union all in between the queries.  Then add a comma and null to the second query.&lt;/p&gt;</description>
      <pubDate>Tue, 30 Sep 2014 07:16:29 UTC</pubDate>
      <guid>https://snipplr.com/view/78615/sql--how-to-display--compare-2-query-results-in-the-same-window</guid>
    </item>
    <item>
      <title>(C#) Moq: Verify a Method is Called - heathbo</title>
      <link>https://snipplr.com/view/75212/moq-verify-a-method-is-called</link>
      <description>&lt;p&gt;The code to verify that a method was called.&#13;
The this.mockProvider.Verify verifies that GetBiAutoProcessConfigByKeys is called.&lt;/p&gt;</description>
      <pubDate>Wed, 16 Jul 2014 01:46:02 UTC</pubDate>
      <guid>https://snipplr.com/view/75212/moq-verify-a-method-is-called</guid>
    </item>
    <item>
      <title>(SQL) SQL: If / Else statement - heathbo</title>
      <link>https://snipplr.com/view/75089/sql-if--else-statement</link>
      <description>&lt;p&gt;Declare a new_bi_number variable&#13;
Set the new variable&#13;
If the new variable is null, set it to 1000&#13;
Select it to show it&#13;
If the new variable is not null, Select it to show it&lt;/p&gt;</description>
      <pubDate>Thu, 10 Jul 2014 23:53:04 UTC</pubDate>
      <guid>https://snipplr.com/view/75089/sql-if--else-statement</guid>
    </item>
    <item>
      <title>(C#) Moq: Creating an integration test with database access - heathbo</title>
      <link>https://snipplr.com/view/75077/moq-creating-an-integration-test-with-database-access</link>
      <description>&lt;p&gt;using (var scope = new TransactionScope())   makes sure that any changes to the database are temporary and only last as long as the test is running.&#13;
&#13;
The ExecuteScalar is used to get a value from the table.&#13;
&#13;
The ExecuteNonQuery is used to insert a record that the test will use.&#13;
&#13;
_target is the class that is accessing the database.&lt;/p&gt;</description>
      <pubDate>Thu, 10 Jul 2014 00:20:03 UTC</pubDate>
      <guid>https://snipplr.com/view/75077/moq-creating-an-integration-test-with-database-access</guid>
    </item>
    <item>
      <title>(C#) C#: How to suppress an error than keeps the solution from building - heathbo</title>
      <link>https://snipplr.com/view/75062/c-how-to-suppress-an-error-than-keeps-the-solution-from-building</link>
      <description>&lt;p&gt;Paste the code below, above the the method that's causing the error.&#13;
&#13;
Replace Microsoft.Performance with the type of error it is.&#13;
Replace CA1822 with the error number.&#13;
Look up what the error number is and replace MarkMemberAsStatic with its definition.&#13;
Replace the Justification string with the reason you're suppressing the error.&#13;
&#13;
&#13;
If your using FxCop:&#13;
Analyze your code using the FxCop utility.&#13;
In the Active window / tab, right click on the line that represents the error.&#13;
Select Copy As / SuppressMessage.&#13;
Paste above the method that's causing the error.  This process will give you the same code as the steps above.  It just easier.&lt;/p&gt;</description>
      <pubDate>Tue, 08 Jul 2014 05:35:11 UTC</pubDate>
      <guid>https://snipplr.com/view/75062/c-how-to-suppress-an-error-than-keeps-the-solution-from-building</guid>
    </item>
    <item>
      <title>(C#) Moq: test to see if exception is thrown - heathbo</title>
      <link>https://snipplr.com/view/75034/moq-test-to-see-if-exception-is-thrown</link>
      <description>&lt;p&gt;The ExpectedException section under [TestMethod] is where you tell Moq what type of exception your listening for.  If that exception is thrown, then this test will pass and it will stop running all the code under the target.CalculateProvisionalPrice.&#13;
&#13;
In case the exception isn't thrown, the Assert.Fail will throw an exception alerting you that the ArgumentNullException wasn't thrown.&lt;/p&gt;</description>
      <pubDate>Fri, 04 Jul 2014 00:01:58 UTC</pubDate>
      <guid>https://snipplr.com/view/75034/moq-test-to-see-if-exception-is-thrown</guid>
    </item>
    <item>
      <title>(C#) Moq: check to see the value of passed in parameters. - heathbo</title>
      <link>https://snipplr.com/view/75033/moq-check-to-see-the-value-of-passed-in-parameters</link>
      <description>&lt;p&gt;Example 1: I'm verifying that the list that is passed in has 3 attachments.  SendMail is run later in the SendEmail method.&#13;
&#13;
Example 2: I'm verifying that the object that is passed into the method has the appropriate values.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Jul 2014 23:51:01 UTC</pubDate>
      <guid>https://snipplr.com/view/75033/moq-check-to-see-the-value-of-passed-in-parameters</guid>
    </item>
    <item>
      <title>(SQL) SQL script to Filter out records with values you don't want - heathbo</title>
      <link>https://snipplr.com/view/73529/sql-script-to-filter-out-records-with-values-you-dont-want</link>
      <description>&lt;p&gt;This query will filter out records with the Shipped value&lt;/p&gt;</description>
      <pubDate>Thu, 30 Jan 2014 02:31:33 UTC</pubDate>
      <guid>https://snipplr.com/view/73529/sql-script-to-filter-out-records-with-values-you-dont-want</guid>
    </item>
    <item>
      <title>(C#) Set and return data from Oracle using C# - heathbo</title>
      <link>https://snipplr.com/view/73524/set-and-return-data-from-oracle-using-c</link>
      <description>&lt;p&gt;How to set add a record in an Oracle table and return a value in the same query using C#.&#13;
&#13;
Returning ID INTO : OUTPUT_ID is referring to returning the value found in the ID field in the SQL table to the OUTPUT_ID parameter set in the AddStatusCode method.&lt;/p&gt;</description>
      <pubDate>Wed, 29 Jan 2014 08:29:48 UTC</pubDate>
      <guid>https://snipplr.com/view/73524/set-and-return-data-from-oracle-using-c</guid>
    </item>
    <item>
      <title>(C#) Lambda and Linq Statements to pull all matching values from List - heathbo</title>
      <link>https://snipplr.com/view/72895/lambda-and-linq-statements-to-pull-all-matching-values-from-list</link>
      <description>&lt;p&gt;These are statements to pull all the matching values (123) from the List.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Nov 2013 08:36:09 UTC</pubDate>
      <guid>https://snipplr.com/view/72895/lambda-and-linq-statements-to-pull-all-matching-values-from-list</guid>
    </item>
    <item>
      <title>(C#) WPF Custom Styled Button - heathbo</title>
      <link>https://snipplr.com/view/72483/wpf-custom-styled-button</link>
      <description>&lt;p&gt;This code gives you the ability to stylize the buttons background, and borders on events.&lt;/p&gt;</description>
      <pubDate>Sat, 28 Sep 2013 03:20:15 UTC</pubDate>
      <guid>https://snipplr.com/view/72483/wpf-custom-styled-button</guid>
    </item>
    <item>
      <title>(C#) WPF open window - heathbo</title>
      <link>https://snipplr.com/view/72403/wpf-open-window</link>
      <description>&lt;p&gt;Open a window that's already been created.&#13;
&#13;
You first have to create a new window.xaml by right clicking on project / add / Window.  In this instance we will call it WindowNew2.&lt;/p&gt;</description>
      <pubDate>Fri, 20 Sep 2013 03:46:44 UTC</pubDate>
      <guid>https://snipplr.com/view/72403/wpf-open-window</guid>
    </item>
    <item>
      <title>(C#) WPF menu customization - heathbo</title>
      <link>https://snipplr.com/view/72402/wpf-menu-customization</link>
      <description>&lt;p&gt;Add this code inside of the &lt;Grid&gt; tags in the code behind.&#13;
&#13;
Each Header is what you see.  Command is the method that will be run when this menu item is selected.  Image Source is an image that shows to the left of the word.&lt;/p&gt;</description>
      <pubDate>Fri, 20 Sep 2013 03:38:46 UTC</pubDate>
      <guid>https://snipplr.com/view/72402/wpf-menu-customization</guid>
    </item>
    <item>
      <title>(C#) Entity Framework 1 to 1 relationship Code First Method - heathbo</title>
      <link>https://snipplr.com/view/72333/entity-framework-1-to-1-relationship-code-first-method</link>
      <description>&lt;p&gt;How to create a one to one relationship using the Entity Framework and the Code First Method.&#13;
&#13;
In this example, were creating a 1 to 1 relationship with the Bakery class and the BakeryRecipe class.&#13;
&#13;
Make sure each class has a link to the other class through the virtual instance.&#13;
Add the context code to the Context file (BakeryContext.cs in this case).&#13;
&#13;
The context code below is making the Primary key in the BakeryRecipe class, and the Foreign key in the Bakery class.&lt;/p&gt;</description>
      <pubDate>Wed, 11 Sep 2013 06:07:36 UTC</pubDate>
      <guid>https://snipplr.com/view/72333/entity-framework-1-to-1-relationship-code-first-method</guid>
    </item>
    <item>
      <title>(C#) Delegates, Func, and Action - heathbo</title>
      <link>https://snipplr.com/view/72228/delegates-func-and-action</link>
      <description>&lt;p&gt;A delegate is a reference to any method that has the same signature.  The benefit of this is that the delegate can switch to another method with the same signature, without changing itself.&#13;
&#13;
Func&lt;T&gt; is a way to simplify the delegate creation and use.&#13;
&#13;
Action&lt;T&gt; is a Func&lt;T&gt; without the return type.&lt;/p&gt;</description>
      <pubDate>Thu, 29 Aug 2013 02:43:05 UTC</pubDate>
      <guid>https://snipplr.com/view/72228/delegates-func-and-action</guid>
    </item>
    <item>
      <title>(C#) Getting access to an html tag from the aspx.cs file - heathbo</title>
      <link>https://snipplr.com/view/71436/getting-access-to-an-html-tag-from-the-aspxcs-file</link>
      <description>&lt;p&gt;by adding the runat="server" text to the p tag, we allow the .cs file to have access to it.&lt;/p&gt;</description>
      <pubDate>Fri, 07 Jun 2013 05:23:39 UTC</pubDate>
      <guid>https://snipplr.com/view/71436/getting-access-to-an-html-tag-from-the-aspxcs-file</guid>
    </item>
    <item>
      <title>(JavaScript) JavaScript GeoLocation - heathbo</title>
      <link>https://snipplr.com/view/70799/javascript-geolocation</link>
      <description>&lt;p&gt;Html and JavaScript code to see the longitude and latitude of the viewing browser.&lt;/p&gt;</description>
      <pubDate>Tue, 16 Apr 2013 07:46:09 UTC</pubDate>
      <guid>https://snipplr.com/view/70799/javascript-geolocation</guid>
    </item>
    <item>
      <title>(ActionScript 3) Pass in an varying number of parameters. - heathbo</title>
      <link>https://snipplr.com/view/69597/pass-in-an-varying-number-of-parameters</link>
      <description>&lt;p&gt;This allows a varying amount of parameters to be passed into a function.  Which is helpful if the amount of parameters passed in could change.&#13;
The trace in this example returns test3.&lt;/p&gt;</description>
      <pubDate>Wed, 23 Jan 2013 18:18:22 UTC</pubDate>
      <guid>https://snipplr.com/view/69597/pass-in-an-varying-number-of-parameters</guid>
    </item>
    <item>
      <title>(ActionScript 3) Open external files - heathbo</title>
      <link>https://snipplr.com/view/59426/open-external-files</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 05 Oct 2011 07:36:39 UTC</pubDate>
      <guid>https://snipplr.com/view/59426/open-external-files</guid>
    </item>
    <item>
      <title>(ActionScript 3) Load an external swf, use it and gain access to its functions and features. - heathbo</title>
      <link>https://snipplr.com/view/56014/load-an-external-swf-use-it-and-gain-access-to-its-functions-and-features</link>
      <description>&lt;p&gt;How to load an external swf.  Once its loaded, access it and use its functions and variables.&lt;/p&gt;</description>
      <pubDate>Sat, 02 Jul 2011 00:00:44 UTC</pubDate>
      <guid>https://snipplr.com/view/56014/load-an-external-swf-use-it-and-gain-access-to-its-functions-and-features</guid>
    </item>
    <item>
      <title>(ActionScript 3) Load a new html page - heathbo</title>
      <link>https://snipplr.com/view/55433/load-a-new-html-page</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 18 Jun 2011 02:39:42 UTC</pubDate>
      <guid>https://snipplr.com/view/55433/load-a-new-html-page</guid>
    </item>
    <item>
      <title>(ActionScript 3) Find and Change text in a variable or textfield - heathbo</title>
      <link>https://snipplr.com/view/47579/find-and-change-text-in-a-variable-or-textfield</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 20 Jan 2011 09:51:49 UTC</pubDate>
      <guid>https://snipplr.com/view/47579/find-and-change-text-in-a-variable-or-textfield</guid>
    </item>
    <item>
      <title>(ActionScript 3) Embedding External Fonts explained: method 1 - heathbo</title>
      <link>https://snipplr.com/view/41923/embedding-external-fonts-explained-method-1</link>
      <description>&lt;p&gt;I\'m using Flash CS4.\r\n\r\n1.First thing you need to do is turn your font into a class that can be loaded.\r\n  When you create your class pay special attention to the fontName you give it.  You will need that later.  NOTE: only TrueType fonts will work.\r\n2.Now that your font is a class its accessible to the rest of your code.  The difference is, you access it by the fontName you assigned it earlier.\r\n3. WARNING: In-order for your font to show up on the stage, your font has to be embedded in the textField:\r\n4. WARNING: When setting the TextFormat, you MUST use defaultTextFormat.  setTextFormat() will not work.\r\n5. SIDE NOTE: If your using an AssetMangement class. (ie. a once stop shop class that loads everything). You provide access to this class and its loaded fonts by creating a variable that is equal to the font in the AssetManagement class.  See the example below.&lt;/p&gt;</description>
      <pubDate>Sat, 09 Oct 2010 06:37:25 UTC</pubDate>
      <guid>https://snipplr.com/view/41923/embedding-external-fonts-explained-method-1</guid>
    </item>
    <item>
      <title>(ActionScript 3) Dynamic text And Scrollbar - heathbo</title>
      <link>https://snipplr.com/view/41732/dynamic-text-and-scrollbar</link>
      <description>&lt;p&gt;If your using dynamic text and  AS3's built in scroll bar.  Sometimes it won't activate, ie. no scrollbar.  You must update the scrollbar after the text has been loaded.  Sometimes you only want the scrollbar to show up when needed and hide when not.&lt;/p&gt;</description>
      <pubDate>Thu, 07 Oct 2010 11:39:25 UTC</pubDate>
      <guid>https://snipplr.com/view/41732/dynamic-text-and-scrollbar</guid>
    </item>
    <item>
      <title>(ActionScript 3) XML, string, and the missing new line  issue - heathbo</title>
      <link>https://snipplr.com/view/41718/xml-string-and-the-missing-new-line--issue</link>
      <description>&lt;p&gt;For some reason if you load in text from an xml file and the text has a newline character(\n or \r), the newline character doesn't create a new line but shows up in the text instead.&lt;/p&gt;</description>
      <pubDate>Thu, 07 Oct 2010 05:35:28 UTC</pubDate>
      <guid>https://snipplr.com/view/41718/xml-string-and-the-missing-new-line--issue</guid>
    </item>
    <item>
      <title>(ActionScript 3) Class Path Structure - heathbo</title>
      <link>https://snipplr.com/view/41586/class-path-structure</link>
      <description>&lt;p&gt;What should the class path structures be.&lt;/p&gt;</description>
      <pubDate>Wed, 06 Oct 2010 01:59:43 UTC</pubDate>
      <guid>https://snipplr.com/view/41586/class-path-structure</guid>
    </item>
    <item>
      <title>(ActionScript 3) Parse XML files - heathbo</title>
      <link>https://snipplr.com/view/41584/parse-xml-files</link>
      <description>&lt;p&gt;How to drill down to the content you need in an XML file.&lt;/p&gt;</description>
      <pubDate>Wed, 06 Oct 2010 01:56:55 UTC</pubDate>
      <guid>https://snipplr.com/view/41584/parse-xml-files</guid>
    </item>
    <item>
      <title>(ActionScript 3) Load content from library onto stage - heathbo</title>
      <link>https://snipplr.com/view/41583/load-content-from-library-onto-stage</link>
      <description>&lt;p&gt;Add content to stage from Library through code and use the content.&lt;/p&gt;</description>
      <pubDate>Wed, 06 Oct 2010 01:55:09 UTC</pubDate>
      <guid>https://snipplr.com/view/41583/load-content-from-library-onto-stage</guid>
    </item>
    <item>
      <title>(ActionScript 3) How to set, start, and use a Timer - heathbo</title>
      <link>https://snipplr.com/view/41554/how-to-set-start-and-use-a-timer</link>
      <description>&lt;p&gt;delay is in milliseconds.  repeat must be set to at least 1.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:46:04 UTC</pubDate>
      <guid>https://snipplr.com/view/41554/how-to-set-start-and-use-a-timer</guid>
    </item>
    <item>
      <title>(ActionScript 3) Text and Field Formatting - heathbo</title>
      <link>https://snipplr.com/view/41553/text-and-field-formatting</link>
      <description>&lt;p&gt;myTextField.defaultTextFormat = format;  myTextField.setTextFormat(format); Both can be used.  The difference is, setTextFormat will only change the text currently in the text field.  Any new text inserted into the text field will revert back to its default.  defaultTextFormat changes the default which will change the format for the current text and all future text.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:43:10 UTC</pubDate>
      <guid>https://snipplr.com/view/41553/text-and-field-formatting</guid>
    </item>
    <item>
      <title>(ActionScript 3) How to Start and Stop Sounds - heathbo</title>
      <link>https://snipplr.com/view/41552/how-to-start-and-stop-sounds</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:31:45 UTC</pubDate>
      <guid>https://snipplr.com/view/41552/how-to-start-and-stop-sounds</guid>
    </item>
    <item>
      <title>(ActionScript 3) How to access parent variables and functions - heathbo</title>
      <link>https://snipplr.com/view/41549/how-to-access-parent-variables-and-functions</link>
      <description>&lt;p&gt;(this.parent) can be altered depending on how far back you want to go. (this.parent.parent.parent) for example.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:20:13 UTC</pubDate>
      <guid>https://snipplr.com/view/41549/how-to-access-parent-variables-and-functions</guid>
    </item>
    <item>
      <title>(ActionScript 3) How to create a Loader - heathbo</title>
      <link>https://snipplr.com/view/41547/how-to-create-a-loader</link>
      <description>&lt;p&gt;add every item in the library to the frame that comes after this code.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:17:15 UTC</pubDate>
      <guid>https://snipplr.com/view/41547/how-to-create-a-loader</guid>
    </item>
    <item>
      <title>(ActionScript 3) Import an XML file and use the data. - heathbo</title>
      <link>https://snipplr.com/view/41546/import-an-xml-file-and-use-the-data</link>
      <description>&lt;p&gt;///////////////////////////////////////////////////////////////////////////////////////////&#13;
XML USED IN EXAMPLE:&#13;
&#13;
&lt;question&gt;&#13;
&lt;description&gt;&#13;
This is the copy that goes in the description text&#13;
&lt;/description&gt; &#13;
&lt;/question&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:15:40 UTC</pubDate>
      <guid>https://snipplr.com/view/41546/import-an-xml-file-and-use-the-data</guid>
    </item>
    <item>
      <title>(ActionScript 3) Disable Children Click Through - heathbo</title>
      <link>https://snipplr.com/view/41542/disable-children-click-through</link>
      <description>&lt;p&gt;b1 is the name of a button.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:05:27 UTC</pubDate>
      <guid>https://snipplr.com/view/41542/disable-children-click-through</guid>
    </item>
    <item>
      <title>(ActionScript 3) How to detect if a number is even - heathbo</title>
      <link>https://snipplr.com/view/41541/how-to-detect-if-a-number-is-even</link>
      <description>&lt;p&gt;The Modula symbol % will give you the difference between the first and last numbers.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:03:50 UTC</pubDate>
      <guid>https://snipplr.com/view/41541/how-to-detect-if-a-number-is-even</guid>
    </item>
    <item>
      <title>(ActionScript 3) Move Children in the display list to different layers - heathbo</title>
      <link>https://snipplr.com/view/41540/move-children-in-the-display-list-to-different-layers</link>
      <description>&lt;p&gt;Paper and redPhone are names of items on the stage.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:02:15 UTC</pubDate>
      <guid>https://snipplr.com/view/41540/move-children-in-the-display-list-to-different-layers</guid>
    </item>
  </channel>
</rss>
