<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>http://digida.mgpu.ru/index.php?action=history&amp;feed=atom&amp;title=How_to_Create_a_Zoom_Effect</id>
	<title>How to Create a Zoom Effect - История изменений</title>
	<link rel="self" type="application/atom+xml" href="http://digida.mgpu.ru/index.php?action=history&amp;feed=atom&amp;title=How_to_Create_a_Zoom_Effect"/>
	<link rel="alternate" type="text/html" href="http://digida.mgpu.ru/index.php?title=How_to_Create_a_Zoom_Effect&amp;action=history"/>
	<updated>2026-05-25T18:30:51Z</updated>
	<subtitle>История изменений этой страницы в вики</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://digida.mgpu.ru/index.php?title=How_to_Create_a_Zoom_Effect&amp;diff=1882&amp;oldid=prev</id>
		<title>Patarakin: 1 версия импортирована</title>
		<link rel="alternate" type="text/html" href="http://digida.mgpu.ru/index.php?title=How_to_Create_a_Zoom_Effect&amp;diff=1882&amp;oldid=prev"/>
		<updated>2022-07-21T08:33:18Z</updated>

		<summary type="html">&lt;p&gt;1 версия импортирована&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Предыдущая версия&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Версия от 11:33, 21 июля 2022&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Patarakin</name></author>
	</entry>
	<entry>
		<id>http://digida.mgpu.ru/index.php?title=How_to_Create_a_Zoom_Effect&amp;diff=1881&amp;oldid=prev</id>
		<title>scratch&gt;Jvvg в 21:50, 6 июня 2022</title>
		<link rel="alternate" type="text/html" href="http://digida.mgpu.ru/index.php?title=How_to_Create_a_Zoom_Effect&amp;diff=1881&amp;oldid=prev"/>
		<updated>2022-06-06T21:50:18Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{expand|date=March 2021}}&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;zoom effect&amp;#039;&amp;#039;&amp;#039; is when a [[sprite]] zooms in when it is clicked or held, but when the mouse lets go, it goes back to its normal [[size (value)|size]]. The zoom effect can be used on a sprite or background.&lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
===Method 1===&lt;br /&gt;
This is the following script to make a sprite zoom in (for a method where the sprite can be moved by the mouse when zoomed in, see Method 2):&lt;br /&gt;
{{note|There is a sprite size limit. To know what the sprites size limit is, enter a large number. The number the replaces the large number is the size limit.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;scratchblocks&amp;gt;&lt;br /&gt;
when gf clicked&lt;br /&gt;
set size to (. . .::grey)%&lt;br /&gt;
forever&lt;br /&gt;
if &amp;lt;&amp;lt;touching (mouse pointer v)?&amp;gt; and &amp;lt;mouse down?&amp;gt;&amp;gt; then&lt;br /&gt;
repeat until &amp;lt;(size) = (. . .::grey)&amp;gt;//Make sure this number is less than the sprites size limit or this script will break.&lt;br /&gt;
change size by (. . .::grey)//Make sure this number is less than the sprites size limit or this script will break.&lt;br /&gt;
end&lt;br /&gt;
else&lt;br /&gt;
repeat until &amp;lt;(size) = (. . .::grey)&amp;gt;// Set this to the regular size.&lt;br /&gt;
change size by (. . .::grey)//Must be the number that increases the image but negative (i.e 10 becomes -10)&lt;br /&gt;
end&lt;br /&gt;
end&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/scratchblocks&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Method 2===&lt;br /&gt;
This is the following script to make a sprite zoom in and be able to move (for a method where the sprite zooms in but can not be moved, see Method 1):&lt;br /&gt;
&lt;br /&gt;
{{note|There is a sprite size limit. To know what the sprites size limit is, enter a large number. The number the replaces the large number is the size limit.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;scratchblocks&amp;gt;&lt;br /&gt;
when gf clicked&lt;br /&gt;
set size to (. . .::grey)%&lt;br /&gt;
go to x: (. . .::grey) y: (. . .::grey)//Set the x and y to the regular x and y position.&lt;br /&gt;
forever&lt;br /&gt;
if &amp;lt;&amp;lt;touching (mouse pointer v)?&amp;gt; and &amp;lt;mouse down?&amp;gt;&amp;gt; then&lt;br /&gt;
repeat until &amp;lt;(size) = (. . .::grey)&amp;gt;//Make sure this number is less than the sprites size limit or this script will break.&lt;br /&gt;
change size by (. . .::grey)//Make sure this number is less than the sprites size limit or this script will break.&lt;br /&gt;
end&lt;br /&gt;
repeat until &amp;lt;not &amp;lt;mouse down?&amp;gt;&amp;gt;&lt;br /&gt;
go to (mouse pointer v)&lt;br /&gt;
end&lt;br /&gt;
else&lt;br /&gt;
repeat until &amp;lt;(size) = (. . .::grey)&amp;gt;// Set this to the regular size.&lt;br /&gt;
change size by (. . .::grey)//Must be the number that increases the image but negative (i.e 10 becomes -10)&lt;br /&gt;
end&lt;br /&gt;
go to x: (. . .::grey) y: (. . .::grey)//Set the x and y to the regular position.&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/scratchblocks&amp;gt;&lt;br /&gt;
[[Category:Scripting Tutorials|Zoom Tutorial]]&lt;/div&gt;</summary>
		<author><name>scratch&gt;Jvvg</name></author>
	</entry>
</feed>