<?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 : Gesture,igLongTap Kullanımı</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Gesture,igLongTap Kullanımı]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 10:54:32 +0000</pubDate>
  <lastBuildDate>Thu, 04 Dec 2025 18:01:59 +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=1239</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[Gesture,igLongTap Kullanımı : Merhaba Kaan,GESTURE kullanarak...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2743#2743</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1239<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Aralık&nbsp;2025 Saat 18:01<br /><br />Merhaba Kaan,&nbsp;<br>GESTURE kullanarak yaptığım örneği aşağıya ekliyorum. İncelersin;<br><br><div>var</div><div>&nbsp; myForm: TclForm;</div><div>&nbsp; gestureImg: TClImage;</div><div>&nbsp; statusLbl: TclLabel;</div><div>&nbsp; currentScale: Single;&nbsp;</div><div>&nbsp; ProPanel1 : TclProPanel;</div><div><br></div><div>void OnGestureDetected;</div><div>{</div><div>&nbsp; //&nbsp; SINIR KONTROLLERİ</div><div>&nbsp; // Sol Sınır</div><div>&nbsp; if gestureImg.Position.X &lt; 0&nbsp;</div><div>&nbsp; &nbsp; gestureImg.Position.X = 0;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; // Sağ Sınır</div><div>&nbsp; if gestureImg.Position.X &gt; (ProPanel1.Width - gestureImg.Width)&nbsp;</div><div>&nbsp; &nbsp; gestureImg.Position.X = ProPanel1.Width - gestureImg.Width;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; // Üst Sınır</div><div>&nbsp; if gestureImg.Position.Y &lt; 0&nbsp;</div><div>&nbsp; &nbsp; gestureImg.Position.Y = 0;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; // Alt Sınır</div><div>&nbsp; if gestureImg.Position.Y &gt; (ProPanel1.Height - gestureImg.Height)&nbsp;</div><div>&nbsp; &nbsp; gestureImg.Position.Y = ProPanel1.Height - gestureImg.Height;</div><div><br></div><div>&nbsp; currentScale = gestureImg.Scale.X;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if currentScale &lt; 3.0&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; gestureImg.Scale.X = currentScale + 0.1;</div><div>&nbsp; &nbsp; gestureImg.Scale.Y = currentScale + 0.1;</div><div>&nbsp; &nbsp; statusLbl.Text = 'Zoom Seviyesi: ' + FloatToStr(gestureImg.Scale.X);</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; statusLbl.Text = 'Maksimum sınıra ulaşıldı! (3x)';</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void OnImgClick;</div><div>{</div><div>&nbsp; statusLbl.Text = 'Resim Sıfırlandı.';</div><div>&nbsp; gestureImg.Scale.X = 1.0;</div><div>&nbsp; gestureImg.Scale.Y = 1.0;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Resmi tekrar panelin ortasında&nbsp;</div><div>&nbsp; gestureImg.Position.X = (ProPanel1.Width - gestureImg.Width) / 2;</div><div>&nbsp; gestureImg.Position.Y = (ProPanel1.Height - gestureImg.Height) / 2;</div><div>}</div><div><br></div><div>{</div><div>&nbsp; myForm = TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; statusLbl = myForm.AddNewLabel(MyForm, 'statusLbl', 'Resim üzerinde hareket deneyin');</div><div>&nbsp; statusLbl.Align = alMostTop;</div><div>&nbsp; statusLbl.Height = 50;</div><div>&nbsp; statusLbl.StyledSettings = ssFamily;</div><div>&nbsp; statusLbl.TextSettings.Font.Size = 18;</div><div>&nbsp; statusLbl.TextSettings.WordWrap = True;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Panel Oluşturma</div><div>&nbsp; ProPanel1 = myForm.AddNewProPanel(myForm, 'ProPanel1');</div><div>&nbsp; ProPanel1.Align = alClient;</div><div>&nbsp; ProPanel1.Margins.Top = 10;</div><div>&nbsp; ProPanel1.Margins.Left = 10;</div><div>&nbsp; ProPanel1.Margins.Right = 10;</div><div>&nbsp; ProPanel1.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ProPanel1.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#016f0e');</div><div>&nbsp; ProPanel1.clProSettings.RoundHeight = 10;</div><div>&nbsp; ProPanel1.clProSettings.RoundWidth = 10;</div><div>&nbsp; ProPanel1.clProSettings.BorderWidth = 2;</div><div>&nbsp; ProPanel1.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; ProPanel1.clProSettings.IsRound = True;</div><div>&nbsp; ProPanel1.SetclProSettings(ProPanel1.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; gestureImg = myForm.AddNewImage(ProPanel1, 'gestureImg');</div><div>&nbsp; MyForm.setImage(gestureImg, '<a href="https://clomosy.com/demos/bg.png" target="_blank" rel="nofollow">https://clomosy.com/demos/bg.png</a>');</div><div>&nbsp;&nbsp;</div><div>&nbsp; gestureImg.Align = alNone;</div><div>&nbsp; gestureImg.Height = 150;</div><div>&nbsp; gestureImg.Width = 150;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Resmi Başlangıçta Panelin Ortasında&nbsp;</div><div>&nbsp; gestureImg.Position.X = (ProPanel1.Width - gestureImg.Width) / 2;&nbsp;</div><div>&nbsp; gestureImg.Position.Y = (ProPanel1.Height - gestureImg.Height) / 2;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.clSetTouchIG(igZoom, gestureImg);</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Olayları Bağla</div><div>&nbsp; MyForm.AddNewEvent(gestureImg, tbeOnGesture, 'OnGestureDetected');</div><div>&nbsp; MyForm.AddNewEvent(gestureImg, tbeOnClick, 'OnImgClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; myForm.Run;</div><div>}</div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Thu, 04 Dec 2025 18:01:59 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2743#2743</guid>
  </item> 
  <item>
   <title><![CDATA[Gesture,igLongTap Kullanımı : &#350;u an i&#231;in OnClick&amp;#039;le bir...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2742#2742</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1239<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Aralık&nbsp;2025 Saat 15:41<br /><br />Şu an için OnClick'le bir IMG zoom yapılabilmeyi atıyorum, projende kullanabilmen için,&nbsp;<br><div>var</div><div>&nbsp; myForm: TclForm;</div><div>&nbsp; GestureImg: TClImage;</div><div>&nbsp; InfoLbl: TclLabel;</div><div>&nbsp; IsZoomed: Boolean;&nbsp;</div><div><br></div><div>void BtnOnClick;</div><div>{</div><div>&nbsp; //&nbsp; resim şu an normal boyutunda&nbsp;</div><div>&nbsp; if IsZoomed == False&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; // X ve Y ekseninde 2 kat büyüt&nbsp;</div><div>&nbsp; &nbsp; GestureImg.Scale.X = 2.0;</div><div>&nbsp; &nbsp; GestureImg.Scale.Y = 2.0;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; InfoLbl.Text = 'Durum: ZOOM YAPILDI';</div><div>&nbsp; &nbsp; // Artık zoom yapıldığını işaretle</div><div>&nbsp; &nbsp; IsZoomed = True;</div><div>&nbsp; }</div><div>&nbsp; // Eğer resim zaten büyükse (Zoom yapılmışsa)</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; // Ölçeği normale (1.0) döndür</div><div>&nbsp; &nbsp; GestureImg.Scale.X = 1.0;</div><div>&nbsp; &nbsp; GestureImg.Scale.Y = 1.0;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; InfoLbl.Text = 'Durum: Normal';</div><div>&nbsp; &nbsp; // Zoom durumunu kaldır</div><div>&nbsp; &nbsp; IsZoomed = False;</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div>{</div><div>&nbsp; myForm = TClForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Başlangıçta zoom yapılmamış</div><div>&nbsp; IsZoomed = False;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Bilgi Etiketi</div><div>&nbsp; InfoLbl = myForm.AddNewLabel(MyForm, 'InfoLbl', 'Durum: Normal (Büyütmek için tıkla)');</div><div>&nbsp; InfoLbl.Align = alTop;</div><div>&nbsp; InfoLbl.Height = 30;</div><div>&nbsp; InfoLbl.StyledSettings = ssFamily;</div><div>&nbsp; InfoLbl.TextSettings.Font.Size = 16;</div><div>&nbsp; InfoLbl.Margins.Top = 20;</div><div><br></div><div>&nbsp; GestureImg = myForm.AddNewImage(MyForm, 'GestureImg');</div><div>&nbsp; MyForm.setImage(GestureImg, '<a href="https://clomosy.com/demos/bg.png" target="_blank" rel="nofollow">https://clomosy.com/demos/bg.png</a>');</div><div>&nbsp;&nbsp;</div><div>&nbsp; GestureImg.Align = alCenter;</div><div>&nbsp; GestureImg.Height = 200;</div><div>&nbsp; GestureImg.Width = 200;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Hem mobilde hem PC'de çalışır.</div><div>&nbsp; MyForm.AddNewEvent(GestureImg, tbeOnClick, 'BtnOnClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; myForm.Run;</div><div>}</div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Thu, 04 Dec 2025 15:41:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2742#2742</guid>
  </item> 
  <item>
   <title><![CDATA[Gesture,igLongTap Kullanımı : Docs da sadece tek bir &#246;rnek var.Kendim...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2741#2741</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1239<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Aralık&nbsp;2025 Saat 15:29<br /><br />Docs da sadece tek bir örnek var.&nbsp;<br>Kendim bir kaç örnek deneyip seninle paylaşacağım&nbsp;<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Thu, 04 Dec 2025 15:29:39 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2741#2741</guid>
  </item> 
  <item>
   <title><![CDATA[Gesture,igLongTap Kullanımı : Merhaba Kaan,birden fazla kez...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2740#2740</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1239<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Aralık&nbsp;2025 Saat 15:28<br /><br />Merhaba Kaan,&nbsp;<br>birden fazla kez çalışmasının nedeni ekrana parmağımızı basılı tuttuğumuz da işletim sistemi bunu bir tık olarak değil de bir süreç olarak algılıyor.<br>Gesture genellikle üç aşamadan oluşuyor;<br>başlangıç<br>değişim<br>bitiş&nbsp; olarak&nbsp;<br>Yazdığın kodda prosedür bu aşamaların hepsin de tetiklendiği için showMessage birden fazla gözüküyor.<br>Çözüm olarak prosedür içerisine bir kontrol koyarak işlemin bir kere yapılmasını deneyebilir misin?&nbsp;<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Thu, 04 Dec 2025 15:28:56 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2740#2740</guid>
  </item> 
  <item>
   <title><![CDATA[Gesture,igLongTap Kullanımı : Componentlere bas&#305;l&#305; tutunca ger&#231;ekle&#351;ecek...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2739#2739</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=345">kaanl0</a><br /><strong>Konu:</strong> 1239<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Aralık&nbsp;2025 Saat 14:40<br /><br />Componentlere&nbsp; basılı tutunca gerçekleşecek eylemler için&nbsp;<span style=": rgb248, 249, 250;"><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">igLongTap kullanmak istiyorum&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></font></span><span style="color: rgb32, 33, 34; font-family: &quot;Liberati&#111;n Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; : rgb248, 249, 250;">( sanırsam sadece mobil uygulamada calısıyor)</span><span style=": rgb248, 249, 250;"><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp;aşağıdaki koddaki gibi deneme yaptığımda prosedür 1den fazla kez çalışıyor.&nbsp; Aynı zamanda&nbsp;</span></font></span><span style="color: rgb32, 33, 34; font-family: &quot;Liberati&#111;n Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; : rgb248, 249, 250;">igZoom ile kullandığım İmagelara zoom yapabilmek istiyorum fakat birkaç deneme yapmama rağmen çalıştıramadım. Varsa örnek atabilirmisiniz?</span><span style=": rgb248, 249, 250;"><br><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;"><br></span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">var</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; myForm:TclForm;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; GestureImg:TClImage;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;"><br></span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">void BtnOnGesture;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">{</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; ShowMessage('MERHABA');</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">}</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;"><br></span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">{</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; myForm = TClForm.Create(Self);</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;"><br></span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp;&nbsp;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; GestureImg = myForm.AddNewImage(MyForm, 'GestureImg');</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; MyForm.setImage(GestureImg,'<a href="https://clomosy.com/demos/bg.png" target="_blank" rel="nofollow">https://clomosy.com/demos/bg.png</a>');</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; GestureImg.Align = alCenter;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; GestureImg.Height = 300;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; GestureImg.Width = 300;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp;&nbsp;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; MyForm.clSetTouchIG(igLongTap,GestureImg);&nbsp;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp;&nbsp;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; MyForm.AddNewEvent(GestureImg, tbeOnGesture, 'BtnOnGesture');</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp;&nbsp;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">&nbsp; myForm.Run;</span></font></div><div style=""><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;">}</span></font></div></span>]]>
   </description>
   <pubDate>Thu, 04 Dec 2025 14:40:54 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1239&amp;PID=2739#2739</guid>
  </item> 
 </channel>
</rss>