<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : Fonksiyon telefonumda çalışmıyor</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Fonksiyon telefonumda çalışmıyor]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 14:25:25 +0000</pubDate>
  <lastBuildDate>Wed, 21 Aug 2024 14:59:08 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=900</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Fonksiyon telefonumda çalışmıyor : Bu kodu ekleyip .wav dosyas&#305; yerine...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=900&amp;PID=1725#1725</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=218">NadireNurSaglam</a><br /><strong>Konu:</strong> 900<br /><strong>Gönderim Zamanı:</strong> 21&nbsp;Ağustos&nbsp;2024 Saat 14:59<br /><br />Bu kodu ekleyip .wav dosyası yerine .mp3 dosyası kullanınca telefonumda da çalıştı. Teşekkür ederim.<div><br></div>]]>
   </description>
   <pubDate>Wed, 21 Aug 2024 14:59:08 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=900&amp;PID=1725#1725</guid>
  </item> 
  <item>
   <title><![CDATA[Fonksiyon telefonumda çalışmıyor : Merhaba NadireA&#351;a&#287;&#305;daki kodu inceler...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=900&amp;PID=1720#1720</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 900<br /><strong>Gönderim Zamanı:</strong> 21&nbsp;Ağustos&nbsp;2024 Saat 14:24<br /><br />Merhaba Nadire&nbsp;<div>Aşağıdaki kodu inceler misin:</div><div><div>var</div><div>&nbsp; &nbsp;MyForm:TCLForm;</div><div>&nbsp; &nbsp;MediaPlayer1 : TclMediaPlayer;</div><div>&nbsp; &nbsp;Panel1 : TclPanel;</div><div>&nbsp; &nbsp;Buton : TclButton;</div><div>&nbsp; &nbsp;i : Integer;</div><div>&nbsp; &nbsp;</div><div>&nbsp; void trigger;&nbsp;</div><div>&nbsp; var</div><div>&nbsp; &nbsp; clickedBtn:TClButton;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; clickedBtn = TClButton(MyForm.Clsender);&nbsp;</div><div>&nbsp; &nbsp; if (clickedBtn.Hint == '0')</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; MediaPlayer1.CurrentTime = 0;</div><div>&nbsp; &nbsp; &nbsp; MediaPlayer1.Play;</div><div>&nbsp; &nbsp; }else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp;MediaPlayer1.Stop;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;MediaPlayer1.Volume = 0.3;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; MyForm = TCLForm.Create(Self);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; MyForm.AddAssetFromUrl('<a href="https://raw.githubuserc&#111;ntent.com/nnurrs/GuessWhatGame/main/startGame.wav" target="_blank" rel="nofollow">https://raw.githubusercontent.com/nnurrs/GuessWhatGame/main/startGame.wav</a>');</div><div>&nbsp; &nbsp; MediaPlayer1 = TclMediaPlayer.Create(MyForm);</div><div>&nbsp; &nbsp; MediaPlayer1.FileName = clPathCombine('startGame.wav',Clomosy.AppFilesPath);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Panel1 = MyForm.AddNewPanel(MyForm,'Panel1');</div><div>&nbsp; &nbsp; Panel1.Align = alCenter;</div><div>&nbsp; &nbsp; Panel1.Width = MyForm.clWidth / 2;</div><div>&nbsp; &nbsp; Panel1.Height = MyForm.clHeight / 6;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; for (i = 0 to 1)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; if(i == 0)</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Buton = MyForm.AddNewButton(Panel1,'Buton'+IntToStr(i), 'Start');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Buton.Align = AlLeft;</div><div>&nbsp; &nbsp; &nbsp; }else</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Buton = MyForm.AddNewButton(Panel1,'Buton'+IntToStr(i), 'Stop');&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Buton.Align = AlRight;</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; Buton.width = Panel1.width / 2;</div><div>&nbsp; &nbsp; &nbsp; Buton.Hint = IntToStr(i);</div><div>&nbsp; &nbsp; &nbsp; MyForm.AddNewEvent(Buton,tbeOnClick,'trigger');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; MyForm.Run;</div><div>&nbsp; }</div></div>]]>
   </description>
   <pubDate>Wed, 21 Aug 2024 14:24:35 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=900&amp;PID=1720#1720</guid>
  </item> 
  <item>
   <title><![CDATA[Fonksiyon telefonumda çalışmıyor : void sesCal;{ oyunForm.AddGame...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=900&amp;PID=1718#1718</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=218">NadireNurSaglam</a><br /><strong>Konu:</strong> 900<br /><strong>Gönderim Zamanı:</strong> 21&nbsp;Ağustos&nbsp;2024 Saat 14:15<br /><br /><div><span style="font-size: 14px;">&nbsp;void sesCal;</span></div><div><span style="font-size: 14px;">&nbsp;{</span></div><div><span style="font-size: 14px;">&nbsp; oyunForm.AddGameAssetFromUrl('<a href="https://raw.githubuserc&#111;ntent.com/nnurrs/GuessWhatGame/main/startGame.wav" target="_blank" rel="nofollow">https://raw.githubusercontent.com/nnurrs/GuessWhatGame/main/startGame.wav</a>');</span></div><div><span style="font-size: 14px;">&nbsp; oyunuBaslatSound = oyunForm.RegisterSound('startGame.wav');</span></div><div><span style="font-size: 14px;">&nbsp; oyunForm.SoundIsActive = True;</span></div><div><span style="font-size: 14px;">&nbsp; oyunForm.PlayGameSound(oyunuBaslatSound);</span></div><div><span style="font-size: 14px;">&nbsp;}</span></div><div><br>yukarıdaki fonksiyonu çağırdığımda bilgisayarımda çalışıyor ses de çalıyor ama telefonumda çalışmıyor, ses çıkmıyor. Nasıl çözebilirim? Teşekkürler.</div>]]>
   </description>
   <pubDate>Wed, 21 Aug 2024 14:15:33 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=900&amp;PID=1718#1718</guid>
  </item> 
 </channel>
</rss>