Feeds:
Posts
Comments

Archive for the ‘Computer Science’ Category

import mx.transitions.*; import mx.transitions.easing.*; TransitionManager.start(some_mc, {type:Fade, direction:Transition.IN, duration:3, easing:Strong.easeOut}); Legenda: Blinds La classe Blinds mostra l’oggetto clip filmato mediante rettangoli che scompaiono o compaiono. Fade La classe Fade applica all’oggetto clip filmato una dissolvenza in entrata o in uscita. Fly La classe Fly fa comparire l’oggetto clip filmato facendolo scorrere da una direzione particolare. Iris [...]

Read Full Post »

System Menu, then Administration, then Synaptic In Settings, Packet Archives, Thirdy party Software add: deb http://ppa.launchpad.net/stemp/ubuntu intrepid main go in Synaptic and search: synfig install synfigstudio and all dependencies proposed bye!

Read Full Post »

Open the terminal and with root privileges type this commands: echo deb http://akirad.cinelerra.org akirad-intrepid main | sudo tee /etc/apt/sources.list.d/akirad.list wget -q http://akirad.cinelerra.org/dists/akirad.key -O- | sudo apt-key add – sudo apt-get update sudo apt-get install cinelerra

Read Full Post »

_timer = new Timer(1000, 1); _timer.addEventListener(TimerEvent.TIMER, function(event:Event):void { // show the next panel showPanel(index++);});

Read Full Post »

STRUTS 2 Best Practices

La bibbia di struts 2 è su: http://struts.apache.org/2.0.11.2/docs/guides.html 1) nei tag struts delle pagine jsp può essere invocata la action tramite elemento action=”” che può contenere: il name della <action name=”” >.. oppure contestuale esempio “#{action.Cerca}” che chiama il metodo Cerca della classe action (pojo class) associata 2) i nomi delle azioni sono mappati su [...]

Read Full Post »

var tl:TileList = TileList( event.currentTarget ); var thumb:Thumbnail = Thumbnail(tl.indexToItemRenderer(ind)); var img:Image = thumb.image;

Read Full Post »

SET NOCOUNT ON CREATE TABLE #RowNumber ( RowNumber int IDENTITY (1, 1), emp_id char(9) ) INSERT #RowNumber (emp_id) SELECT emp_id FROM employee WHERE job_id = 10 ORDER BY lname SELECT RowNumber, e.emp_id, lname, fname, job_id FROM #RowNumber r JOIN employee e ON r.emp_id = e.emp_id ORDER BY RowNumber DROP TABLE #RowNumber SET NOCOUNT OFF

Read Full Post »

First of all create a images directory in your flex project folder, then add your icons to it. After that remember to set properly the icon attribute of your mx:Button element: <mx:Button icon=”@Embed(‘/images/youricon.png’)”    click=”makesomething()”    toolTip=”This button does…”/>

Read Full Post »

DECLARE @idoc int DECLARE @doc nvarchar(300) SET @doc = ‘<?xml version=”1.0″ ?> <ROOT> <Shippers ShipperID=”4″ CompanyName=”The RoadRunner” Phone=”(503) 666-9831″/> <Shippers ShipperID=”5″ CompanyName=”Speedy Gonzalez” Phone=”(503) 666-3199″/> </ROOT>’ EXEC sp_xml_preparedocument @idoc OUTPUT, @doc INSERT Northwind..Shippers SELECT * FROM OPENXML (@idoc, N’/ROOT/Shippers’)           WITH Northwind..Shippers EXEC sp_xml_removedocument @idoc

Read Full Post »

Non serivirà a granchè (visti i precedenti risultati delle petizioni già mandate a Gentiloni and company), però forse siccome a promuoverla è Beppe Grillo, magari questa volta un po’ più di rumore si fa… Firmate gente, il WIMAX è NOSTRO e deve essere LIBERO, GRATIS , FREE!!! Cliccate sulla faccia di Gentiloni per firmare la petizione…

Read Full Post »

Older Posts »

Follow

Get every new post delivered to your Inbox.