<?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 : Müzik ekleme</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Müzik ekleme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:03:14 +0000</pubDate>
  <lastBuildDate>Mon, 12 May 2025 16:50:23 +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=1004</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[Müzik ekleme : Merhabalar,Clomosy &#252;zerinde ses...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1004&amp;PID=2008#2008</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=132">Atiker01</a><br /><strong>Konu:</strong> 1004<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Mayıs&nbsp;2025 Saat 16:50<br /><br />Merhabalar,<div><br></div><div><p -pm-slice="1 1 ">Clomosy üzerinde ses dosyalarını projenize eklemek için GitHub’ı uzak depolama alanı olarak kullanabilirsiniz. Bunun için öncelikle bir repository (örneğin assets) oluşturup (ya da var olan repository) içerisine .mp3 veya .wav uzantılı medya dosyanızı (örneğin ses2.mp3) yükleyin. Ardından bu dosyanın bağlantısını aşağıdaki formata uygun şekilde düzenleyin:</p><p><a href="https://raw.githubuserc&#111;ntent.com/KULLANICI_ADI/REPO_ADI/BRANCH_ADI/DOSYA_ADI.mp3" target="_blank" rel="nofollow">https://raw.githubusercontent.com/KULLANICI_ADI/REPO_ADI/BRANCH_ADI/DOSYA_ADI.mp3</a></p><p>Örneğin: <a href="https://raw.githubuserc&#111;ntent.com/ornekKullanici/assets/main/ses2.mp3" target="_blank" rel="nofollow">https://raw.githubusercontent.com/ornekKullanici/assets/main/ses2.mp3</a></p><p>Bu URL, uzantısı açık ve doğrudan erişilebilir olduğundan Clomosy tarafından sorunsuz şekilde indirilebilir. Proje kodunuzda bu bağlantıyı MyForm.AddAssetFromUrl(...) metodu ile çağırarak Clomosy proje dizinine aktarabilirsiniz. Daha sonra, örneğin MediaPlayer1.FileName = clPathCombine('ses2.mp3', Clomosy.AppFilesPath); satırı ile medya dosyasını kullanıma hazır hale getirebilirsiniz. Böylece GitHub üzerinden ses dosyaları Clomosy projelerinde kolayca oynatılabilir.<br><br>Örnek kod:</p><p><br></p><p>&nbsp; var</p><p>&nbsp; &nbsp;MyForm:TCLForm;</p><p>&nbsp; &nbsp;MediaPlayer1 : TclMediaPlayer;</p><p>&nbsp; &nbsp;Panel1 : TclPanel;</p><p>&nbsp; &nbsp;Buton : TclButton;</p><p>&nbsp; &nbsp;i : Integer;</p><p>&nbsp; &nbsp;</p><p>&nbsp; void trigger;&nbsp;</p><p>&nbsp; var</p><p>&nbsp; &nbsp; clickedBtn:TClButton;</p><p>&nbsp; {</p><p>&nbsp; &nbsp; clickedBtn = TClButton(MyForm.Clsender);&nbsp;</p><p>&nbsp; &nbsp; if (clickedBtn.Hint == '0')</p><p>&nbsp; &nbsp; {</p><p>&nbsp; &nbsp; &nbsp; MediaPlayer1.CurrentTime = 0;</p><p>&nbsp; &nbsp; &nbsp; MediaPlayer1.Play;</p><p>&nbsp; &nbsp; }else</p><p>&nbsp; &nbsp; {</p><p>&nbsp; &nbsp; &nbsp; &nbsp;MediaPlayer1.Stop;</p><p>&nbsp; &nbsp; &nbsp; &nbsp;MediaPlayer1.Volume = 1;</p><p>&nbsp; &nbsp; }</p><p>&nbsp; }</p><p>&nbsp;&nbsp;</p><p>&nbsp; {</p><p>&nbsp; MyForm = TCLForm.Create(Self);</p><p>&nbsp; MyForm.AddAssetFromUrl('<a href="https://raw.githubuserc&#111;ntent.com/ornekKullanici/assets/main/ses2.mp3" target="_blank" rel="nofollow">https://raw.githubusercontent.com/ornekKullanici/assets/main/ses2.mp3</a>');&nbsp;</p><p>&nbsp;&nbsp;</p><p>&nbsp; MediaPlayer1 = TclMediaPlayer.Create(MyForm);</p><p>&nbsp; MediaPlayer1.FileName = clPathCombine('ses2.mp3',Clomosy.AppFilesPath);</p><p>&nbsp;&nbsp;</p><p>&nbsp; Panel1 = MyForm.AddNewPanel(MyForm,'Panel1');</p><p>&nbsp; Panel1.Align = alCenter;</p><p>&nbsp; Panel1.Width = MyForm.clWidth / 2;</p><p>&nbsp; Panel1.Height = MyForm.clHeight / 6;</p><p>&nbsp;&nbsp;</p><p>&nbsp; for (i = 0 to 1)</p><p>&nbsp; {</p><p>&nbsp; &nbsp; if(i == 0)</p><p>&nbsp; &nbsp; {</p><p>&nbsp; &nbsp; &nbsp; Buton = MyForm.AddNewButton(Panel1,'Buton'+IntToStr(i), 'Start');</p><p>&nbsp; &nbsp; &nbsp; Buton.Align = AlLeft;</p><p>&nbsp; &nbsp; }else</p><p>&nbsp; &nbsp; {</p><p>&nbsp; &nbsp; &nbsp; Buton = MyForm.AddNewButton(Panel1,'Buton'+IntToStr(i), 'Stop');&nbsp;</p><p>&nbsp; &nbsp; &nbsp; Buton.Align = AlRight;</p><p>&nbsp; &nbsp; }</p><p>&nbsp; &nbsp; Buton.width = Panel1.width / 2;</p><p>&nbsp; &nbsp; Buton.Hint = IntToStr(i);</p><p>&nbsp; &nbsp; MyForm.AddNewEvent(Buton,tbeOnClick,'trigger');</p><p>&nbsp; }</p><p>&nbsp; MyForm.Run;</p><p>}</p><p><br><b>NOT:</b> Yukarıdaki url adresi örnektir. Kendi yapınızı oluşturunuz. Kodu çalıştırdığınızda örnek url den dolayı hata alırsınız.</p></div>]]>
   </description>
   <pubDate>Mon, 12 May 2025 16:50:23 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1004&amp;PID=2008#2008</guid>
  </item> 
  <item>
   <title><![CDATA[Müzik ekleme : Yapt&#305;&#287;&#305;m&#305;z tasar&#305;ma Clomosy dok&#252;man...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1004&amp;PID=2001#2001</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=271">Hchnm</a><br /><strong>Konu:</strong> 1004<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Mayıs&nbsp;2025 Saat 22:23<br /><br />Yaptığımız tasarıma Clomosy doküman sitesinden aldığımız koddan yararlanarak Clomosy nin hazır müziğini ekledik fakat bu müziği değiştirmek istiyoruz.&nbsp; Koda ekleyeceğimiz müziğin her bilgisayarda çalışabilecek şekilde olması için koda eklenecek olan müziğin linkini nasıl oluşturabiliriz?]]>
   </description>
   <pubDate>Fri, 09 May 2025 22:23:04 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1004&amp;PID=2001#2001</guid>
  </item> 
 </channel>
</rss>