<?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>Custom Software and Web Development</title>
	<atom:link href="http://mfsotx.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://mfsotx.org</link>
	<description>Useful Information Source of Events in IT Sphere</description>
	<lastBuildDate>Thu, 01 Dec 2011 11:03:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Parse XML with asp</title>
		<link>http://mfsotx.org/parse-xml-with-asp/</link>
		<comments>http://mfsotx.org/parse-xml-with-asp/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 15:32:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://mfsotx.org/parse-xml-with-asp/</guid>
		<description><![CDATA[I am using asp and sending data to my payment gateway for processing. When processed it returns xml back to me that I use. How do I get the values from this response? Response would be returned in this format: &#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&#62; &#60;Result&#62; &#60;TransTime&#62;Mon Nov 08 20:21:06 PST 2004&#60;/TransTime&#62; &#60;OrderID&#62;2004110820210605147&#60;/OrderID&#62; &#60;Approved&#62;APPROVED&#60;/Approved&#62; &#60;ReturnCode&#62;Y:TEST:TESTTRANS:M:X:YYY&#60;/ReturnCode&#62; &#60;ErrMsg&#62;&#60;/ErrMsg&#62; &#60;TaxTotal&#62;5.00&#60;/TaxTotal&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>I am using asp and sending data to my payment gateway for processing. When processed it returns xml back to me that I use. How do I get the values from this response? Response would be returned in this format: </p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;<br />
&lt;Result&gt;<br />
&lt;TransTime&gt;Mon Nov 08 20:21:06 PST 2004&lt;/TransTime&gt;<br />
&lt;OrderID&gt;2004110820210605147&lt;/OrderID&gt;<br />
&lt;Approved&gt;APPROVED&lt;/Approved&gt;<br />
&lt;ReturnCode&gt;Y:TEST:TESTTRANS:M:X:YYY&lt;/ReturnCode&gt;<br />
&lt;ErrMsg&gt;&lt;/ErrMsg&gt;<br />
&lt;TaxTotal&gt;5.00&lt;/TaxTotal&gt;<br />
&lt;ShipTotal&gt;15.00&lt;/ShipTotal&gt;<br />
&lt;SubTotal&gt;55.00&lt;/SubTotal&gt;<br />
&lt;FullTotal&gt;75.00&lt;/FullTotal&gt;<br />
&lt;PaymentType&gt;CC&lt;/PaymentType&gt;<br />
&lt;CardNumber&gt;411111&#8230;1111&lt;/CardNumber&gt;<br />
&lt;CardExpMonth&gt;05&lt;/CardExpMonth&gt;<br />
&lt;CardExpYear&gt;07&lt;/CardExpYear&gt;<br />
&lt;TransRefNumber&gt;1bd0082c392b7c5b&lt;/TransRefNumber&gt;<br />
&lt;CardIDResult&gt;M&lt;/CardIDResult&gt;<br />
&lt;AVSResult&gt;X&lt;/AVSResult&gt;<br />
&lt;CardAuthNumber&gt;TEST&lt;/CardAuthNumber&gt;<br />
&lt;CardRefNumber&gt;TESTTRANS&lt;/CardRefNumber&gt;<br />
&lt;CardType&gt;VISA&lt;/CardType&gt;<br />
&lt;IPResult&gt;YYY&lt;/IPResult&gt;<br />
&lt;IPCountry&gt;CA&lt;/IPCountry&gt;<br />
&lt;IPRegion&gt;Ontario&lt;/IPRegion&gt;<br />
&lt;IPCity&gt;Toronto&lt;/IPCity&gt;<br />
&lt;/Result&gt;</p></blockquote>
<p>This is the code I am using to test with for now: </p>
<blockquote><p>set xml = Server.CreateObject(&#8220;Microsoft.XMLHTTP&#8221;)<br />
set xmlDoc = Server.CreateObject(&#8220;Microsoft.XMLDOM&#8221;) </p>
<p>xml.open &#8220;POST&#8221;, &#8220;##HOST ADDRESS##&#8221;, false<br />
xml.setRequestHeader &#8220;Content-Type&#8221;, &#8220;application/x-www-form-urlencoded&#8221;<br />
xml.send (orderString)<br />
xmlResponseStr = xml.responseText<br />
Response.Write(&#8220;&lt;br /&gt;&lt;br /&gt;&#8221;)<br />
Response.write(xmlResponseStr) </p>
<p>&#8216; Parse Returned XML<br />
set xmlDoc = Server.CreateObject(&#8220;Microsoft.XMLDOM&#8221;)<br />
xmlDoc.async = True<br />
xmlDoc.Load(xml.responseXML) </p>
<p>Set itemList = xmlDoc.getElementsByTagName(&#8220;*&#8221;)</p>
<p>Dim xmlApproved</p>
<p>Response.Write(&#8220;&lt;br /&gt;&lt;br /&gt;&#8221;) </p>
<p>For Each item In itemList<br />
Response.Write(&#8220;IN HERE&#8221;)<br />
For each child in item.childNodes<br />
Response.Write(&#8220;IN DEEPER&#8221;)<br />
Response.Write(child.nodeName)<br />
Response.Write(&#8220;&lt;br /&gt;&lt;br /&gt;&#8221;)<br />
Next<br />
Next </p>
<p>Set xmlDoc = Nothing<br />
Set itemList = Nothing<br />
Set xml = nothing<br />
%&gt; </p></blockquote>
<p>As you may see this is the first time I have ever attempted something like this.   <!-- /post -->  </p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/parse-xml-with-asp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Number One Dealer for MediSoft and Lytec: Medical Billing Software</title>
		<link>http://mfsotx.org/number-one-dealer-for-medisoft-and-lytec-medical-billing-software/</link>
		<comments>http://mfsotx.org/number-one-dealer-for-medisoft-and-lytec-medical-billing-software/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 10:59:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://mfsotx.org/number-one-dealer-for-medisoft-and-lytec-medical-billing-software/</guid>
		<description><![CDATA[Complete Medical Billing is your number one source for medical billing software from MediSoft and Lytec. You can trust their friendly staff to help you with your needs just as they have helped hundreds of doctor offices and medical billing services with their medical billing software needs. This includes full versions of MediSoft or Lytec [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="EN-US">Complete Medical Billing is your number one source for medical billing software from MediSoft and Lytec.<span> </span>You can trust their friendly staff to help you with your needs just as they have helped hundreds of doctor offices and medical billing services with their medical billing software needs.<span> </span>This includes full versions of MediSoft or Lytec Software along with upgrades for both.<span> </span>Plus they can help you with MediSoft and Lytec Software support and training.<span> </span>They purchase from the publishers directly so they can offer you a good value on any package you are interested in.<span> </span>Their goal is a satisfied customer with every sale.</span></p>
<p class="MsoNormal"><span lang="EN-US">Satisfied Customer: Medical Billing Software</span></p>
<p class="MsoNormal"><span lang="EN-US">The number one dealer of MediSoft and Lytec software is Complete Medical Billing Software Store.<span> </span>Because of this they can provide their customers with the highest level of service and expertise with every medical billing software sale.<span> </span>With this high level of service and expertise they can assure you a satisfying experience as a medical billing software customer.<span> </span>Should you find a better value on any of their products just let them know.<span> </span>They want to guarantee your satisfaction with the purchase of that product.<span> </span>At Complete Medical Billing Software Store they are not happy until their customers are happy.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/number-one-dealer-for-medisoft-and-lytec-medical-billing-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Tips on a Slideshow in Flash</title>
		<link>http://mfsotx.org/embedding-a-flash-slideshow/</link>
		<comments>http://mfsotx.org/embedding-a-flash-slideshow/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 11:12:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphics and Design]]></category>

		<guid isPermaLink="false">http://mfsotx.org/?p=6</guid>
		<description><![CDATA[I am trying to embed a flash slide show in XHTML strict. This is the code I am using and that is not working: &#60;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;/slideshows/newlyweds.swf&#8221; width=&#8221;500&#8243; height=&#8221;500&#8243;&#62; &#60;param name=&#8221;movie&#8221; value=&#8221;/slideshows/newlyweds.swf&#8221; /&#62; &#60;/object&#62; I first used: &#60;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;newlyweds.swf&#8221; width=&#8221;500&#8243; height=&#8221;500&#8243;&#62; &#60;param name=&#8221;movie&#8221; value=&#8221;newlyweds.swf&#8221; /&#62; &#60;/object&#62; This code works fine, the flash file and [...]]]></description>
			<content:encoded><![CDATA[<p>I am trying to embed a flash slide show in XHTML strict.</p>
<p>This is the code I am using and that is not working:</p>
<blockquote><p>&lt;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;/slideshows/newlyweds.swf&#8221; width=&#8221;500&#8243; height=&#8221;500&#8243;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;/slideshows/newlyweds.swf&#8221; /&gt;<br />
&lt;/object&gt;</p>
<p>I first used:<br />
&lt;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;newlyweds.swf&#8221; width=&#8221;500&#8243; height=&#8221;500&#8243;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;newlyweds.swf&#8221; /&gt;<br />
&lt;/object&gt;</p></blockquote>
<p>This code works fine, the flash file and images are in the same folder as the html file.<br />
However, I have many flash slide shows for many pages so I am trying to put them in sub-folders (slideshows/newlyweds.swf). When I do that the flash file is not showing up on my html page. I tried linking them directly, http://www.example.com/slideshows/newlyweds.swf but that didn&#8217;t work either.</p>
<p>So this is how it goes <img src='http://mfsotx.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <span id="more-10"></span></p>
<p>PS:</p>
<p>Have a look at that video from youtube:</p>
<p><a href="http://youtube.com/watch?v=JFpzF9RniRg"><img title="Slideshow" src="http://img405.imageshack.us/img405/3129/youtubefk8.jpg" alt="Slideshow" width="300" height="265" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/embedding-a-flash-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everybody’s Doing It: web survey</title>
		<link>http://mfsotx.org/everybody%e2%80%99s-doing-it-web-survey/</link>
		<comments>http://mfsotx.org/everybody%e2%80%99s-doing-it-web-survey/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 11:05:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General articles and news]]></category>

		<guid isPermaLink="false">http://mfsotx.org/everybody%e2%80%99s-doing-it-web-survey/</guid>
		<description><![CDATA[From the smallest companies to the largest organizations, everyone is doing it. And just what are we talking about? Online surveys. Some people have been skeptical, but web survey has proven itself as a valid tool and has gained acceptance in the business world. Customers are often the “target” of these surveys, because a business [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial;" lang="EN-US">From the smallest companies to the largest organizations, everyone is doing it. And just what are we talking about? Online surveys. Some people have been skeptical, but web survey has proven itself as a valid tool and has gained acceptance in the business world. Customers are often the “target” of these surveys, because a business without satisfied customers isn’t much of a business. Web surveys are a means of measuring their satisfaction and loyalty. A web survey can be used as a way to evaluate online service and the success of advertising. Find out what a web survey company can do for you. </span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial;" lang="EN-US">Think Big: web survey</span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial;" lang="EN-US">Sometimes being little gets a bad rap. You’re not taken seriously, or you are overlooked and ignored. Being small, however, does not imply thinking small. If you are an owner or administrator of a small company, you want the same programs and advantages that are available to the big corporations. And why not? By having the same up-to-date solutions available to you, your company is sure to prosper. It’s time to take action. Contact a web survey company that knows your needs and can provide an economical, powerful web survey solution that can grow with your company. Don’t ever stop thinking big.</span></p>
<p class="MsoNormal"><strong><span lang="EN-US"> </span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/everybody%e2%80%99s-doing-it-web-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Do You Need Medisoft Software?</title>
		<link>http://mfsotx.org/why-do-you-need-medisoft-software/</link>
		<comments>http://mfsotx.org/why-do-you-need-medisoft-software/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 10:56:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://mfsotx.org/why-do-you-need-medisoft-software/</guid>
		<description><![CDATA[Well, the answer to that is really simple: you want your office to be organized and your job to be a little easier right? All you need to do is purchase the Medisoft Software from Complete Medical Billing. This software has some of the best features available today like electronic medical records which can cut [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size: 10pt" lang="EN-US">Well, the answer to that is really simple: you want your office to be organized and your job to be a little easier right? All you need to do is purchase the Medisoft Software from Complete Medical Billing. This software has some of the best features available today like electronic medical records which can cut down on paper waste and appointment scheduling as well as electronic claims submission. The truth is that every medical office could benefit from using Medisoft Software. Try is and see what it has to offer, you’ll see an immediate difference and wonder why you waited so long.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size: 10pt" lang="EN-US"><o:p> </o:p>Do You Really Need Medical Billing Software?</span></p>
<p class="MsoNormal"><span style="font-size: 10pt" lang="EN-US">I guess the truth is that you probably don’t have to purchase any medical billing software, but then the question becomes, why not? The only thing you have to lose from purchasing medical billing software is a lot of extra work, lost time and stress. The software that Complete Medical Billing offers is so great that you will save tons of time and be able to get twice the amount of work done as opposed to not using their software.<span>  </span>Medical Billing can help you choose which type of software would work best for your office and even help get it set up.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial" lang="EN-US"><o:p> </o:p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/why-do-you-need-medisoft-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless Digital Picture Frame</title>
		<link>http://mfsotx.org/wireless-digital-picture-frame/</link>
		<comments>http://mfsotx.org/wireless-digital-picture-frame/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 13:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Digital devices]]></category>

		<guid isPermaLink="false">http://mfsotx.org/wireless-digital-picture-frame/</guid>
		<description><![CDATA[When technology and fashion are together they create a new experience. Wireless digital picture frames are one of the new creations. Wireless digital picture frames are very good and they work well. You can send the photos to the frame through email. It appears as a good product. As appears form the name it is [...]]]></description>
			<content:encoded><![CDATA[<p>When technology and fashion are together they create a new experience. Wireless digital picture frames are one of the new creations. Wireless digital picture frames are very good and they work well. You can send the photos to the frame through email. It appears as a good product. As appears form the name it is wireless and you don¡¯t have to glue yourself with the desktop PC. The Wireless Digital Picture Framed gives you multimedia window with a comfortable setting. You can use anywhere.  The name of Kodak is very well known about the wireless digital picture frames.</p>
<p>KODAK is providing life time warranty on all their products which included labor and parts of the product. Kodak 8 inch wireless digital picture frame has built-in Wifi for the picture updating over the internet.</p>
<p>Intouch IT7150 wireless picture frame gives you sharing photos and viewing photos with more content as a portable multimedia player with the feature of audio and video playback and WEB TV and live Internet radio.</p>
<p><span id="more-34"></span></p>
<p>There are many models of wireless digital photo frames like MF-801 Ultra &#8211; Thin, MF-1041 Ultra Thin, Nu-TOUCH ¨C NT ¨C 700 inch touch panel frame. Latest wireless digital picture frame are MF-8115 Premium 15 inch and MF-8104 Premium ¨C 10.4 inch wireless digital frame. They can use the feature of Window XP or Window Vista TM for further integrating the digital picture frames.</p>
<p>The digital picture frames are services oriented device with high end segment of the electronic market. They read the memory cards of the photo / USB Keys.</p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/wireless-digital-picture-frame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exporting Appointments: Scheduling Software</title>
		<link>http://mfsotx.org/exporting-appointments-scheduling-software/</link>
		<comments>http://mfsotx.org/exporting-appointments-scheduling-software/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 10:19:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://mfsotx.org/exporting-appointments-scheduling-software/</guid>
		<description><![CDATA[As staff members set up or change appointments in the scheduling software, they will have the option of exporting this information into their personal calendar on their computer.  As this is completed, the staff member will then receive an e-mail with their calendar attached for later viewing.  By clicking on the email, they are able [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">As staff members set up or change appointments in the scheduling software, they will have the option of exporting this information into their personal calendar on their computer.  As this is completed, the staff member will then receive an e-mail with their calendar attached for later viewing.  By clicking on the email, they are able to add it to their calendar.  Customers on the other hand may export their schedule of appointments to their own calendar as they receive confirmation e-mail.  The appointment scheduling software allows at any time both the client and staff member can log in to view current schedules and appointments.  Clients can print out or export their schedule of appointments at any time. </span></p>
<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">Appointments Per Time Slot: Scheduling Software</span><span style="font-size: 10pt;" lang="EN-US"> </span></p>
<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">Depending on what type of company you have, you may schedule anywhere from one to several patients at one time.  With our scheduling software you have the capability of scheduling and managing multiple patients in one time slot. A doctor may see several patients at one time so he or she would need the flexibility to schedule several patients in one time slot.  The scheduling software also allows you to customize your appointment screen with tabs that list items such as reservations, customers, tours etc.  For each block of time you can for example, name the task to be performed as it pertains to your business</span></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/exporting-appointments-scheduling-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to layout 6 images in two rows if you want to use XHTML and CSS?</title>
		<link>http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/</link>
		<comments>http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:00:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/</guid>
		<description><![CDATA[I am a bit of a self taught newbie. I have a website that layouts out some images with a brief description under them as in a product catalogue. I would like to have six images 3 on each of two rows. I have done it with a table in HTML. But I would like [...]]]></description>
			<content:encoded><![CDATA[<p>I am a bit of a self taught newbie. I have a website that layouts out some images with a brief description under them as in a product catalogue. I would like to have six images 3 on each of two rows. I have done it with a table in HTML. But I would like to redo the page in strict XHTML and CSS.</p>
<p>Can anyone give me a quick guide as to how to do this or point me to a good tutorial on this (I have not been able to find one)? Im planning to sort it out something like that:</p>
<p>div.clearer {<br />
clear: both;<br />
height: 0px;<br />
}</p>
<p>Ok, I&#8217;m not completely disputing the table idea but&#8230; this looks more like a list to me. A list of images (and descriptions), a list of products&#8230; a sequential list of items one after the other. Why is this tabular data? What is the relationship between rows and columns?<br />
A list can be styled to have 3 columns and 2 (or however many) rows in a similar way to koan&#8217;s method&#8230; floating the LI&#8217;s and setting width:33%. Or you could fix the width of your LI&#8217;s (presumably your images are fixed width) and allow the list to flow &#8211; showing 3 columns at your optimum resolution/viewport size but perhaps more or less depending on the size of the users viewing device &#8211; depending how flexible your layout is. You can&#8217;t do this with a table. A list is also easier to markup and output dynamically from a serverside script.</p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iframe content depending on menu choice.</title>
		<link>http://mfsotx.org/iframe-content-depending-on-menu-choice/</link>
		<comments>http://mfsotx.org/iframe-content-depending-on-menu-choice/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 16:32:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://mfsotx.org/iframe-content-depending-on-menu-choice/</guid>
		<description><![CDATA[Hey all, I am struggling to develop my website based on what I can find on the web without any formal training. I have succeeded in creating a two level menu where the 2nd level is displayed (expanded in accordeo fashion) when moving the cursor over the 1st level button thanks to a javascript found [...]]]></description>
			<content:encoded><![CDATA[<p>Hey all,</p>
<p>I am struggling to develop my website based on what I can find on the web without any formal training.</p>
<p>I have succeeded in creating a two level menu where the 2nd level is displayed (expanded in accordeo fashion) when moving the cursor over the 1st level button thanks to a javascript found on the web which I customized.<span id="more-28"></span></p>
<p>The 2nd level of menu choices are to select one the months of the year for which the programmed activities of our association would be displayed in an iframe on the same page without refreshing the page.</p>
<p>In fact, I&#8217;d like any menu selection, be it level 1 or 2, to use the same iframe space on the screen.<br />
The statement contains a link to be used when clicked on the particular menu key. How can I &#8220;replace&#8221; this link so that when clicked upon a partiular key the appropriate src=&#8221;document.html&#8221; finds its way into the iframe?</p>
<p>if its a link, don`t you just need a target reference to load the link in the iframe? Or am I mssing what you need?</p>
<p>However, &#8230; (there&#8217;s almost always a but &#8230;).</p>
<p>In one instance my iframe is used to contain the (google) agenda of the club. Amazingly IE respects the size given in the iframe, but FF expands happily beyond the screen width. How can I force FF to respect the iframe size ?</p>
<p>if you come up with ideas let me know.</p>
<p>thanks!</p>
<p>Related content:</p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/iframe-content-depending-on-menu-choice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash game works locally, not from server!</title>
		<link>http://mfsotx.org/flash-game-works-locally-not-from-server/</link>
		<comments>http://mfsotx.org/flash-game-works-locally-not-from-server/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 17:49:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphics and Design]]></category>

		<guid isPermaLink="false">http://mfsotx.org/flash-game-works-locally-not-from-server/</guid>
		<description><![CDATA[Hi guys, I&#8217;m pretty good with HTML and CSS. My company paid a developer to make us a flash game. If i open his directory and run the html file locally from my computer, the game runs fine. However, Once I upload them to the server, the loader counts to 100% and then nothing on [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Hi guys, </span><span style="font-family: verdana; color: #000000; font-size: x-small;">I&#8217;m pretty good with HTML and CSS. My company paid a developer to make us a flash game. If i open his directory and run the html file locally from my computer, the game runs fine. However, Once I upload them to the server, the loader counts to 100% and then nothing on the screen. </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">I&#8217;ve tried from Dreamweaver, FTP Voyager and Ipswitch. I tried both Binary and ASCII. I tried switching some links in the html file. Nothing has worked.</span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">It&#8217;s entirely possible the linking is incorrect, or that the Flash uses class files that aren&#8217;t properly linking? Some Flash requires class files, which is a bit burgeonsome but is a trait of ActionScript 2/3.0. </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Look through your code, both HTML and ActionScript, for any of this: </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">file:\C:my documentsflashsomefile.swf </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Use absolute relative linking, in both the Flash and your files, </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">/flash/somefile.swf </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Not with the CWD syntax: </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">../flash/somefile.swf</span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Should work!</span><span id="more-27"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/flash-game-works-locally-not-from-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

