<< Mediterranean Adobe User Group - MAUG

Reference Library

files, bookmarks, contacts, notes, pictures, and more...

Reference Library Home | About | Filter by Date | Search

Posts

1-10 of 21 | Next> | Last>>

10 cool websites for designers
Bookmark posted on Nov 11 by AlexRod-AUG

300+ Jquery, CSS, MooTools and JS navigation menus
Bookmark posted on Nov 11 by AlexRod-AUG

40 grandes sitios con recursos del Diseño Gráfico
Bookmark posted on Nov 11 by AlexRod-AUG

Adapting To Web Standards Css and Ajax for Big Sites
Book posted on Nov 11 by AlexRod-AUG

Author: Christopher Schmitt, Kimberly Blessing, Rob Cherny, Meryl K. Evans, Kevin Lawver, Mark Trammell
Genre: web
Cover Image:

Adding Text To Your Pages in Adobe Dreamweaver CS4
Bookmark posted on Dec 02 by AlexRod-AUG

Adobe TV: Flash y AIR
Bookmark posted on Nov 11 by AlexRod-AUG

Ajax: The Definitive Guide 1
Book posted on Dec 03 by AlexRod-AUG

Author: Anthony T. Holdener III
Genre: tech
Cover Image:

Cabezales Aleatorios para Adobe Groups / Random headers for Adobe Groups 1
Code Snippet posted on Nov 11 by AlexRod-AUG

Description:

Para poder personalizar un poco más este nuevo espacio he preparado este pequeño codigo PHP que nos permitirá tener una carpeta con imagenes para cabezales y elsegir de forma aleatoria uno para visualizar en nuestro Adobe Group. De esta forma en la configuración del Adobe Group especificar como imagen del header la ruta al .php.

Espero les sirva...

Salu2

PD: Pueden refrescar  la home del grupo para ver como cambian los cabezales :)


Screenshot:
Code: <?php
/**
* Cabezales Aleatorios
* www.maug.es
* www.alejandrorodriguez.info
*/
$ruta="./cabezales/";
$handle = opendir($ruta);
$stack= array();
while($file= @readdir($handle)) {
if ( $file!='.' && $file!='..' ) {
array_push ($stack, $file);
}
}
@closedir($handle);
shuffle($stack);
$cabezal=$ruta.$stack[ mt_rand(0, count( $stack )-1 )];
$len = filesize($cabezal);
$filename = basename($cabezal);

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");

header("Content-Type: image/jpg");

header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$len);
@readfile($cabezal);
exit;
?>

Conectar Flex 3 con PHP usando WebORB
Bookmark posted on Nov 11 by AlexRod-AUG

Documentacion CS4
Bookmark posted on Nov 19 by mimolu_maug

Filter by Date

<< May 2013 >>
Su Mo Tu We Th Fr Sa
      01 02 03 04
05 06 07 08 09 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  

Filter by Type

Video
File
Design Pattern
Contact
Code Snippet
Bookmark
Book

Change View

Titles
Summaries
Table
Clip
Clip & Comments
Full

Change Sort

Alphabetically
By Last Activity
By Date Posted
By Number of Comments
By Number of Views
By Author