Forum: Graphics and Multimedia 15 Days Ago |
| Replies: 6 Views: 609 Good point
large corporates, many of who use flash in their websites block flash from being installed on pc on the lan
the big dollar customers won't see the fancy work
and may block the site... |
Forum: Graphics and Multimedia 15 Days Ago |
| Replies: 6 Views: 609 Flash sucks
flash intros penalise in search, annoy your customers
anything that makes the page load longer, kills customer retention |
Forum: Graphics and Multimedia Oct 20th, 2009 |
| Replies: 3 Views: 947 any time consuming bandwidth eating enhancement you make, will make no difference to the user,
If the enhancement delays the loading of the page they will leave
user click away may seriously annoy... |
Forum: Graphics and Multimedia Oct 9th, 2009 |
| Replies: 5 Views: 867 WYSiWYG what you see is what you get
as in "FrontPage is a wysiwyg editor"
the code sample at the top of the prior reply should be cut and pasted into 'html view' in frontpage if you use it
the... |
Forum: Graphics and Multimedia Oct 9th, 2009 |
| Replies: 5 Views: 867 1 file autostart on page load<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<style type='text/css'>
/* css positioning for the media... |
Forum: Graphics and Multimedia Sep 23rd, 2009 |
| Replies: 2 Views: 486 easy fix, dont use flash
there is nothing in that flash menu that can't be done smaller faster simpler in css |
Forum: Graphics and Multimedia Jun 27th, 2009 |
| Replies: 5 Views: 695 sorry, out of brain space,
redirect to a html page instead of an image ??
not sure it can be done either
it should be cause you can make <img src='filename'php'> for generated images
how about a... |
Forum: Graphics and Multimedia Jun 27th, 2009 |
| Replies: 5 Views: 695 this is a hot topic and there are tutorials
AltLab (http://altlab.com/htaccess_tutorial.html)
has my favorite, easy to follow, flexible |
Forum: Graphics and Multimedia May 11th, 2009 |
| Replies: 3 Views: 625 saveimage.php<?php if(!$file) return false;
header("Content-disposition: attachment; filename=$file");
header('Content-type: image/jpeg;');
readfile("$file");
?>image link<a... |