<?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 for arcaner.com</title>
	<atom:link href="http://www.arcaner.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arcaner.com</link>
	<description>Marshall Culpepper&#039;s blog</description>
	<lastBuildDate>Tue, 05 Oct 2010 07:35:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
	<item>
		<title>Comment on My first year at Appcelerator in retrospect by shahin</title>
		<link>http://www.arcaner.com/2009/08/09/my-first-year-at-appcelerator-in-retrospect/comment-page-1/#comment-96646</link>
		<dc:creator>shahin</dc:creator>
		<pubDate>Tue, 05 Oct 2010 07:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=261#comment-96646</guid>
		<description>Hi

We want to open a html file in iPhone and we want as soon as html file is opened plays a sound.

The following code DOES work. But it works only for the first time.

When we run the simulator it opens the app.js, it opens the html file and makes the sound, but when i go to another html file and from that file click on a link to come to this file again, it does not make the sound.

Question is this: How do we fix this, to make the sound every time?

Thanks

=========this is in the app.js=======

var webView = Titanium.UI.createWebView({url:&#039;menu.html&#039;});

var appWin = Titanium.UI.createWindow({fullscreen: true});

appWin.add(webView);

appWin.visible = true;

appWin.open();

Titanium.App.addEventListener(&#039;do_something_native&#039;, function(e) {

var sound = Titanium.Media.createSound({url:&#039;ding.wav&#039;});

sound.play();

Ti.API.info(&#039;foo=&#039;+e.foo);

});

======= this is in the html file =======

head script

Titanium.App.fireEvent(&#039;do_something_native&#039;, {foo: &#039;bar&#039;});

/script / head

================================</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>We want to open a html file in iPhone and we want as soon as html file is opened plays a sound.</p>
<p>The following code DOES work. But it works only for the first time.</p>
<p>When we run the simulator it opens the app.js, it opens the html file and makes the sound, but when i go to another html file and from that file click on a link to come to this file again, it does not make the sound.</p>
<p>Question is this: How do we fix this, to make the sound every time?</p>
<p>Thanks</p>
<p>=========this is in the app.js=======</p>
<p>var webView = Titanium.UI.createWebView({url:&#8217;menu.html&#8217;});</p>
<p>var appWin = Titanium.UI.createWindow({fullscreen: true});</p>
<p>appWin.add(webView);</p>
<p>appWin.visible = true;</p>
<p>appWin.open();</p>
<p>Titanium.App.addEventListener(&#8216;do_something_native&#8217;, function(e) {</p>
<p>var sound = Titanium.Media.createSound({url:&#8217;ding.wav&#8217;});</p>
<p>sound.play();</p>
<p>Ti.API.info(&#8216;foo=&#8217;+e.foo);</p>
<p>});</p>
<p>======= this is in the html file =======</p>
<p>head script</p>
<p>Titanium.App.fireEvent(&#8216;do_something_native&#8217;, {foo: &#8216;bar&#8217;});</p>
<p>/script / head</p>
<p>================================</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My first year at Appcelerator in retrospect by lkjlkjsskjnlljklkjkjlkjlkjlkjlkjlkjlkj</title>
		<link>http://www.arcaner.com/2009/08/09/my-first-year-at-appcelerator-in-retrospect/comment-page-1/#comment-96628</link>
		<dc:creator>lkjlkjsskjnlljklkjkjlkjlkjlkjlkjlkjlkj</dc:creator>
		<pubDate>Sun, 03 Oct 2010 21:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=261#comment-96628</guid>
		<description>Hi. i found you from QA pages of appcelerator - i have a question that no one has solved it yet. i think you can. thanks. this is the code that i made and it works once and second time that i go to the html page it does not work. i want that when i go to a html page it make a sound automatic in iphone.  first time it makes the sound, next time i click on another web page to come to this html page, it does not make the sound. thanks again. i do not know how you can answer me, please send email:  shahin AT robot-hosting.com
---

this part is in app.js:



var webView = Titanium.UI.createWebView({url:&#039;menu.html&#039;});
var appWin = Titanium.UI.createWindow({fullscreen: true});
appWin.add(webView);
appWin.visible = true;
appWin.open();

Titanium.App.addEventListener(&#039;do_something_native&#039;, function(e) {
	
  // do something with &quot;e&quot; here, it contains the properties passed from the webview
  
var sound = Titanium.Media.createSound({url:&#039;ding.wav&#039;});
sound.play();
  
  Ti.API.info(&#039;foo=&#039;+e.foo);
});




---


this part is in html page



	Titanium.App.fireEvent(&#039;do_something_native&#039;, {foo: &#039;bar&#039;});	

</description>
		<content:encoded><![CDATA[<p>Hi. i found you from QA pages of appcelerator &#8211; i have a question that no one has solved it yet. i think you can. thanks. this is the code that i made and it works once and second time that i go to the html page it does not work. i want that when i go to a html page it make a sound automatic in iphone.  first time it makes the sound, next time i click on another web page to come to this html page, it does not make the sound. thanks again. i do not know how you can answer me, please send email:  shahin AT robot-hosting.com<br />
&#8212;</p>
<p>this part is in app.js:</p>
<p>var webView = Titanium.UI.createWebView({url:&#8217;menu.html&#8217;});<br />
var appWin = Titanium.UI.createWindow({fullscreen: true});<br />
appWin.add(webView);<br />
appWin.visible = true;<br />
appWin.open();</p>
<p>Titanium.App.addEventListener(&#8216;do_something_native&#8217;, function(e) {</p>
<p>  // do something with &#8220;e&#8221; here, it contains the properties passed from the webview</p>
<p>var sound = Titanium.Media.createSound({url:&#8217;ding.wav&#8217;});<br />
sound.play();</p>
<p>  Ti.API.info(&#8216;foo=&#8217;+e.foo);<br />
});</p>
<p>&#8212;</p>
<p>this part is in html page</p>
<p>	Titanium.App.fireEvent(&#8216;do_something_native&#8217;, {foo: &#8216;bar&#8217;});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Texas Driving Experience by Ashurashur Conrad</title>
		<link>http://www.arcaner.com/2010/06/27/a-texas-driving-experience/comment-page-1/#comment-86584</link>
		<dc:creator>Ashurashur Conrad</dc:creator>
		<pubDate>Fri, 30 Jul 2010 13:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=307#comment-86584</guid>
		<description>Marshall, You are welcome, it was a great story.  Stop by the news site if you get a chance.  Have a good one.
-Ashur</description>
		<content:encoded><![CDATA[<p>Marshall, You are welcome, it was a great story.  Stop by the news site if you get a chance.  Have a good one.<br />
-Ashur</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Texas Driving Experience by Marshall</title>
		<link>http://www.arcaner.com/2010/06/27/a-texas-driving-experience/comment-page-1/#comment-86373</link>
		<dc:creator>Marshall</dc:creator>
		<pubDate>Sat, 03 Jul 2010 07:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=307#comment-86373</guid>
		<description>@Ashur thanks for the link back!
@Daniel I&#039;ll keep that in mind ;) Also -- updated the comment box so you can actually read it :)</description>
		<content:encoded><![CDATA[<p>@Ashur thanks for the link back!<br />
@Daniel I&#8217;ll keep that in mind <img src='http://www.arcaner.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Also &#8212; updated the comment box so you can actually read it <img src='http://www.arcaner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Texas Driving Experience by Turn of the Paige &#187; Blog Archive &#187; Father&#8217;s Day Bonanza!</title>
		<link>http://www.arcaner.com/2010/06/27/a-texas-driving-experience/comment-page-1/#comment-86371</link>
		<dc:creator>Turn of the Paige &#187; Blog Archive &#187; Father&#8217;s Day Bonanza!</dc:creator>
		<pubDate>Sat, 03 Jul 2010 03:27:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=307#comment-86371</guid>
		<description>[...] Now back to the gift I got Marshall.  For as long as I&#8217;ve known Marshall he has always points out and drools over any Corvette he sees.  Now whenever we see one on the road I&#8217;m always hoping he doesn&#8217;t notice so I don&#8217;t have to hear about it.. again.  So when I was searching online for a father&#8217;s day gift I came across a site that sold thrill rides or a day racing cars.  One of them being a Corvette.  Needless to say I couldn&#8217;t help myself and I bought Marshall 10 laps in a Z06 Corvette at Texas Motor Speedway with an extra 5 laps with an experienced race car driver behind the wheel.  That next week on Saturday the 26th, Kayla and I went and cheered him on in the hot Texas sun but it was worth it to see Marshall so happy.  He even blogged about it!  That is a serious compliment because he doesn&#8217;t blog often!     Read more about that day at Arcaner.com. [...]</description>
		<content:encoded><![CDATA[<p>[...] Now back to the gift I got Marshall.  For as long as I&#8217;ve known Marshall he has always points out and drools over any Corvette he sees.  Now whenever we see one on the road I&#8217;m always hoping he doesn&#8217;t notice so I don&#8217;t have to hear about it.. again.  So when I was searching online for a father&#8217;s day gift I came across a site that sold thrill rides or a day racing cars.  One of them being a Corvette.  Needless to say I couldn&#8217;t help myself and I bought Marshall 10 laps in a Z06 Corvette at Texas Motor Speedway with an extra 5 laps with an experienced race car driver behind the wheel.  That next week on Saturday the 26th, Kayla and I went and cheered him on in the hot Texas sun but it was worth it to see Marshall so happy.  He even blogged about it!  That is a serious compliment because he doesn&#8217;t blog often!     Read more about that day at Arcaner.com. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Texas Driving Experience by Daniel</title>
		<link>http://www.arcaner.com/2010/06/27/a-texas-driving-experience/comment-page-1/#comment-85761</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Thu, 01 Jul 2010 17:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=307#comment-85761</guid>
		<description>You might want to pick a different euphemism besides &quot;I was crushed&quot; when describing a car accident! 

Also the font color on this form. I can&#039;t see what I&#039;m typing!</description>
		<content:encoded><![CDATA[<p>You might want to pick a different euphemism besides &#8220;I was crushed&#8221; when describing a car accident! </p>
<p>Also the font color on this form. I can&#8217;t see what I&#8217;m typing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Texas Driving Experience by Ashur Conrad</title>
		<link>http://www.arcaner.com/2010/06/27/a-texas-driving-experience/comment-page-1/#comment-84804</link>
		<dc:creator>Ashur Conrad</dc:creator>
		<pubDate>Wed, 30 Jun 2010 04:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=307#comment-84804</guid>
		<description>Nice heart warming story.  We posted a about it on our news blog.

Here is the link  -------&gt;  http://corvettemafia.com/?p=3219  

Thank you

Ashur</description>
		<content:encoded><![CDATA[<p>Nice heart warming story.  We posted a about it on our news blog.</p>
<p>Here is the link  &#8212;&#8212;-&gt;  <a href="http://corvettemafia.com/?p=3219" rel="nofollow">http://corvettemafia.com/?p=3219</a>  </p>
<p>Thank you</p>
<p>Ashur</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DARTpal by Martin Robinson</title>
		<link>http://www.arcaner.com/2010/05/15/dartpal/comment-page-1/#comment-68755</link>
		<dc:creator>Martin Robinson</dc:creator>
		<pubDate>Sat, 15 May 2010 18:29:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=300#comment-68755</guid>
		<description>Looks great!</description>
		<content:encoded><![CDATA[<p>Looks great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Eclipse&#8217;s PDE Build by Adoams</title>
		<link>http://www.arcaner.com/2007/03/22/debugging-eclipses-pde-build/comment-page-1/#comment-18278</link>
		<dc:creator>Adoams</dc:creator>
		<pubDate>Fri, 30 Oct 2009 15:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/2007/03/22/debugging-eclipses-pde-build/#comment-18278</guid>
		<description>Is ti working? if i pass build.xml, it wrotes that there is no such target.

if i run without build.xml 
Buildfile: E:\home\adomas\CI\tempProject1\build.xml

main:

BUILD FAILED
E:\home\adomas\CI\tempProject1\build.xml:4: Problem: failed to create task or type eclipse.fetch
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any / declarations have taken place.


Total time: 3 seconds</description>
		<content:encoded><![CDATA[<p>Is ti working? if i pass build.xml, it wrotes that there is no such target.</p>
<p>if i run without build.xml<br />
Buildfile: E:\home\adomas\CI\tempProject1\build.xml</p>
<p>main:</p>
<p>BUILD FAILED<br />
E:\home\adomas\CI\tempProject1\build.xml:4: Problem: failed to create task or type eclipse.fetch<br />
Cause: The name is undefined.<br />
Action: Check the spelling.<br />
Action: Check that any custom tasks/types have been declared.<br />
Action: Check that any / declarations have taken place.</p>
<p>Total time: 3 seconds</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using win32 python from cygwin by Mike Pennington</title>
		<link>http://www.arcaner.com/2009/07/06/using-win32-python-from-cygwin/comment-page-1/#comment-18262</link>
		<dc:creator>Mike Pennington</dc:creator>
		<pubDate>Fri, 23 Oct 2009 14:15:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.arcaner.com/?p=223#comment-18262</guid>
		<description>This is great info... I like the bash script, but it doesn&#039;t handle standalone &quot;python&quot; calls into the interpreter.  Right now, I have to remember to type &quot;python -i&quot; when I call into the interpreter... btw, if you haven&#039;t already noticed, the win32 interpreter hangs if you hit  as you would normally under cygwin.  I&#039;ve found that &#039;quit()&#039; is a great cross-platform workaround to get out of the interpreter... works everywhere I&#039;ve tried it (Windows, BSD, Linux, Cygwin).</description>
		<content:encoded><![CDATA[<p>This is great info&#8230; I like the bash script, but it doesn&#8217;t handle standalone &#8220;python&#8221; calls into the interpreter.  Right now, I have to remember to type &#8220;python -i&#8221; when I call into the interpreter&#8230; btw, if you haven&#8217;t already noticed, the win32 interpreter hangs if you hit  as you would normally under cygwin.  I&#8217;ve found that &#8216;quit()&#8217; is a great cross-platform workaround to get out of the interpreter&#8230; works everywhere I&#8217;ve tried it (Windows, BSD, Linux, Cygwin).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

