<?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 : Jireskop özelliği</title>
  <link>https://www.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Jireskop özelliği]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 14 Apr 2026 23:38:42 +0000</pubDate>
  <lastBuildDate>Tue, 01 Aug 2023 09:10:04 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.clomosy.com.tr/RSS_post_feed.asp?TID=533</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://www.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://www.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Jireskop özelliği : Z koordinatlar&#305;n&#305; m&#305; kullanmam...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=612#612</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=119">ibrahimethem</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Ağustos&nbsp;2023 Saat 09:10<br /><br />Z koordinatlarını mı kullanmam gerekiyor ?<div><br></div>]]>
   </description>
   <pubDate>Tue, 01 Aug 2023 09:10:04 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=612#612</guid>
  </item> 
  <item>
   <title><![CDATA[Jireskop özelliği : Telefonu yan yat&#305;rd&#305;&#287;&#305;n&#305;z zaman...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=611#611</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 18:25<br /><br />Telefonu yan yatırdığınız zaman X ve Y kordinatının değiştiğini unutmayın.<div><br></div><div>Bunu deneyin.</div>]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 18:25:31 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=611#611</guid>
  </item> 
  <item>
   <title><![CDATA[Jireskop özelliği : Var MyForm:TclGameForm; ImgBall,...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=610#610</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=119">ibrahimethem</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 18:12<br /><br />Var<div>&nbsp; MyForm:TclGameForm;</div><div>&nbsp; ImgBall, ImgHole:TclProImage;</div><div>&nbsp; DeviceMotionSensor:TClMotionSensor;</div><div>&nbsp; LblDisplay:TclLabel;</div><div>&nbsp; GameTimer:TClTimer;</div><div>&nbsp; BtnStartGame:TclButton;</div><div>&nbsp; SoundIndex:Integer;</div><div>&nbsp; myDeviceManager:TclDeviceManager;</div><div>&nbsp; HoleMin_X,HoleMax_X : Single; // Ball must be placed inside these coordinates</div><div>&nbsp; HoleMin_Y,HoleMax_Y : Single;</div><div>&nbsp; function isBallinTheHole: Boolean;</div><div>&nbsp; var</div><div>&nbsp; &nbsp; centX,CentY : Single;</div><div>&nbsp; begin</div><div>&nbsp; &nbsp; Result := False;</div><div>&nbsp; &nbsp; centX := ImgBall.Position.X + (ImgBall.Width/2);</div><div>&nbsp; &nbsp; centY := ImgBall.Position.Y + (ImgBall.Height/2);</div><div>&nbsp; &nbsp; if (centX &lt;= HoleMax_X) and (centX &gt;= HoleMin_X) and</div><div>&nbsp; &nbsp; &nbsp; &nbsp;(centY &lt;= HoleMax_Y) and (centY &gt;= HoleMin_Y) then</div><div>&nbsp; &nbsp; &nbsp; Result := True;</div><div>&nbsp; end;</div><div>&nbsp; Procedure ProcOnGameTimer;</div><div>&nbsp; Const&nbsp;</div><div>&nbsp; &nbsp; BallSpeed = 5;</div><div>&nbsp; begin</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; If Clomosy.PlatformIsMobile Then</div><div>&nbsp; &nbsp; Begin</div><div>&nbsp; &nbsp; &nbsp; Case DeviceMotionSensor.GetDirectionX of&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 1:ImgBall.Position.X := ImgBall.Position.X - BallSpeed;//Move left</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 2:ImgBall.Position.X := ImgBall.Position.X + BallSpeed;//Move right</div><div>&nbsp; &nbsp; &nbsp; End;</div><div>&nbsp; &nbsp; &nbsp; Case DeviceMotionSensor.GetDirectionY of&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 1:ImgBall.Position.Y := ImgBall.Position.Y - BallSpeed;//Move up</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 2:ImgBall.Position.Y := ImgBall.Position.Y + BallSpeed;//Move down</div><div>&nbsp; &nbsp; &nbsp; End;</div><div>&nbsp; &nbsp; &nbsp; if (ImgBall.Position.X + ImgBall.Width) &gt; TForm(MyForm).ClientWidth then&nbsp; // Form Right border control</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ImgBall.Position.X := TForm(MyForm).ClientWidth - ImgBall.Width;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; if (ImgBall.Position.X) &lt; 0 then // Left border control</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ImgBall.Position.X := 0;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; if (ImgBall.Position.Y + ImgBall.Height) &gt; TForm(MyForm).ClientHeight then&nbsp; // Form Bottom border control</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ImgBall.Position.Y := TForm(MyForm).ClientHeight - ImgBall.Height;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; if (ImgBall.Position.Y &lt; 0) then&nbsp; // Top border control</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ImgBall.Position.Y := 0;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; if isBallinTheHole then</div><div>&nbsp; &nbsp; &nbsp; begin</div><div>&nbsp; &nbsp; &nbsp; &nbsp; GameTimer.Enabled := False;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ImgBall.Position.X := HoleMin_X;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ImgBall.Position.Y := HoleMin_Y;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; //ShowMessage(ImgBall.Position.X);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; If Clomosy.PlatformIsMobile Then DeviceMotionSensor.Active := False;//game stopped</div><div>&nbsp; &nbsp; &nbsp; &nbsp; BtnStartGame.Text := 'START GAME';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; MyForm.PlayGameSound(SoundIndex);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; myDeviceManager.Vibrate(1000);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Tebrikler');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; //Buraya</div><div>&nbsp; &nbsp; &nbsp; end;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; End;</div><div>&nbsp; End</div><div>&nbsp; Procedure BtnStartGameClick;</div><div>&nbsp; begin</div><div>&nbsp; &nbsp; GameTimer.Enabled := Not GameTimer.Enabled;</div><div>&nbsp; &nbsp; If GameTimer.Enabled Then BtnStartGame.Text := 'STOP GAME' ELSE BtnStartGame.Text := 'START GAME';</div><div>&nbsp; &nbsp; If GameTimer.Enabled Then</div><div>&nbsp; &nbsp; Begin</div><div>&nbsp; &nbsp; &nbsp; ImgBall.Align := alNone;</div><div>&nbsp; &nbsp; &nbsp; ImgBall.Position.x := 0;</div><div>&nbsp; &nbsp; &nbsp; ImgBall.Position.y := 0;</div><div>&nbsp; &nbsp; &nbsp; If Clomosy.PlatformIsMobile Then DeviceMotionSensor.Active := True;</div><div>&nbsp; &nbsp; End Else If Clomosy.PlatformIsMobile Then DeviceMotionSensor.Active := False;//game stopped</div><div>&nbsp; End;</div><div>&nbsp;&nbsp;</div><div>Begin</div><div>&nbsp; //exit;</div><div>&nbsp; MyForm := TclGameForm.Create(Self);</div><div>&nbsp; myDeviceManager := TclDeviceManager.Create;</div><div>&nbsp; MyForm.SetFormBGImage('https://i.hizliresim.com/hlu0bfg.jpeg');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddGameAssetFromUrl('https://www.clomosy.com/game/assets/win.wav');</div><div>&nbsp; SoundIndex := MyForm.RegisterSound('win.wav');</div><div>&nbsp; MyForm.SoundIsActive:=True;</div><div>&nbsp;&nbsp;</div><div>&nbsp; LblDisplay:= MyForm.AddNewLabel(MyForm,'LblDisplay','--');</div><div>&nbsp; LblDisplay.Align := alTop;</div><div>&nbsp; LblDisplay.Visible := False;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; BtnStartGame:= MyForm.AddNewButton(MyForm,'BtnStartGame','START GAME');</div><div>&nbsp; BtnStartGame.Align := alBottom;</div><div>&nbsp; BtnStartGame.Height:=30;</div><div>&nbsp; BtnStartGame.StyledSettings := ssFamily;</div><div>&nbsp; BtnStartGame.TextSettings.FontColor := clAlphaColor.clHexToColor('#FFFFFF');</div><div>&nbsp; BtnStartGame.Margins.Bottom := 50;</div><div>&nbsp; //BtnStartGame.Visible := False;</div><div>&nbsp; MyForm.AddNewEvent(BtnStartGame,tbeOnClick,'BtnStartGameClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ImgHole := MyForm.AddNewProImage(MyForm,'ImgHole');</div><div>&nbsp; ImgHole.clSetImage('https://clomosy.com/educa/station.png');</div><div>&nbsp; ImgHole.Margins.Top:=820;</div><div>&nbsp; ImgHole.Margins.Bottom:=55;</div><div>&nbsp; ImgHole.Properties.AutoSize := False;</div><div><br></div><div>&nbsp; ImgBall := MyForm.AddNewProImage(MyForm,'ImgBall');</div><div>&nbsp; ImgBall.clSetImage('https://i.hizliresim.com/sz38vc4.png');</div><div>&nbsp; ImgBall.Width := 50;</div><div>&nbsp; ImgBall.Height := 50;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ImgBall.Align := alCenter;</div><div>&nbsp;&nbsp;</div><div>&nbsp; //ShowMessage(ImgBall.Position.Y);</div><div>&nbsp; HoleMin_X := ImgBall.Position.X;</div><div>&nbsp; HoleMax_X := HoleMin_X + ImgBall.Width; // Ball must be placed inside these coordinates</div><div>&nbsp;&nbsp;</div><div>&nbsp; HoleMin_Y := ImgBall.Position.Y+18;//LblDisplay.Visible true oldugunda orta nokta alınırken android de yanlış hesaplanıyor</div><div>&nbsp; HoleMax_Y := HoleMin_Y + ImgBall.Height;</div><div>&nbsp; ImgBall.Align := alNone;</div><div>&nbsp; ImgBall.Position.Y := HoleMin_Y;</div><div>&nbsp; //ShowMessage(ImgBall.Position.Y);</div><div>&nbsp; //ShowMessage(HoleMin_Y);</div><div>&nbsp; DeviceMotionSensor := MyForm.AddNewSensorsMotion(MyForm,'DeviceMotionSensor');</div><div>&nbsp; GameTimer:= MyForm.AddNewTimer(MyForm,'GameTimer',1000);</div><div>&nbsp; GameTimer.Interval := 30;//30 m.saniye aralıklarla&nbsp;</div><div>&nbsp; GameTimer.Enabled := False;</div><div>&nbsp; MyForm.AddNewEvent(GameTimer,tbeOnTimer,'ProcOnGameTimer');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>&nbsp;&nbsp;</div><div>End;</div>]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 18:12:33 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=610#610</guid>
  </item> 
  <item>
   <title><![CDATA[Jireskop özelliği : M&#252;mk&#252;nse hata ya&#351;ad&#305;&#287;&#305;n&#305;z kodu...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=608#608</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 16:56<br /><br />Mümkünse hata yaşadığınız kodu paylaşır mısınız?]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 16:56:30 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=608#608</guid>
  </item> 
  <item>
   <title><![CDATA[Jireskop özelliği : Jireskop un &#231;al&#305;&#351;mas&#305;nda herhangi...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=606#606</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=119">ibrahimethem</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 15:39<br /><br />Jireskop un çalışmasında herhangi bir sorun olmuyor telefon ekranını yan çevirdiğim zaman çalışmıyor]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 15:39:43 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=606#606</guid>
  </item> 
  <item>
   <title><![CDATA[Jireskop özelliği : Jiroskop &#246;zelli&#287;ini &#351;uan tekrar...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=605#605</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 15:30<br /><br />Jiroskop özelliğini şuan tekrar denedim, çalışıyor.<div><br></div><div>Belki telefonunuz desteklemiyor olabilir.</div>]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 15:30:12 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=605#605</guid>
  </item> 
  <item>
   <title><![CDATA[Jireskop özelliği : Ufo oyunun jireskop &#246;zelli&#287;ini...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=599#599</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=119">ibrahimethem</a><br /><strong>Konu:</strong> 533<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 14:58<br /><br />Ufo oyunun jireskop özelliğini kullanarak futbol oyunu yapmak için uğraşıyorum fakat telefonu yan çevirdiğim zaman jireskop çalışmıyor yan şekilde çalışmak istiyorum bunun için bi çözüm var mı?<div><br></div>]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 14:58:20 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=533&amp;PID=599#599</guid>
  </item> 
 </channel>
</rss>