Blog Archives

544 Conversion Rate Optimization Tips now 616 and counting Unbounce – StumbleUpon

Marketing Viral

Image via Wikipedia

544 Conversion Rate Optimization Tips now 616 and counting Unbounce – StumbleUpon. This list isn’t joking. I read some great marketing suggestions here. This was obviously put together thoughtfully.

3 free ways of how to Download PDF files on iPad – DeviceMAG

How to Download PDF files on iPad – DeviceMAG. Some good ideas that don’t rely on purchasing an app.  Anyone really loving their iPads?

removing all annotations in preview for sharing

Menu Bar Doohickeys

Image by Adam Kuban via Flickr

As TeenTitan said:

If your using preview. You can actually pull up a list of all Annotations. Using this list you can select all the Annotations and then delete all the annotations at the same time.

How to do this:
in preview, with your PDF open.
go to the menu bar
click on the “View” menu
from the “view menu” chose “SideBar.”
from the submenu “SideBar” chose “Annotations”
On the right side of the PDF, Instead of a list of page you should now have a list of “Annotations.” click on any of the Annotations listed.
go to the menu bar
click on the “Edit” menu
choose “Select All”
Press the “delete” key

At this point you could use Save As to re-save the file as the ‘share friendly” version of the PDF.

via Apple – Support – Discussions – removing all annotations in preview for ….

 

YouTube – CSS Horizontal Drop Down Menu – 1 of 2

YouTube – CSS Horizontal Drop Down Menu – 1 of 2.  Love it.  I love these kind of menus and hate the ones with javascript that take forever to load.  Dreamweaver is pretty awesome isn’t it?

Landing page/splash screen auto redirect after x seconds

Author: Dutra de Lacerda (myself) URL: http://...

Image via Wikipedia

Koeklin has the answer.

Bonjour

Redirect code:

<script type="text/javascript">
var url ='../../pagename.html';
var delay = 4;
var d = delay * 1000;window.setTimeout ('parent.location.replace(url)', d);
</script>

Replace ../../pagename.html by the path or the URL of your page,
and change thenumber of sec. (4 is the number of sec. here).

via Apple – Support – Discussions – Landing page/splash screen auto ….

 

Adobe Acrobat X: Do you feel safe yet? Antivirus

Adobe Acrobat X: Do you feel safe yet? Antivirus.  I used to love PDFs but since all of the security issues I try to avoid them when I can.

Trying to open .xlsx, .docx, or .pptx file in Office for Mac 2004:

Trying to open .xlsx, .docx, or .pptx file in Office for Mac 2004:.  If you click on the link above you will learn that you have to download and install the Open XML File Format Converter.  Nice that you have some forward compatibility.  MS changes its download links or I would have included it in this article.

https://i0.wp.com/support.microsoft.com/Library/Images/2439547.JPG

Two ways to convert .pages to word.

Method 1:  Thanks Jacko30!

If you rename the pages file to zip and open it, the is a pdf in there. in the quicklook folder.

via convert pages to word – MacTalk Forums.

Method 2:

http://forums.macnn.com/82/applications/381956/group-convert-pages-docs-ms-word/#post3766150

Code:
on open theDocuments repeat with aDocument in theDocuments tell application "Pages" open aDocument set thePath to the path of the front document set theWordPath to thePath & ".doc" save the front document as {"doc", "SLDocumentTypeMSWord"} in theWordPath close the front document saving no end tell end repeat end open