Pages

Thursday, October 18, 2012

How to capture screen on Apple devices

To capture the screen as -an image- on the Apple devices you have to do this:


For iMac: 

Command + Shift + 3 = it sends the image to the desktop.

Command + Control + Shift + 3 = it send the image to the clipboard.

Command + Control + Shift + 4 = a cross comes up and you can select the area you want to capture. The images goes to the clipboard.

Command + Shift + 4 = a cross comes up and you can select the area you want to capture. The images goes to the desktop.

Don't forget to paste the image from the clipboard using Command + V


For iPod Touch, iPad and iPhone

To capture the screen on these devices press the lock button and after press the start button (the circle on the middle bottom)




Thursday, October 4, 2012

Format a USB flash with GUID from Windows

I recently had an issue to open a flash USB that had GUID partitions in Windows. This table partition scheme is only used by MAC OS X. So, to solve it, I downloaded The partition Wizard, erased the GUID partitions, create a FAT32 partition and here you are the flash USB working again on Windows.

Monday, July 23, 2012

Oscommerce 2.3.2 error opening the large images

Recently I found an error on my oscommerce instance. I couldn't open the large images when I clic on the small ones, so I did the following:

Search on product_info.php this code:


<div id="piGal" style="float: right;"> <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank" rel="fancybox">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), null, null, 'hspace="5" vspace="5"') . '</a>'; ?> </div>

Replacethe above code with the following:


<div id="piGal" style="float: right;"> <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . ".jpg".'" target="_blank" rel="fancybox">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'].".jpg", addslashes($product_info['products_name']), null, null, 'hspace="5" vspace="5"') . '</a>'; ?> </div>

What I've donde is to add the .jpg extension to the name of the large and small picture. This solution works just for .jpg images. So, if you're planning to use .png or .gif replace the .jpg for your favorite extension.