Archive for the ‘Uncategorized’ Category
Twitter Updates for 2007-09-08
Saturday, September 8th, 2007- è felice, è arrivata la fascia nike+, ormai aveva smesso di sperare
# - scusa la pigrizia, un link diretto per lo streaming del barcamp? #
- @Alice_s_eyes: foto, foto! #
- @Alice_s_eyes: riesci a fare anche headfan?
# - @aEnima: orsù, racconta
# - si sente un pò negro del ghetto e comincia la visione di *do the right thing* #
- oggi non è andato a correre e si sente come se non avesse dato un senso alla giornata #
- ha trovato un paio di extras per Adium (adiumx.com) in stile iPhone :-)) #
Popularity: 2% [?]
Twitter Updates for 2007-09-05
Wednesday, September 5th, 2007Twitter Updates for 2007-09-04
Tuesday, September 4th, 2007- va in doccia #
- si chiede se oggi è il giorno in cui riuscirà a vedere Sunshine #
- @udon bisognerebbe chiederlo ad @iSleepy visto che se lo guarda 2 volte al giorno #
- probabilmente indosserà questa http://tinyurl.com/37dj24 e si chiede quanti al mondo hanno capito i riferimenti. #
- crede che farà un pò di backup dato che i suoi hd sono a rischio esplosione. #
- si chiede se @udon sia morto #
- spera che la tromba d’aria uccida qualcuno, magari che provochi una di quelle morti assurdi, tipo quelli colpiti da un fulmine et similia #
- @Alice_s_eyes In your face! #
- @Alice_s_eyes è una canzone dei CoB #
- @udon ha un concetto un pò elitario di minchiata perditempo #
- @elena prova extracolor e relativi fotonegozianti affiliati #
- @elena forse extracolor è sotto il gruppo Rikorda, è un consorzio #
- @eletralenuvole facci vedere il risultato
# - ratman è geniale #
Popularity: 1% [?]
Twitter Updates for 2007-09-02
Sunday, September 2nd, 2007- si chiede se vi piacciono i cöni. #
- sta provando a digerire il risotto di ieri sera. #
- consiglia ad @DElyMyth di passare a Fusion di VMWare perchè parallels è una chiavica. #
- @DElyMyth credo non sia possibile, non è vero invece il contrario :-/ però a livello di prestazioni non ci sono paragoni. #
- ha creato sul sito nikeplus una sfida riservata ai Twitter users, qualcuno ha voglia di partecipare? #
- @DElyMyth dipende anche da che os ci usi, io ho installato una versione di xp lite, tale blackbox, altro mondo proprio. #
- @DElyMyth se devi testare la compatibilità di siti su IE è ok, x il resto ci uso solo Access perchè non esiste il corrispettivo Mac. #
- si chiede quando si potrà trovare la versione in dvd di Sunshine. #
- leggendo i titoli delle canzoni dell’ultimo album dei Nile nota che Karl Sanders non ha perso la sua vena ironica. #
- si chiede quanto durerà questo esilio da twitterrific che lo costringe a postare da web. #
- trova un alimentatore compatibile con l’hub della belkin che aveva pagato un braccio e una gamba e che finora fungeva da soprammobile. #
- con tutta probabilità affiderà la domanica nelle mani di mike myers e della sua (quasi) intera filmografia. #
- comprende lo stato d’animo di @iSleepy, anche se però sa che non lo farebbe mai visto che lui è il più tenerone dei duri. #
- non vuole bene a nessuno, tantomeno a @iSleepy, e se facesse la controfigura di Bruce Willis passerrebbe il tempo ad abbattere elicotteri. #
- per una volta nella vita è d’accordo con @Udon #
- non sopporta di fare il meterologo per la gente che vuol venire al mare. #
- spera che i server poco performanti di twitter non rovinino la bella amicizia che c’è tra @iSleepy e @udon #
- vorrebbe sapere cosa gli ha portato @udon dal viaggio in nipponia visto che è 10 giorni che ci ricama sopra. #
- non sa la situazione del traffico, spera però che ne sia parecchio per tutti i vacanzieri che hanno deciso di portare le loro chiappe qua. #
- ribadisce la necessità di riscuotere i crediti nei confronti dei clienti altrimenti si passa alla dialettica delle spranghe. #
- non aveva mai sentito parlare del Chupacabra prima d’ora. #
- ha scelto Devin Townsend come idolo della giornata #
- si chiede quanti utenti nikeplus (in percentuale) acquistano i mix pubblicati dalla nike #
- ha bisogno di una scream bag #
- @iSleepy torna vincitore #
- dopo un inizio coinvolgente è rimasto deluso da Heroes #
- @iSleepy: seh, save the world e poi magari salvate anche me dalla morte per noia, morte sulla poltrona del salotto #
- @iSleepy: divxari, the leaders of tomorrow #
Popularity: 1% [?]
Using the HTML embed Tag to Display a PDF on Your Web Page
Wednesday, August 29th, 2007Most web developers create links to PDF files so that Adobe Acrobat or the Adobe Reader takes over the entire browser window. Few people leverage the fact that you can display a PDF file in a web page just like any other graphic by using the embed tag in your HTML file. You can also use PDF Open Parameters in the src property to make the document look better on that page but those don’t work the same way in all browsers.
Careful attention to crafting the HTML page, setting the embed tag parameters properly and setting properties in your PDF correctly can make a PDF embedded in an HTML page work just as seamlessly as a SWF file.
Below is an example of simply adding the PDF file name to the src property of the embed tag; it doesn’t look that great.
<embed src=’FullScreenEmbed.pdf’ width=’500′ height=’375′>
In the example below, I’ve added parameters to the URL that suppress the toolbar, navigation panes, and scrollbars of the Acrobat or Reader user interface. This looks much better. You can navigate the PDF by clicking on it (to activate the embedded PDF) and then use the arrow keys on your keyboard to scroll through the document. The other advantage of this method is that you don’t need to change the PDF to provide a better experience; you simply adjust the way it looks by adding parameters to the URL.
<embed src=’FullScreenEmbed.pdf#toolbar=0&navpanes=0&scrollbar=0′ width=’500′ height=’375′>
The example below demonstrates the solution that, in my opinion works the best. Here, I used Acrobat to set the PDF to ‘Open in Full Screen mode’ in the ‘Document Properties’ dialog box.
<embed src=’FullScreenEmbed.pdf’ width=’500′ height=’375′/>
Setting the document to open in full screen mode will cause the PDF to fill the entire area specified in the width and height properties of the embed tag. The PDF page size is 10 inches by 7.5 inches so I use a width of 500 pixels and a height of 375 pixels so that the aspect ratio of the embed object window and the PDF match. The PDF will not stretch to fill the area in the same way that an image file would. Instead, the PDF will display in the center of the area and fill the rest with the ‘Full Screen Appearance Background Color’ which is an Acrobat user preference but their color choice may not fit with the style of your web page so it’s best to keep the aspect ration the same. Of course, your document can change the background color setting through JavaScript by adding, for example, ‘app.fs.backgroundColor = color.white;’ as a document level JavaScript. You can read about how to use the built-in color arrays and create your own on page 193 of the JavaScript™ for Acrobat® API Reference.
Setting the document to open in full screen mode will also cause the document to ‘play’ in the browser same way that it would if it were in full screen mode in Acrobat or Reader. All of your animations and page transitions will display properly.
(Via Adobe Blogs.)
Popularity: 2% [?]