﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>ActionScript.lt KVA - Paskutiniai klausimai</title>
<link>http://www.actionscript.lt/kva/questions</link>
<description>Powered by Question2Answer</description>
<item>
<title>Active button {AS3}</title>
<link>http://www.actionscript.lt/kva/18/active-button-as3</link>
<description>&lt;script type=&quot;text/javascript&quot; src=&quot;../qa-plugin/syntax-highlighter/scripts/shCore.js&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;../qa-plugin/syntax-highlighter/scripts/shAutoloader.js&quot;&gt;&lt;/script&gt;&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;../qa-plugin/syntax-highlighter/styles/shCoreDefault.css&quot;/&gt;Sveiki.&lt;br /&gt;
Susiduriau su gan kartu lengva ir nelengva uzduotimi.&lt;br /&gt;
&lt;br /&gt;
Nesugebu padaryti buttonu ant kurio paspaudus jis isliktu aktyvus(paspaustas-isryskejes),o kuris buvo aktyvus pasidarytu neaktivus(nepaspaustas)..&lt;br /&gt;
&lt;br /&gt;
Visa logikos esme kaip ir suprantu,tik nemoku tai atlikti praktiskai.&lt;br /&gt;
Iskarto pasakau kad buttonai ne 1 ir ne 2.&lt;br /&gt;
&lt;br /&gt;
Geriausia butu kad padetumete per skype: tadasjazokas&lt;script type=&quot;text/javascript&quot;&gt;
				var hl_oldOnLoad = window.onload; 
				window.onload = function(){
					if (typeof hl_oldOnLoad == 'function')  
						hl_oldOnLoad(); 
					SyntaxHighlighter.autoloader(
						'applescript            ../qa-plugin/syntax-highlighter/scripts/shBrushAppleScript.js',
						'actionscript3 as3      ../qa-plugin/syntax-highlighter/scripts/shBrushAS3.js',
						'bash shell             ../qa-plugin/syntax-highlighter/scripts/shBrushBash.js',
						'coldfusion cf          ../qa-plugin/syntax-highlighter/scripts/shBrushColdFusion.js',
						'cpp c                  ../qa-plugin/syntax-highlighter/scripts/shBrushCpp.js',
						'c# c-sharp csharp      ../qa-plugin/syntax-highlighter/scripts/shBrushCSharp.js',
						'css                    ../qa-plugin/syntax-highlighter/scripts/shBrushCss.js',
						'delphi pascal          ../qa-plugin/syntax-highlighter/scripts/shBrushDelphi.js',
						'diff patch pas         ../qa-plugin/syntax-highlighter/scripts/shBrushDiff.js',
						'erl erlang             ../qa-plugin/syntax-highlighter/scripts/shBrushErlang.js',
						'groovy                 ../qa-plugin/syntax-highlighter/scripts/shBrushGroovy.js',
						'java                   ../qa-plugin/syntax-highlighter/scripts/shBrushJava.js',
						'jfx javafx             ../qa-plugin/syntax-highlighter/scripts/shBrushJavaFX.js',
						'js jscript javascript  ../qa-plugin/syntax-highlighter/scripts/shBrushJScript.js',
						'perl pl                ../qa-plugin/syntax-highlighter/scripts/shBrushPerl.js',
						'php                    ../qa-plugin/syntax-highlighter/scripts/shBrushPhp.js',
						'text plain             ../qa-plugin/syntax-highlighter/scripts/shBrushPlain.js',
						'py python              ../qa-plugin/syntax-highlighter/scripts/shBrushPython.js',
						'ruby rails ror rb      ../qa-plugin/syntax-highlighter/scripts/shBrushRuby.js',
						'sass scss              ../qa-plugin/syntax-highlighter/scripts/shBrushSass.js',
						'scala                  ../qa-plugin/syntax-highlighter/scripts/shBrushScala.js',
						'sql                    ../qa-plugin/syntax-highlighter/scripts/shBrushSql.js',
						'vb vbnet               ../qa-plugin/syntax-highlighter/scripts/shBrushVb.js',
						'xml xhtml xslt html    ../qa-plugin/syntax-highlighter/scripts/shBrushXml.js'
					);
					SyntaxHighlighter.config.stripBrs = true;
					SyntaxHighlighter.all()
				}
	
				&lt;/script&gt;</description>
<category>Flash</category>
<guid isPermaLink="true">http://www.actionscript.lt/kva/18/active-button-as3</guid>
<pubDate>Thu, 07 Jul 2011 18:56:30 +0000</pubDate>
</item>
<item>
<title>Kodo žymėjimas</title>
<link>http://www.actionscript.lt/kva/10/kodo-%C5%BEym%C4%97jimas</link>
<description>Kodą savo klausimuose galite žymėti taip kaip rašoma čia:&lt;br /&gt;
&lt;A HREF=&quot;http://quanda.pl/index.php?qa=download&quot; rel=&quot;nofollow&quot;&gt;http://quanda.pl/index.php?qa=download&lt;/A&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Čia veikiantis žymėjimo pavyzdys:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;brush: as3&quot;&gt;
package {
&amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; import flash.display.MovieClip;
&amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; public class Main extends MovieClip {
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /**
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* Class constructor
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* @param args Array of arguments
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public function Main ( ... args ) {
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; trace( args )
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; }
&amp;nbsp; &amp;nbsp; 
}
&lt;/pre&gt;</description>
<guid isPermaLink="true">http://www.actionscript.lt/kva/10/kodo-%C5%BEym%C4%97jimas</guid>
<pubDate>Mon, 07 Mar 2011 11:34:14 +0000</pubDate>
</item>
<item>
<title>Kokia jūsų nuomonė apie šią sistemą?</title>
<link>http://www.actionscript.lt/kva/1/kokia-j%C5%ABs%C5%B3-nuomon%C4%97-apie-%C5%A1i%C4%85-sistem%C4%85</link>
<description>&lt;p&gt;
	Sveiki,&lt;/p&gt;
&lt;p&gt;
	kaip matote, tai yra pirmasis klausimas KVA (&lt;strong&gt;K&lt;/strong&gt;lausimas, &lt;strong&gt;V&lt;/strong&gt;at ir&amp;nbsp;&lt;strong&gt;A&lt;/strong&gt;tsakymas)&amp;nbsp;sistemoje. Čia nepadaryta dar daugybė dalykų (vertimai, prisijungimai su Google, LinkedIn, Twitter paskiromis). Nesubalnsuotas taškų skaičiavimas mūsų bendruomenės reikmėms.&lt;/p&gt;
&lt;p&gt;
	Tačiau, jau dabar galite prisijungti naudojant savo Facebook paskirą.&lt;/p&gt;
&lt;p&gt;
	Jei pastebėsite dar ką nors - parašykite.&lt;/p&gt;</description>
<guid isPermaLink="true">http://www.actionscript.lt/kva/1/kokia-j%C5%ABs%C5%B3-nuomon%C4%97-apie-%C5%A1i%C4%85-sistem%C4%85</guid>
<pubDate>Mon, 07 Mar 2011 10:01:50 +0000</pubDate>
</item>
</channel>
</rss>
