<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>popup &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/popup/</link>
	<description>Feed of posts on WordPress.com tagged "popup"</description>
	<pubDate>Tue, 01 Dec 2009 16:44:53 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Effing glorious]]></title>
<link>http://sweetetcetera.wordpress.com/2009/12/01/effing-glorious/</link>
<pubDate>Tue, 01 Dec 2009 06:31:27 +0000</pubDate>
<dc:creator>sweetetcetera</dc:creator>
<guid>http://sweetetcetera.wordpress.com/2009/12/01/effing-glorious/</guid>
<description><![CDATA[Filling Little Thoughts With Little Ears Joe Sorren is disgustingly good. I&#8217;ve not seen much w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_799" class="wp-caption aligncenter" style="width: 389px"><a href="http://sweetetcetera.wordpress.com/files/2009/12/filling-little-thoughts-with-little-ears.jpg"><img class="size-medium wp-image-799" title="filling little thoughts with little ears" src="http://sweetetcetera.wordpress.com/files/2009/12/filling-little-thoughts-with-little-ears.jpg?w=299" alt="" width="379" height="380" /></a><p class="wp-caption-text">Filling Little Thoughts With Little Ears</p></div>
<p><a title="joe sorren" href="http://joesorren.com/">Joe Sorren</a> is disgustingly good. I&#8217;ve not seen much work of his that hasn&#8217;t caused me to salivate.</p>
<p>I already own two cloth-bound hardbacks of his work: the collection <em>In Celebration of Balance and Opposable Thumbs,</em> and one documenting his exhibition <em>When She Was Camera</em>.</p>
<p>The latter book provided me with my first Sorren print, which accompanied it, noted as a &#8216;finger painting&#8217; -  its texture is a bit like one, but the figure of the portrait also has a small finger coming out the top of its head.</p>
<p>I&#8217;m distracted&#8230;</p>
<p>Today I bought the above. It&#8217;s as the title to this post says. Discovered at the treasure trove that is <a title="popup" href="http://www.popup.co.nz/pop.html">Popup</a>, it is one of 45 signed prints worldwide. As soon as I opened the display draw half an inch I knew who the work was by, and the more that came into view the more excited I became.</p>
<p>The arhythmic heart patterns that followed had me so concerned I had to buy it to resolve a dangerous health issue.</p>
<p>It&#8217;s a reasonably large print, and is brilliant above the bed, in pride of place. The theme, as the title suggests, is rather circular. Probably hard to pick out at this scale, the amorphous figures, adorning and even cocooning out of the tree, are both conveying words from the main figure and whispering back to him in a loop. There are other parallels and resonances in the detail.</p>
<p>There is too much that I like about Sorren, but one of the key points, brought out in a work like this, is the way he plays with layers and texture.</p>
<p>His website / blog has a great demonstration of a <a title="painting in progress" href="http://joesorren.com/wordpress/?page_id=75">painting in progress</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Change the color of modal part of the screen when showing popUp's]]></title>
<link>http://engineeringtheworld.wordpress.com/2009/11/25/change-the-color-of-modal-part-of-the-screen-when-showing-popups/</link>
<pubDate>Wed, 25 Nov 2009 14:56:50 +0000</pubDate>
<dc:creator>Ladislav Klinc</dc:creator>
<guid>http://engineeringtheworld.wordpress.com/2009/11/25/change-the-color-of-modal-part-of-the-screen-when-showing-popups/</guid>
<description><![CDATA[So in previous two examples we have dived into how to make and show popUp&#8217;s in your Flex appli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So in previous two examples we have dived into how to make and show popUp&#8217;s in your Flex application. What if for example we have a Flex application that has a white background and when we show the popUp, we want the color of modal part to be a little darker. See two images below.</p>
<p align="center"><div id="attachment_92" class="wp-caption alignnone" style="width: 481px"><a href="http://engineeringtheworld.wordpress.com/files/2009/11/modalcolor1.jpg"><img src="http://engineeringtheworld.wordpress.com/files/2009/11/modalcolor1.jpg" alt="" title="modalColor1" width="471" height="237" class="size-full wp-image-92" /></a><p class="wp-caption-text">We would want the background around the popUp to be darker</p></div></p>
<p align="center"><div id="attachment_93" class="wp-caption alignnone" style="width: 481px"><a href="http://www.tdteam.com/work/engineeringtheworld/popUpEng1.swf"><img src="http://engineeringtheworld.wordpress.com/files/2009/11/modalcolor2.jpg" alt="" title="modalColor2" width="471" height="237" class="size-full wp-image-93" /></a><p class="wp-caption-text">Looks much better doesnt it</p></div></p>
<p>As you can see the 2nd popUp looks a bit nicer than the first. We can set the modalColor of our popUps to any color we like. We have 4 styles that are associated with popUp&#8217;s and Alerts in Flex. Those are:</p>
<ul>
<li>modalTransparencyColor &#8211; color of the modal part of the screen</li>
<li>modalTransparency &#8211; transparency of the modal part of the screen, goes from 0 &#8211; fully transparent to 1 &#8211; no transparecy</li>
<li>modalTransparencyBlur &#8211; blur of the background</li>
<li>modalTransparencyDuration &#8211; how long should be the transition of modal part of the screen from not visible to fully visible</li>
</ul>
<p>We have to set this styles in our Application MXML tag or Application styleTag when using stylesheets. For our example we used modalTransparencyColor=&#8221;#000000&#8243; (black) and modalTransparency=&#8221;0.7&#8243;. Just playing a bit with these 4 styles can yield some interesting results when dealing with popUp&#8217;s and Alerts in Flex.</p>
<p>Happy Coding <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Graveyard Pop Up]]></title>
<link>http://rachelcreative.wordpress.com/2009/11/24/graveyard-pop-up/</link>
<pubDate>Tue, 24 Nov 2009 11:09:33 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/11/24/graveyard-pop-up/</guid>
<description><![CDATA[Pop up drawing of a gothic graveyard made for a friend.  Drawn from her blogged photos of one of a l]]></description>
<content:encoded><![CDATA[Pop up drawing of a gothic graveyard made for a friend.  Drawn from her blogged photos of one of a l]]></content:encoded>
</item>
<item>
<title><![CDATA[How to create a popUp in Flex]]></title>
<link>http://engineeringtheworld.wordpress.com/2009/11/23/how-to-create-a-popup-in-flex/</link>
<pubDate>Mon, 23 Nov 2009 16:18:43 +0000</pubDate>
<dc:creator>Ladislav Klinc</dc:creator>
<guid>http://engineeringtheworld.wordpress.com/2009/11/23/how-to-create-a-popup-in-flex/</guid>
<description><![CDATA[Today I am going to show you how easy it is to show popUp windows in your Flex application. Above is]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Today I am going to show you how easy it is to show popUp windows in your Flex application.</p>
<p align="center">
<a href="http://www.tdteam.com/work/engineeringtheworld/popUpEng.swf"><img src="http://engineeringtheworld.wordpress.com/files/2009/11/popupapp.jpg" alt="" title="popUpApp" width="563" height="259" class="alignnone size-full wp-image-74" /></a></p>
<p>Above is a picture of our simple application that only has one label and a button, when we press the button a nice popup with rounded corners pops up and if we click close button in the popup it disappears.</p>
<p>In order to make this work, we have to build two files, one will be our application with the text and button to show popup and another file that will be a MXML component (in Flex Builder you just go to File -&#62; New -&#62; MXML Component). Both of the files have to be saved in the same directory on order for this example to work.</p>
<p align="center">
<div id="attachment_76" class="wp-caption alignnone" style="width: 653px"><a href="http://engineeringtheworld.wordpress.com/files/2009/11/popup1.jpg"><img src="http://engineeringtheworld.wordpress.com/files/2009/11/popup1.jpg" alt="" title="popup1" width="643" height="257" class="size-full wp-image-76" /></a><p class="wp-caption-text">Application source code</p></div></p>
<p>To use popups Flex has a manager that is devoted specially for that. In our Application under script tags we import <strong>mx.managers.PopUpManager</strong>. This will allow us to show the popup windows, center them and close them when needed.</p>
<p>As you can see above the application is very basic, on the button click we call showPopUp() function. In this function we first declare a local variable of type IFlexDisplayObject, because this is what createPopUp method from PopUpManager returns. </p>
<p>createPopUp method accepts 4 arguments, 2 of them are optional. First we have to specify the parent of the Popup, this will help Flex set up coordinates and such when we want to later center the popup. Since we want to have our application as the parent we input <strong>this</strong> as first parameter. </p>
<p>Second parameter we input the name of the MXML component that we made as our PopUp window, in our example file is popUpWindow.mxml, thus we put popUpWindow as second parameter. </p>
<p>The third parameter is optional &#8211; modal:Boolean, so it can be either true or false. If we set it to true, than we will not be able to do anything other than interact with popUp window, if it is set to false, than we can still interact with application even when our popUp is on screen. </p>
<p>All there is to do now, it to center our new popUp window with PopUpManager.centerPopUp(popUp). The argument popUp is IFlexDisplayObject that we have created with PopUpManager.createPopUp() method.</p>
<p>Blow is the source of the popUpWindow.mxml file. The only thing worth noting here is that we have assigned a click action for a button, which calls PopUpManager.removePopUp() method. Arugment is <strong>this</strong>, since our mxml file is the popUp that we want to remove from stage.</p>
<p align="center"><div id="attachment_83" class="wp-caption alignnone" style="width: 570px"><a href="http://engineeringtheworld.wordpress.com/files/2009/11/popup2.jpg"><img src="http://engineeringtheworld.wordpress.com/files/2009/11/popup2.jpg" alt="" title="popup2" width="560" height="215" class="size-full wp-image-83" /></a><p class="wp-caption-text">popUpWindow.mxml file</p></div></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Panda Pop Up Card]]></title>
<link>http://rachelcreative.wordpress.com/2009/11/16/panda-pop-up-card/</link>
<pubDate>Mon, 16 Nov 2009 15:44:30 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/11/16/panda-pop-up-card/</guid>
<description><![CDATA[Pop up panda card made for customer on sale of panda painting. Drawn in ink and watercolour. Card is]]></description>
<content:encoded><![CDATA[Pop up panda card made for customer on sale of panda painting. Drawn in ink and watercolour. Card is]]></content:encoded>
</item>
<item>
<title><![CDATA[Rockpool - Pop Up Drawing]]></title>
<link>http://rachelcreative.wordpress.com/2009/11/09/rockpool-pop-up-drawing/</link>
<pubDate>Mon, 09 Nov 2009 12:31:56 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/11/09/rockpool-pop-up-drawing/</guid>
<description><![CDATA[Pop up drawing/card made for a friend and inspired by her blog post about visiting the rockpools in ]]></description>
<content:encoded><![CDATA[Pop up drawing/card made for a friend and inspired by her blog post about visiting the rockpools in ]]></content:encoded>
</item>
<item>
<title><![CDATA[MARION BATAILLE]]></title>
<link>http://davedevine.wordpress.com/2009/11/07/marion-bataille/</link>
<pubDate>Sat, 07 Nov 2009 21:15:23 +0000</pubDate>
<dc:creator>Dave</dc:creator>
<guid>http://davedevine.wordpress.com/2009/11/07/marion-bataille/</guid>
<description><![CDATA[I must say that I have always loved pop-up books; they&#8217;re pretty damn clever &#8212; and are a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I must say that I have always loved pop-up books; they&#8217;re pretty damn clever &#8212; and are a category or genre of their own. Recently my interest have been rekindled by reading pop-up children&#8217;s books at my kids&#8217; bedtimes.  Sadly, my little boy is in the middle of the terrible twos and so likes to destroy anything that has flaps or pop-ups.  Oh well.</p>
<p>Maybe when they&#8217;re older, and can appreciate the art of the pop-up, I will be able to get them something fabulous &#8212; possibly something like the works of Marion Bataille &#8212; check out <a href="http://www.abc3dbook.com/">www.abc3dbook.com/</a>.</p>
<p>The abc3d book is just wonderful, despite it&#8217;s simplicity, it remains creative and ingenious.</p>
<p style="text-align:center;"><em><span style="color:#888888;">embedded video from youtube.com</span></em>:</p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/wnZr0wiG1Hg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/wnZr0wiG1Hg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:left;">This is <a href="http://www.bloomsbury.com/childrens/authors/details.aspx?tpid=10810">Marion&#8217;s</a> first UK publication, so I wish her all the best. It&#8217;s available on <a href="http://www.amazon.co.uk/exec/obidos/ASIN/0747595798/davedevine-21">Amazon.co.uk</a></p>
<p style="text-align:left;"><span style="color:#00ff00;"><strong>§</strong></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[aspx popup window]]></title>
<link>http://arichuang.wordpress.com/2009/11/06/aspx-popup-window/</link>
<pubDate>Fri, 06 Nov 2009 20:12:58 +0000</pubDate>
<dc:creator>aric</dc:creator>
<guid>http://arichuang.wordpress.com/2009/11/06/aspx-popup-window/</guid>
<description><![CDATA[There are many ways to call a popup window from aspx. I only post the ones I have used. If you have ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There are many ways to call a popup window from aspx. I only post the ones I have used. If you have used other ways. Please feel free to contribute. Thanks.</p>
<p>Sorry for the lack of explanations, as I am still learning myself.</p>
<blockquote><p><span style="color:#3366ff;">Dim</span> <span style="color:#ff6600;">PopUpScript </span>As <span style="color:#3366ff;">String</span></p>
<p><span style="color:#ff6600;">PopUpScript </span>= &#8220;javascript: window.open(&#8216;Popup.aspx?&#8217;,'popupage&#8217;,&#8217;<span style="color:#993300;">scrollbars</span>=yes,<span style="color:#993300;">width</span>=790,<span style="color:#993300;">height</span>=510,<span style="color:#993300;">resizable</span>=no,<span style="color:#993300;">left</span>=10&#8242;)&#8221;</p>
<p><span style="color:#3366ff;">ScriptManager</span>.<span style="color:#3366ff;">RegisterStartupScript</span>(Me, Me.GetType(), &#8220;PopUpScript&#8221;, <span style="color:#ff6600;">PopUpScript</span>, True)</p></blockquote>
<p>To pass a variable ID to the next page, I use:</p>
<blockquote><p><span style="color:#ff6600;">PopUpScript </span>= &#8220;javascript: window.open(&#8216;Popup.aspx?ID=1&#8242;,&#8217;popupage&#8217;,&#8217;<span style="color:#993300;">scrollbars</span>=yes,<span style="color:#993300;">width</span>=790,<span style="color:#993300;">height</span>=510,<span style="color:#993300;">resizable</span>=no,<span style="color:#993300;">left</span>=10&#8242;)&#8221;</p></blockquote>
<p>2nd Method</p>
<blockquote><p><span style="color:#3366ff;">Protected Sub</span> lnkbutton_Click(<span style="color:#3366ff;">ByVal </span>sender <span style="color:#3366ff;">As Object</span>, <span style="color:#3366ff;">ByVal</span> e <span style="color:#3366ff;">As</span> System.EventArgs) <span style="color:#3366ff;">Handles </span>lnkbutton.Click</p>
<p><span style="color:#ff6600;">lnkbutton</span>.Attributes.Add(&#8220;onclick&#8221;, &#8220;window.open(&#8216;http://www.yahoo.com&#8217;,'null&#8217;,'height=768, width=1024,status= no, resizable=yes, scrollbars=yes, toolbar=no,location=no,menubar=no &#8216;);&#8221;)<br />
End Sub</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Deshabilitar el menú contextual en textbox y combos ]]></title>
<link>http://lumbanico.wordpress.com/2009/11/05/deshabilitar-el-menu-contextual-en-textbox-y-combos/</link>
<pubDate>Thu, 05 Nov 2009 13:00:12 +0000</pubDate>
<dc:creator>lumbanico</dc:creator>
<guid>http://lumbanico.wordpress.com/2009/11/05/deshabilitar-el-menu-contextual-en-textbox-y-combos/</guid>
<description><![CDATA[Este ejemplo utiliza un Hook para interceptar los mensajes de Windows que llegan a nuestra aplicació]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Este ejemplo utiliza un Hook para interceptar los mensajes de Windows que llegan a nuestra aplicación, y de esta forma poder deshabilitar el menú contextual de un TextBox al hacer click derecho (el menú de copiar, pegar, seleccionar todo, &#8230;)</p>
<p style="text-align:justify;">Para inicializar el hook se debe llamar a la función <em>Hook</em> y para removerlo o finalizarlo , la función <em>UnHook</em>.</p>
<p style="text-align:justify;">A los dos procedimientos, se le debe pasar como parámetro el <em>Hwnd</em> del control Textbox.</p>
<p>Para deshabilitar el menú:</p>
<pre class="brush: vb;">
Call Hook (Text1.Hwnd)
</pre>
<p>Para habilitar el menú:</p>
<pre class="brush: vb;">
Call UnHook (Text1.hwnd)
</pre>
<p style="text-align:justify;">Colocar un control Textbox llamado Text1 en el formulario. El <em>Hook</em> o procedimiento que procesa los mensajes, debe estar obligatoriamente declarado en un modulo:</p>
<pre class="brush: vb;">
'Función Api SetWindowLong
Public Declare Function SetWindowLong Lib &#34;user32&#34; Alias &#34;SetWindowLongA&#34; (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
' Función Api CallWindowProc
Public Declare Function CallWindowProc Lib &#34;user32&#34; Alias &#34;CallWindowProcA&#34; (ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
'Constantes
' mensaje para el menú contextual
Public Const WM_CONTEXTMENU = &#38;H7B
Global lpPrevWndProc As Long
'Comienza el Hook
Public Sub Hook(Handle As Long)
lpPrevWndProc = SetWindowLong(Handle, -4, AddressOf WinProc)
End Sub
'Termina el Hook
Public Sub Unhook(Handle As Long)
Call SetWindowLong(Handle, -4, lpPrevWndProc)
End Sub
'Procedimiento chequea los mensajes que llegan para ver si se despliega el menú contextual en el textbox indicado
Public Function WinProc(ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
' Chequea si el mensaje  es WM_CONTEXTMENU (el menú contextual)
If Msg = WM_CONTEXTMENU Then
WinProc = True
Else
WinProc = CallWindowProc(lpPrevWndProc, hWnd, Msg, wParam, lParam)
End If
End Function
</pre>
<p>Y colocar esto en el formulario:</p>
<pre class="brush: vb;">
Option Explicit
Private Sub Form_Load()
'Inicializa el Hook ( Indicar el Textbox a deshabiltar )
Call Hook(Text1.hWnd)
End Sub
&#60;p&#62;Private Sub Form_Unload(Cancel As Integer)
'Remueve
Call Unhook(Text1.hWnd)
End Sub
</pre>
<p style="text-align:justify;">Si quisieramos deshabilitar el menú contextual de todos los controles textbox que hay en el form, podemos hacerlo con un bucle For Each:</p>
<pre class="brush: vb;">
Option Explicit
Private Sub Form_Load()
Dim Ctrl As Control
'Recorre todos los textbox del formulario
For Each Ctrl In Me.Controls
'Verifica que el control es un textbox
If TypeOf Ctrl Is TextBox Then
'Inicia el hook
Hook Ctrl.hWnd
End If
Next
End Sub
Private Sub Form_Unload(Cancel As Integer)
Dim Ctrl As Control
'Recorre en un bucle  todos los textbox del form
For Each Ctrl In Me.Controls
'¿ Es un textbox ?
If TypeOf Ctrl Is TextBox Then
'Finaliza el hook
Unhook Ctrl.hWnd
End If
Next
End Sub
</pre>
<p style="text-align:justify;">Otra forma de poder realizar esto <strong>sin un Hook</strong>, es creando nuestro propio menú con el editor de Visual basic, y en el evento mouseDown del textbox, desplegamos un menú propio:</p>
<pre class="brush: vb;">
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button &#60;&#62; vbRightButton Then Exit Sub
Text1.Enabled = False
Text1.Enabled = True
Text1.SetFocus
'Despliega el PopupMenu en el textbox
Me.PopupMenu mnu_popUp
End Sub
</pre>
<address>Fuente: <a href="http://www.recursosvisualbasic.com.ar/htm/trucos-codigofuente-visual-basic/21.htm">www.recursosvisualbasic.com.ar</a></address>
<p></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aviras Werbefenster blockieren]]></title>
<link>http://smaragd.wordpress.com/2009/11/05/aviras-werbefenster-blockieren/</link>
<pubDate>Thu, 05 Nov 2009 11:34:34 +0000</pubDate>
<dc:creator>Simsalabim</dc:creator>
<guid>http://smaragd.wordpress.com/2009/11/05/aviras-werbefenster-blockieren/</guid>
<description><![CDATA[Die meisten Nutzer stören sich bei der kostenlosen Avira AntiVir-Version über das Werbe-Popup. Mit W]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Die meisten Nutzer stören sich bei der kostenlosen Avira AntiVir-Version über das Werbe-Popup. Mit Windows-Bordmitteln gibt es eine einfache und legale Möglichkeit dies zu unterbinden.</p>
<p>Leider funktioniert dieser Trick nur ab der Professional-Edition, wie sie bei Windows XP und Windows 7 heißt und bei Windows Vista auf den Namen Business-Edition getauft wurde. Bei den Home-Editionen fehlt der Sicherheitsrichtlinien-Editor, hier hilft nur der Umweg über eine Registry-Änderung, wofür man im Netz einige vorgefertigte Dateien findet.</p>
<p>Ansonsten einfach folgende Schritte durchführen:</p>
<ul>
<li> Unter der Systemsteuerung, im Unterpunkt Verwaltung die lokalen Sicherheitsrichtlinien aufrufen</li>
<li>Dort unter den &#8220;Richtlinien für Softwareeinschränkung&#8221; auf die &#8220;zusätzlichen Regeln&#8221; klicken</li>
<li>Dort dann per Rechtsklick eine neue Pfadregel erstellen und als Pfad die &#8220;avnotify.exe&#8221; im Antivir-Installationsverzeichnis angeben (meistens unter C &#62; Programme &#62; Avira &#62; &#8230;)</li>
<li>Unter Sicherheitsstufe noch auf das &#8220;nicht erlaubt&#8221; achten und dann sollte das Werbefenster verschwunden sein</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Su Internet senza volto ]]></title>
<link>http://faberex.wordpress.com/2009/11/03/su-internet-senza-volto/</link>
<pubDate>Tue, 03 Nov 2009 19:30:37 +0000</pubDate>
<dc:creator>faberex</dc:creator>
<guid>http://faberex.wordpress.com/2009/11/03/su-internet-senza-volto/</guid>
<description><![CDATA[Sono sempre di più i siti che, quando visitiamo lo loro home page ci  salutano per nome,quasi come s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-full wp-image-2333" title="UnderCover" src="http://faberex.wordpress.com/files/2009/11/istock_000003171715small.jpg" alt="UnderCover" width="500" height="357" /></p>
<p>Sono sempre di più i siti che, quando visitiamo lo loro home page ci  salutano per nome,quasi come se a quel indirizzo fossimo ormai di casa. Eppure non ci siamo mai registrati , ne abbiamo mai fornito altri dati personali. Come è possibile? L’arcano mistero è presto svelato. Quando navighiamo su internet lasciamo sempre delle tracce che, se seguite permettono di risalire alla nostra identità. Può sembrare un problema da nulla , ma non lo è affatto .E’ un pò come avere sempre alle spalle qualcuno che ci spia e sa tutto quello che facciamo durante le nostre navigazioni. Per fortuna non è difficile difendersi , ma prima di farlo dobbiamo conoscere bene il nostro nemico.</p>
<p><strong>SIAMO TUTTI SCHEDATI</strong></p>
<p><strong> </strong></p>
<p>Ogni volta che ci colleghiamo a Internet ,il nostro Provider ci assegna un indirizzo <strong>IP</strong>,ovvero un gruppo di quattro numeri ,compresi tra 0 e 255, e separati da un punto ( ad esempio 217.201.196.16) A qualsiasi nostra azione compiuta in rete viene associato questa sorta di codice personale .Un indirizzo IP ‘ univoco e permette di identificare in ogni momento l’intestatario della linea telefonica usata per connettersi a Internet. In linea di principio ,soltanto i <strong>Provider</strong> e le autorità giudiziarie possono associare un indirizzo IP a una persona fisica .In realtà ,basta compilare un modulo di registrazione con i nostri dati per fornire di fatto all’amministratore di un sito la possibilità di identificarci e capire chi siamo , sul momento e in futuro anche mediante l’utilizzo di altri strumenti di controllo ,come i famigerati Cookie archiviati dal Browser , che tengano traccia delle nostre abitudini in rete. Non sono pochi ,poi i siti Web che vendono tutte le informazioni che hanno sul nostro conto ad aziende specializzate nelle ricerche di mercato che utilizzano a loro volta per inviarci pubblicità mirata tramite fastidiose finestre <strong>Popup</strong>.</p>
<p><!--more--></p>
<p><strong>RENDIAMOCI IRRICONOSCIBILI.</strong></p>
<p><strong> </strong></p>
<p>Per difendere il nostro anonimato , basta camuffare l’indirizzo IP assegnatoci dal Provider e mostrarne uno diverso ai siti Web che visitiamo. Occorre però camuffare adeguatamente il Browser, usando ad esempio i cosiddeti  <strong>Proxy</strong>, dei particolari dispositivi che fungono da intermediari tra il nostro sistema e il sito che vogliamo visitare, scaricano per noi le pagine nella loro memoria interna e solo dopo le inviano al nostro computer. Tutto questo “traffico” risulta completamente trasparente ai nostri occhi , ma permette di proteggere in maniera abbastanza efficace la nostra identità, in quanto al sito internet visitato risulterà solo l’indirizzo IP del Proxy e non il nostro.</p>
<p><strong>LA RETE? E’ ANONIMA ! </strong></p>
<p><strong> </strong></p>
<p>L’utilizzo di un semplice Proxy , per quanto efficiente non basta però a garantire il perfetto anonimato in Rete: basta infatti scardinare le misure di protezione per scoprire cosa fanno gli utenti che lo utilizzano e soprattutto chi sono. Per superare anche queste limitazioni  esiste il progetto <strong>TOR</strong> ( The Onion Routing)</p>
<p>Si tratta di una rete di comunicazione che permette ai suoi utilizzatori di difendersi dalla cosiddetta “ analisi del traffico” che consiste nel monitorare le nostre connessioni per scoprire cosa facciamo su Internet.Il funzionamento di TOR riprende quello dei Proxy , migliorandolo significativamente. L’dea alla base del progetto è semplicissima: perché usare un solo Proxy ,quando possiamo utilizzarne tanti ? I questo modo , le nostre richieste per il caricamento di un sito Internet passano attraverso almeno tre “intermediari” , chiamati in gergo <strong>Relay</strong> , in modo tale che nessuno malintenzionato in grado di spiare un solo punto del percorso possa capire dove sia diretta la richiesta e, soprattutto da chi è stata effettuata. I dati scambiati fra i diversi Relay , sono cifrati e ognuno conosce solo quale Realy gli ha passato le informazioni e a quale inoltrarne , senza sapere chi ha dato vita alla richiesta di tale informazioni., cioè il nostro computer. In questo modo anche se un Relay venisse compromesso , sarebbe impossibile a differenza dell’utilizzo di un singolo Proxy , risalire alla nostra identità. Tutta la rete TOR , inoltre è strutturata in modo da modificare automaticamente ogni 10 minuti il percorso seguito dai nostri dati , per evitare che qualcuno possa collegare le azioni che noi effettuiamo su Internet</p>
<p><strong>E SE NON BASTA ANCORA………</strong></p>
<p><strong> </strong></p>
<p>L’aver camuffato il nostro indirizzo IP non ci mette ancor al riparo da altre pericoloso minacce: Cookie ,e codici <strong>Javascript</strong> malevoli sono sempre in agguato .Brevemente si tratta di semplici file di testo archiviati nella Cache dei Browser dai siti internet visitati e in cui vengono memorizzati alcuni nostri dati personali .I questo modo , viene facilitata la navigazione , evitandoci ad esempio la seccatura di doverci identificare ogni qualvolta usufruiamo dei servizi offerti. E fin qui , non ci sarebbe niente di male nel loro utilizzo. Il fatto è che i cookie permettono di associare l’indirizzo IP alla nostra identità. E se pensiamo a quanti <strong>Banner</strong> pubblicitari ci sono sui vari siti Internet e a tutte le aziende senza scrupoli che si nascondono dietro , è evidente quanto poco rispettata sia la nostra privacy. C’è poi da tenere in considerazione il fatto che ogni volta che clicchiamo</p>
<p>un <strong>link</strong> all’interno di una pagina Web , il nuovo sito internet può conoscere esattamente l’indirizzo di quello da cui proveniamo , il cosiddetto <strong>Referer</strong>. E la stessa cosa può succedere anche quando clicchiamo su un collegamento presente in un messaggio di posta giunto alla nostra <strong>Webmail</strong>. Un malintenzionato capace di metter emano al codice HTML delle pagine Web può iniettarvi dentro dei pezzi di codice Javascript in grado memorizzazione dei cookie nella <strong>cache del Browser</strong> e disattivare l’esecuzione di <strong>codice Javascript</strong> . Ma in questo modo dovremmo rinunciare a molti servizi , animazioni e contenuti multimediali presenti sui tanti siti legittimi e “FIDATI” sparsi per la rete. La soluzione ? Usare due Browser : il primo per la navigazione tradizionale , il secondo io consiglio <strong>Firefox</strong> , opportunamente configurato per muoversi in anonimato e senza lasciare traccia .</p>
<p>Domani leggerete come configurare <strong>Firefox</strong> ( in abbinata a THOR ) per non lasciare tracce</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Oldtimer des Online-Immobilienmarkts ]]></title>
<link>http://dotproperty.wordpress.com/2009/11/02/oldtimer-des-online-immobilienmarkts/</link>
<pubDate>Mon, 02 Nov 2009 16:25:56 +0000</pubDate>
<dc:creator>dotproperty</dc:creator>
<guid>http://dotproperty.wordpress.com/2009/11/02/oldtimer-des-online-immobilienmarkts/</guid>
<description><![CDATA[Owners.com wurde 1995 gegründet und zählt zu den ältesten Webseiten auf Ihrem Gebiet. Mehr als 1 Mil]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.owners.com/" target="_blank"><strong><img class="alignnone size-thumbnail wp-image-174" title="owners" src="http://dotproperty.wordpress.com/files/2009/11/owners.png?w=150" alt="owners" width="150" height="118" /></strong></a></p>
<p style="text-align:justify;"><a href="http://www.owners.com/" target="_blank"><strong>Owners.com</strong></a> wurde 1995 gegründet und zählt zu den ältesten Webseiten auf Ihrem Gebiet. Mehr als 1 Million Hausbesitzer in allen 50 Bundesstaaten der USA haben die Website genutzt. Das macht ein Transaktionsvolumen von über 200 Milliarden Dollar aus. Die Seite nutzt verschiedene Popups wie Google Maps, was sie aber nicht bedeutend von anderen unterscheidet. Die lange Existenz auf dem Immobilienmarkt spricht jedoch für sich. Das Design ist einfach gehalten.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Penguin Pop Up Cards #8-9]]></title>
<link>http://rachelcreative.wordpress.com/2009/10/28/penguin-pop-up-cards-8-9/</link>
<pubDate>Wed, 28 Oct 2009 10:52:34 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/10/28/penguin-pop-up-cards-8-9/</guid>
<description><![CDATA[As promised, in addition to the three pop-up cards I showed you before, two new penguin pop up cards]]></description>
<content:encoded><![CDATA[As promised, in addition to the three pop-up cards I showed you before, two new penguin pop up cards]]></content:encoded>
</item>
<item>
<title><![CDATA[Penguin Pop Up Cards #5-7]]></title>
<link>http://rachelcreative.wordpress.com/2009/10/27/penguin-pop-up-cards-5-7/</link>
<pubDate>Tue, 27 Oct 2009 22:25:33 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/10/27/penguin-pop-up-cards-5-7/</guid>
<description><![CDATA[I&#8217;ve made new penguin pop up cards.  Here&#8217;s three which are listed in my online Folksy s]]></description>
<content:encoded><![CDATA[I&#8217;ve made new penguin pop up cards.  Here&#8217;s three which are listed in my online Folksy s]]></content:encoded>
</item>
<item>
<title><![CDATA[Opening default web browser from Windows Application]]></title>
<link>http://easyvsto.wordpress.com/2009/10/26/opening-default-web-browser-using-cvb-net/</link>
<pubDate>Mon, 26 Oct 2009 12:23:38 +0000</pubDate>
<dc:creator>Pranav</dc:creator>
<guid>http://easyvsto.wordpress.com/2009/10/26/opening-default-web-browser-using-cvb-net/</guid>
<description><![CDATA[This post deals with opening default web browser from a .NET Application (esp. a Windows Application]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This post deals with opening default web browser from a .NET Application (esp. a Windows Application).</p>
<p>First, copy the following code and paste it in your class.</p>
<pre style="padding-left:30px;"><span style="color:#003366;">Private Declare Function ShellExecute _
                            Lib "shell32.dll" _
                            Alias "ShellExecuteA"( _
                            ByVal hwnd As Long, _
                            ByVal lpOperation As String, _
                            ByVal lpFile As String, _
                            ByVal lpParameters As String, _
                            ByVal lpDirectory As String, _
                            ByVal nShowCmd As Long) _
                            As Long</span>
</pre>
<p style="padding-left:30px;">
<p>Then, you can use the function ShellExecute() as follows.</p>
<pre><span style="color:#003366;">Private Sub Button1_Click()
   Dim objBrowser As Long
   objBrowser = ShellExecute(0, "open", "http://easyvsto.wordpress.com", 0, 0, 1)
End Sub

</span></pre>
<p>We can also open the default web browser as:</p>
<pre>
<pre style="padding-left:30px;"><span style="color:#003366;">Process.Start("http://easyvsto.wordpress.com")

</span></pre>
</pre>
<p>I usually create a Form and place a WebBrowser control in it and use it for opening any web pages. I will get back to you with that soon.</p>
<p>Microsoft reference for the topic, Click <a href="http://support.microsoft.com/kb/224816" target="_blank">here</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Abrir PDF en un Popup Modal]]></title>
<link>http://luissanzana.wordpress.com/2009/10/25/abrir-pdf-en-un-popup-modal/</link>
<pubDate>Sun, 25 Oct 2009 23:11:05 +0000</pubDate>
<dc:creator>Luis Sanzana</dc:creator>
<guid>http://luissanzana.wordpress.com/2009/10/25/abrir-pdf-en-un-popup-modal/</guid>
<description><![CDATA[En uno de los sistemas que estamos desarrollando (hace ya bastante tiempo) tuvimos la necesidad de d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-full wp-image-79" title="PDF" src="http://luissanzana.wordpress.com/files/2009/10/pdf.png" alt="PDF" width="125" height="125" />En uno de los sistemas que estamos desarrollando (hace ya bastante tiempo) tuvimos la necesidad de desplegar nuestros reportes generados con Crystal Report en formato PDF.</p>
<p>Al principio (antes de generar reportes con CR) se desplegaban usando PopUp Modales, pero cuando migramos y exportamos a PDF simplemente no se desplegaban quedando la ventana en blanco. En ese entonces como el tiempo apremiaba se decidió usar popup tradicionales (window.popup) y por un largo tiempo todo estubo bien.</p>
<p>Durante las pruebas de la aplicación a nadie le parecio molesto, pero realizando pruebas de rendimiento mas a fondo y en produccion me di cuenta que en ciertas versiones IE genera un nuevo proceso para esta nueva ventana, esto se traducia en un <strong>tiempo extra</strong> antes de la presentación del reporte. Decidí volver a intentarlo con ventanas modales y buscar una solución!</p>
<p>Reproducir el problema es bastante simple, basta con abrir una ventana modal (<strong>showModalDialog</strong>) que abra directamente un archivo PDF.</p>
<p><strong>La Solución</strong></p>
<p>Para permitir que dentro de un popup Modal  se visualice un PDF solo se debe insertar un IFRAME dentro de la página que se paso como parámetro al popup.</p>
<blockquote><p><span style="color:#0000ff;">&#60;</span><span style="color:#ff6600;">iframe </span><span style="color:#ff0000;">src</span>=&#8217;&#60;<span style="color:#ff9900;">%=</span>psRutaReporte<span style="color:#ff9900;">%<span style="color:#000000;">&#62;</span></span>&#8216; <span style="color:#ff0000;">width</span><span style="color:#3366ff;">=&#8217;100%&#8217; </span><span style="color:#ff0000;">tabindex</span><span style="color:#3366ff;">=&#8221;0&#8243;</span> <span style="color:#ff0000;">style</span><span style="color:#3366ff;">=&#8221;height: 680px&#8221; <span style="color:#000000;"><span style="color:#ff0000;">onload</span><span style="color:#3366ff;">=&#8221;ocultarTabla()&#8221;</span> <span style="color:#ff0000;">frameborder</span><span style="color:#3366ff;">=&#8221;no&#8221;</span> <span style="color:#ff0000;">id</span><span style="color:#3366ff;">=&#8221;frameReporte&#8221;</span><span style="color:#0000ff;">&#62;&#60;/</span><span style="color:#ff6600;">iframe</span><span style="color:#0000ff;">&#62;</span></span></span></p></blockquote>
<p>La función <span style="color:#3366ff;">ocultarTabla() </span>se ejecuta apenas se carga la pagina que esta siendo solicitada en el IFRAME y esta aplica un estilo a un DIV que presento con la frase &#8220;cargando reporte&#8230;&#8221; para ocultarlo. Asi evitamos mostrar un &#8220;blanco&#8221; al usuario.</p>
<p>La variable <span style="color:#ff9900;">psRutaReporte </span>es una variable pública del Codebehind para pasarle la ruta del reporte que debe cargar de forma parametrizada, como comprenderán algunos, estoy utilizando una única ventana como puente para desplegar los reportes.</p>
<p>Saludos!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Open a New Window On Server Side using Javascript Code in Asp.net]]></title>
<link>http://pankajlalwani.wordpress.com/2009/10/24/open-a-new-window-on-server-side-using-javascript-code-in-asp-net/</link>
<pubDate>Sat, 24 Oct 2009 14:22:39 +0000</pubDate>
<dc:creator>pankajlalwani</dc:creator>
<guid>http://pankajlalwani.wordpress.com/2009/10/24/open-a-new-window-on-server-side-using-javascript-code-in-asp-net/</guid>
<description><![CDATA[Normally to open a new window using javascript we write the following code: // open new window with ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Normally to open a new window using javascript we write the following code:</p>
<pre>// open new window with specified path

function OpenWindow(url)

{
    newwindow = window.open(url, 'mywindow', 'width=500,height=400');  

}

Now In .aspx.cs page or server side to use the javascript window open you have to use the following code

 StringBuilder popupScript = new StringBuilder();
 popupScript.Append("&#60;script language='JavaScript'&#62; window.open('ViewReports.aspx?groupid=" + ddlreportGroup.SelectedValue.ToString() + "&#38;FromDate=" + Convert.ToDateTime(txtDate.Text) + "&#38;Todate=" + Convert.ToDateTime(txtToDate.Text) + "&#38;Report=Rptname" + "', '', 'width=950, height=580,scrollbars,status,menubar=no,resizable,toolbar=no,titlebar=no,location=no');&#60;/script&#62;");
// if you are using script manager - update panel then this
 ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "PopupScript", popupScript.ToString(), false);
//else
Page.RegisterStartupScript("PopupScript", popupScript.ToString());
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A Modern Day Must-Have]]></title>
<link>http://tiffo.wordpress.com/2009/10/24/stopzilla/</link>
<pubDate>Sat, 24 Oct 2009 13:00:30 +0000</pubDate>
<dc:creator>musingsalatiffany</dc:creator>
<guid>http://tiffo.wordpress.com/2009/10/24/stopzilla/</guid>
<description><![CDATA[It doesn&#8217;t get any easier. Download App. Click Scan. Viruses Gone. Computer Fast. &lt;3 Dubbin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="mceTemp" style="text-align:center;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><a href="www.stopzilla.com"><img class="  " title="STOPzilla!" src="http://reviews.cnet.com/sc/30633015-2-440-overview-1.gif" alt="The tag line does not do the product justice." width="440" height="330" /></a></dt>
<dd class="wp-caption-dd">It doesn&#8217;t get any easier. Download App. Click Scan. Viruses Gone. Computer Fast. &#60;3</dd>
</dl>
</div>
<p>Dubbing itself &#8220;The Ultimate Popup Blocker&#8221; is rather insulting I think. It does so much more than that.</p>
<p>So, I have Spyware on my computer, and it usually detects 30 to 40 viruses weekly, which seems like rather a lot to me. Recently, however, for some stupid, long-to-get-to reason, I did, in fact, download HotBar. I&#8217;m not sure how many of you are familiar with this parasite, but it is an abomination, catastrophy, demon, or any other word you want to use for Hell-hole-pain-in-the-ass. Now, don&#8217;t get my wrong. HotBar didn&#8217;t sizzle my computer into steam and goo, but it DID continue to piss me off, incessantly poping up, if not once per page then once per second after a long time of poking around on the internet I realized that the solutions availble were to either A) do it manually, and that was for supercyper hacker extraordinares only, OR B) download a device to remove the product. Unfortunately, I didn&#8217;t really trust any of the downloads available or they didn&#8217;t work.</p>
<p>After a lot of hair pulling and nail biting, however I did stumble across a miracle.</p>
<p>STOPzilla.    &#8230;   Wow.</p>
<p>Now keep in mind, I have Spyware and Anti-virus and, what I thought, were pretty much all the bells and whistles. Stopzilla, however, is different. First of all, it&#8217;s NOT free, like a lot of the other downloads that seem to be availble. It DOES work though, unlike the other ones.</p>
<p>But here&#8217;s why it gets <em>my</em> Nod of the Day:</p>
<p>First of all, it detected, not the usual 30 or 40 threats, but 600! And it fixed them all.</p>
<p>Second of all, it DID rid my computer of HotBar. Rather quickly too. And anything else I never knew I didn&#8217;t want on here.</p>
<p>Third, it doesn&#8217;t detect like your normal Spyware or Anti-virus protect. Even if you have those, I can guarantee Stopzilla is a huge upgrade. It protects your computer with the protection of BOTH of those combined, but it let&#8217;s you keep your internet more private and safe, while protecting your computer from ADWARE (which is just as bad as Spyware).</p>
<p>Fourth? Well, if the first three weren&#8217;t enough, this product isn&#8217;t free but it&#8217;s cheap. Stopzilla is free to download and run, allowing you to scan your computer and see the threats for free BEFORE you choose to buy the solution. For $10, you can move on to the next step, which is cleaning out all, and I mean <em>all</em>, threats from your computer. And that ten bucks lasts you the duration of one whole year, unless you rather get a lifetime supply for just 40 bucks. Either way, it&#8217;s a great deal. Plus they give you a 30 day money-back guarantee, so there&#8217;s really nothing to lose. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m happy to say, my computer is back on track now, and running <em>faster</em> than it was before. That&#8217;s probably because STOPzilla got rid of, not only HotBar and Zango (yuck), but a bunch of threatening infections that I never knew my laptop had before. Who knew a complete computer miracle was available for just $9.95?!</p>
<p style="text-align:right;">A+ </p>
<p style="text-align:right;">Check out STOPzilla&#8217;s numerous computer fix-it devices!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pop-Up Card: Kitty Sleeps / With Gift]]></title>
<link>http://rachelcreative.wordpress.com/2009/10/24/pop-up-card-kitty-sleeps-with-gift/</link>
<pubDate>Sat, 24 Oct 2009 10:35:27 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/10/24/pop-up-card-kitty-sleeps-with-gift/</guid>
<description><![CDATA[Pop-up greeting card made by me to sell in my online shop. The front has a sleeping cat and inside t]]></description>
<content:encoded><![CDATA[Pop-up greeting card made by me to sell in my online shop. The front has a sleeping cat and inside t]]></content:encoded>
</item>
<item>
<title><![CDATA[MIT rethinking popup books]]></title>
<link>http://hackaday.com/2009/10/20/mit-rethinking-popup-books/</link>
<pubDate>Tue, 20 Oct 2009 16:00:16 +0000</pubDate>
<dc:creator>Caleb Kraft</dc:creator>
<guid>http://hackaday.com/2009/10/20/mit-rethinking-popup-books/</guid>
<description><![CDATA[We know the folks at MIT are the cutting edge scientists of tomorrow right? We&#8217;re always impre]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/AI-6wMlaVTc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/AI-6wMlaVTc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>We know the folks at MIT are the cutting edge scientists of tomorrow right? <a href="http://hlt.media.mit.edu/popables/">We&#8217;re always impressed</a> by the stuff coming out of their labs. Well, <a href="http://hackaday.com/2009/09/30/arduino-powered-singing-table/">almost always</a>.  This rethinking of pop-up books does not let us down. We&#8217;ve seen some pretty complicated pop-up books. Some that made us really wonder how they pulled it off. But all of those were simply paper and card stock. At MIT, they&#8217;re wondering how we can improve the interactive experience now that the electronic components are so cheap and easily available. Even if you don&#8217;t have kids, or have no interest in pop-up books, consider this some inspiration for things like packaging and art. This looks fantastic and we know we would enjoy it. Then again, a few flashing LEDs always pique our interest.</p>
<p>[via <a href="http://gizmodo.com/5385096/mit-is-about-to-revolutionize-the-pop+up-book">Gizmodo</a>]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Page Refresh when click on popup window close button]]></title>
<link>http://ocpmunir.wordpress.com/2009/10/20/page-regresh-when-click-on-popup-window-close-button/</link>
<pubDate>Tue, 20 Oct 2009 09:33:10 +0000</pubDate>
<dc:creator>ocpmunir</dc:creator>
<guid>http://ocpmunir.wordpress.com/2009/10/20/page-regresh-when-click-on-popup-window-close-button/</guid>
<description><![CDATA[you can use this function to make the parent page refresh. function closeWindow() { window.opener.Re]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>you can use this function to make the parent page refresh.<br />
function closeWindow()<br />
{</p>
<p>window.opener.RefreshPage();<br />
window.close();</p>
<p>}</p>
<p>if you want to fire an event based on the pop up click then u can do so by<br />
window.onunload = unloadPage;</p>
<p>based on that function calling u can refresh ur parent page by the following fuinction<br />
function unloadPage()<br />
{<br />
//window.opener.RefreshPage();<br />
window.opener.document.forms[0].submit();<br />
}</p>
<p>this function will make ur parent page refresh while u click on the close button of the pop up window. Let me know if you have any query regarding this.</p>
<p> </p>
<p>Regards</p>
<p>Munir</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Christmas Cards for 2009]]></title>
<link>http://rachelcreative.wordpress.com/2009/10/19/christmas-cards-for-2009/</link>
<pubDate>Mon, 19 Oct 2009 15:28:36 +0000</pubDate>
<dc:creator>rachelcreative</dc:creator>
<guid>http://rachelcreative.wordpress.com/2009/10/19/christmas-cards-for-2009/</guid>
<description><![CDATA[I&#8217;m starting to list the christmas cards I&#8217;ve made in my Folksy shop. There are packs of]]></description>
<content:encoded><![CDATA[I&#8217;m starting to list the christmas cards I&#8217;ve made in my Folksy shop. There are packs of]]></content:encoded>
</item>
<item>
<title><![CDATA[} Hoje tem: POP!UP @ Alley Club]]></title>
<link>http://sproad.wordpress.com/2009/10/16/hoje-tem-popup-alley-club/</link>
<pubDate>Fri, 16 Oct 2009 16:54:07 +0000</pubDate>
<dc:creator>sproad</dc:creator>
<guid>http://sproad.wordpress.com/2009/10/16/hoje-tem-popup-alley-club/</guid>
<description><![CDATA[COMO? ONDE? QUANTO? Alley Club R. Barra Funda, 1006 – Barra Funda Tel: (11) 3666 0611 Quando? Sexta-]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-41" title="spnight" src="http://sproad.wordpress.com/files/2009/09/spnight.jpg" alt="spnight" width="438" height="67" /></p>
<p><img class="aligncenter size-full wp-image-462" title="POP!UP 16OUT09" src="http://sproad.wordpress.com/files/2009/10/popup-16out09.jpg" alt="POP!UP 16OUT09" width="510" height="674" /></p>
<address><strong><span style="color:#ff6600;">COMO? ONDE? QUANTO?</span></strong></address>
<address><a href="http://alleyclub.com.br/" target="_blank"><strong>Alley Club </strong></a></address>
<address><a href="http://www.apontador.com.br/maps/?tl=m&#38;st=BR%7CSP%7CSao%20Paulo%7C%7CR%20Barra%20Funda%7C1006%7C%7C-23.527757164705886%7C-46.6582454117647%7C3500354238682%7Cfalse&#38;mz=2" target="_blank"><strong>R.</strong> <strong><span style="color:#808080;">Barra Funda, 1006 – Barra Funda</span></strong></a></address>
<address><strong>Tel:</strong> <span style="color:#808080;"><strong>(11) 3666 0611</strong></span></address>
<address><strong>Quando? </strong><strong><span style="color:#808080;">Sexta-feira dia 02 de Outubro às 23h30</span></strong></address>
<address><span style="color:#000000;"><strong>Quanto?</strong></span><strong><span style="color:#808080;"> R$ 20 na porta ou  R$ 10 até 0h30 com o cupom do site.<br />
</span></strong></address>
<address> </address>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pop-up Alphabet Book]]></title>
<link>http://getsiobhanny.wordpress.com/2009/10/14/pop-up-alphabet-book/</link>
<pubDate>Wed, 14 Oct 2009 11:42:13 +0000</pubDate>
<dc:creator>siobhanny</dc:creator>
<guid>http://getsiobhanny.wordpress.com/2009/10/14/pop-up-alphabet-book/</guid>
<description><![CDATA[Stumbled upon this at the weekend. Very, very lovely.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Stumbled upon this at the weekend. Very, very lovely.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/wnZr0wiG1Hg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/wnZr0wiG1Hg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
