<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Эффекты тем (symbian 9.3)]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=11634</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11634&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Эффекты тем (symbian 9.3)».]]></description>
		<lastBuildDate>Sat, 20 Aug 2016 12:42:19 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Эффекты тем (symbian 9.3)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=106927#p106927</link>
			<description><![CDATA[<p>Для тех, кто не в курсе что такое simbyan 9.3, лучше выложить видео.</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Sat, 20 Aug 2016 12:42:19 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=106927#p106927</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Эффекты тем (symbian 9.3)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=106921#p106921</link>
			<description><![CDATA[<p>Позволю себе приподнять тему. Спасибо.</p>]]></description>
			<author><![CDATA[null@example.com (yarrroslav)]]></author>
			<pubDate>Sat, 20 Aug 2016 10:33:57 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=106921#p106921</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Эффекты тем (symbian 9.3)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=104231#p104231</link>
			<description><![CDATA[<p><strong>teadrinker</strong>, поправил.</p>]]></description>
			<author><![CDATA[null@example.com (yarrroslav)]]></author>
			<pubDate>Wed, 25 May 2016 20:07:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=104231#p104231</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Эффекты тем (symbian 9.3)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=104228#p104228</link>
			<description><![CDATA[<p><span style="color: green"><strong>yarrroslav</strong>, ознакомьтесь с <a href="http://forum.script-coding.com/viewtopic.php?id=6148">этой</a> темой, отредактируйте заголовок.</span></p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 25 May 2016 19:55:40 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=104228#p104228</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Эффекты тем (symbian 9.3)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=104227#p104227</link>
			<description><![CDATA[<p>Предположим, с помощью ахк сделать сворачивание\разворачивание окон с этими же эффектами тем.</p>]]></description>
			<author><![CDATA[null@example.com (yarrroslav)]]></author>
			<pubDate>Wed, 25 May 2016 19:51:21 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=104227#p104227</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Эффекты тем (symbian 9.3)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=104226#p104226</link>
			<description><![CDATA[<p>Добрый день, уважаемые.<br />От мечты к вопросу:<br />На simbyan 9.3 (и выше) есть такая опция &quot;Эффекты тем&quot;, которая добавляла к Темам еще дополнительные анимации при переключении окон, вызовах менюшек и прочия.<br />Вот как выглядел изнутри файл AppActivate_default.kml, украшивающий переходы из одного активного приложения в другое (активное)<br /></p><div class="codebox"><pre><code>&lt;container&gt;
  
  &lt;fx:imagefadeeffect id=&quot;fadeeffect&quot;
    x=&quot;0&quot; y=&quot;0&quot; width=&quot;{screen.width}&quot; height=&quot;{screen.height}&quot; 
    src1=&quot;screen.srcA&quot;
    src2=&quot;screen.srcB&quot;
    alphamap=&quot;AppActivate.png&quot;
    fill=&quot;#ff8000&quot;
    fadelevel=&quot;0&quot;
    fadewidth=&quot;0.8&quot; /&gt;

  &lt;pixeleffect id=&quot;colorize&quot; type=&quot;colorize&quot; width=&quot;{screen.width}&quot; height=&quot;{screen.height}&quot; color=&quot;#3f8000&quot; luminance=&quot;0&quot; chrominance=&quot;1&quot; opacity=&quot;0&quot;/&gt;

  &lt;action on=&quot;DoTransition&quot; onEnd=&quot;FinishedTransition&quot;&gt;
    
    &lt;animate targetNode=&quot;colorize&quot; targetAttr=&quot;opacity&quot; dur=&quot;300ms&quot; begin=&quot;200ms&quot; 
      keyValues=&quot;0,0.5,0&quot;
      keyEase=&quot;0;1,-1;0&quot;
      keyTimes=&quot;0,0.4,1.0&quot;
    /&gt;  
    &lt;animate targetNode=&quot;fadeeffect&quot; targetAttr=&quot;fadelevel&quot; from=&quot;0.6&quot; to=&quot;1&quot; begin=&quot;0ms&quot; dur=&quot;400ms&quot; /&gt;
  
  &lt;/action&gt;

&lt;/container&gt;</code></pre></div><p>Как видно из кода - дополнительно к этому файлу требуется png картика в 8битном (чернобелом) формате, выполнявшая роль альфамапы..<br />Эти файлы я редактировал вдоль и впоперёк, создавая себе свои эффекты тем.<br /><span style="color: #0a3193">Суть вопроса</span>: Возможно ли с помощью ахк использовать подобные опции\эффекты (уж незнаю как правильнее назвать) как вот &quot;colorize&quot;, &quot;opacity&quot;,&nbsp; alphamap, fadewidth и подобные?<br />Для простого начала: с помощью ахк сделать сворачивание\разворачивание окон с этими же эффектами тем.</p>]]></description>
			<author><![CDATA[null@example.com (yarrroslav)]]></author>
			<pubDate>Wed, 25 May 2016 19:45:57 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=104226#p104226</guid>
		</item>
	</channel>
</rss>
