From 4c34e4f274ac9eec52e1ff62a7caf016b94c6304 Mon Sep 17 00:00:00 2001 From: gloas <gloas@git-test.afi-sa.fr> Date: Tue, 9 Apr 2013 16:24:46 +0000 Subject: [PATCH] Moissonnage Vodeclic , parse catalogue XML --- .gitattributes | 4 + library/Class/WebService/Vodeclic.php | 37 + .../WebService/Vodeclic/CatalogueParser.php | 82 + tests/fixtures/vodeclic_catalogue.xml | 12913 ++++++++++++++++ .../library/Class/WebService/VodeclicTest.php | 96 + 5 files changed, 13132 insertions(+) create mode 100644 library/Class/WebService/Vodeclic.php create mode 100644 library/Class/WebService/Vodeclic/CatalogueParser.php create mode 100644 tests/fixtures/vodeclic_catalogue.xml create mode 100644 tests/library/Class/WebService/VodeclicTest.php diff --git a/.gitattributes b/.gitattributes index 6f49e484567..c9747ebc6f9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2475,6 +2475,8 @@ library/Class/WebService/SIGB/VSmart/Service.php -text library/Class/WebService/SRU.php -text library/Class/WebService/SimpleWebClient.php -text library/Class/WebService/Vignette.php -text +library/Class/WebService/Vodeclic.php -text +library/Class/WebService/Vodeclic/CatalogueParser.php -text library/Class/WebService/XMLParser.php -text library/Class/Xml.php -text library/Class/Xml/Builder.php -text @@ -5046,6 +5048,7 @@ tests/fixtures/fnac_millenium_suite.html -text tests/fixtures/lastfm_right_franz_liszt_pelerinage.html -text tests/fixtures/lastfm_wrong_franz_liszt_pelerinage.html -text tests/fixtures/orphee.wsdl -text +tests/fixtures/vodeclic_catalogue.xml -text tests/fixtures/ws_maze.wsdl -text tests/library/Class/AdminVarTest.php -text tests/library/Class/AgendaSQYImportTest.php -text @@ -5159,6 +5162,7 @@ tests/library/Class/WebService/SIGB/PergameTest.php -text tests/library/Class/WebService/SIGB/VSmartAuthenticateTest.php -text tests/library/Class/WebService/SIGB/VSmartFixtures.php -text tests/library/Class/WebService/SIGB/VSmartTest.php -text +tests/library/Class/WebService/VodeclicTest.php -text tests/library/Class/Xml/BuilderTest.php -text tests/library/ZendAfi/Auth/Adapter/AuthCommSigbTest.php -text tests/library/ZendAfi/AuthTest.php -text diff --git a/library/Class/WebService/Vodeclic.php b/library/Class/WebService/Vodeclic.php new file mode 100644 index 00000000000..14fce907d97 --- /dev/null +++ b/library/Class/WebService/Vodeclic.php @@ -0,0 +1,37 @@ +<?php +/** + * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved. + * + * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * AFI-OPAC 2.0 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with AFI-OPAC 2.0; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +class Class_Webservice_Vodeclic { + protected $_albums; + + public function parseXML($xml) { + $parser = new Class_WebService_Vodeclic_CatalogueParser(); + $parser->parseXML($xml); + $this->_albums = $parser->getAlbums(); + } + + + public function getAlbums() { + return $this->_albums; + } +} + +?> \ No newline at end of file diff --git a/library/Class/WebService/Vodeclic/CatalogueParser.php b/library/Class/WebService/Vodeclic/CatalogueParser.php new file mode 100644 index 00000000000..ef8d6c71771 --- /dev/null +++ b/library/Class/WebService/Vodeclic/CatalogueParser.php @@ -0,0 +1,82 @@ +<?php +/** + * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved. + * + * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * AFI-OPAC 2.0 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with AFI-OPAC 2.0; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +class Class_WebService_Vodeclic_CatalogueParser { + protected $_albums, + $_current_album; + + public function parseXML($xml) { + $parser = new Class_WebService_XMLParser(); + $parser->setElementHandler($this); + $parser->parse($xml); + } + + + public function getAlbums() { + return $this->_albums; + } + + + public function startFormation($attributes) { + $this->_current_album = new Class_Album(); + $this->_albums[]= $this->_current_album; + } + + + public function endTitre($data) { + $this->_current_album->setTitre($data); + } + + public function endVodeclic_id($data) { + $this->_current_album->setIdOrigine($data); + } + + public function endLink($data) { + $this->_current_album->setUrlOrigine($data); + } + + public function endDescription($data) { + $this->_current_album->setDescription($data); + } + + + /** Initialisation du parametre Id_Langue a fre */ + public function endLanguage($data) { + $idLangue='fre'; + if($data=='fr'){ + $idLangue='fre'; + } + $this->_current_album->setIdLangue($idLangue); + } + + public function endPublishdate($data){ + $this->_current_album->setDateMaj($data); + } + + public function endPublishyear($data) { + $this->_current_album->setAnnee($data); + } + + +} + + +?> \ No newline at end of file diff --git a/tests/fixtures/vodeclic_catalogue.xml b/tests/fixtures/vodeclic_catalogue.xml new file mode 100644 index 00000000000..0a82540c1f1 --- /dev/null +++ b/tests/fixtures/vodeclic_catalogue.xml @@ -0,0 +1,12913 @@ +<?xml version="1.0" encoding="UTF-8"?> +<data> + <formations> + + <formation> + <vodeclic_id>1</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/1</link> + <titre>Safari 2</titre> + <duree>1h16</duree> + <description>Le parcours pédagogiques Safari 2 de A à Z va vous permettre de prendre complètement en main ce navigateur internet installé par défaut sur tous les ordinateurs Apple. Vous y découvrirez une navigation sur Internet simplifiée à l'aide de la barre d'adresse, du champs de recherche Google, des onglets de Safari 2… Nos vidéos-formations vous apprendront également des astuces pour mieux vivre internet au quotidien avec Safari 2. Ainsi vous apprendrez à maîtriser l'historique, vos signets, les formulaires de remplissage automatique et plein d'autres choses !</description> + <nb_formations>27 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-01T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/1/small/1209462676_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/1/medium/safari_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/1/original/safarie2_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/22/medium/1236790736.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/27/medium/1236790740.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/18/medium/1236790733.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3/medium/1236790721.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6/medium/1236790723.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>2</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/2</link> + <titre>iTunes 9</titre> + <duree>2h42</duree> + <description>Ce parcours pédagogique va vous expliquer le fonctionnement d'iTunes 9 sur votre Mac. Vous apprendrez donc tout ce qu'il faut savoir sur ce logiciel : en allant de l'importation de vos morceaux de musique jusqu'à l'achat en ligne, en passant par la gestion des podcasts audio et vidéo. Nous vous montrerons également comment personnaliser le fonctionnement d'iTunes 9, afin que celui-ci réponde à vos attentes. De plus, vous découvrirez la grande nouveauté de cette nouvelle version : l'échange de vos morceaux de musique entre différents Mac.</description> + <nb_formations>35 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-25T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/2/small/1253110450_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/2/medium/ITUNES_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/2/original/itunes9mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2033/medium/1253113314.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2027/medium/1253112855.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2018/medium/1253111899.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2026/medium/1253112781.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2021/medium/1253112238.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>3</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/3</link> + <titre>Firefox 2</titre> + <duree>1h26</duree> + <description>Ce parcours pédagogique a pour objectif de vous former totalement au navigateur internet Firefox 2. Vous allez découvrir dans tous les détails Firefox 2, ce navigateur gratuit et libre. Vous y découvrirez les bases de la navigation sur internet (naviguer entre les sites Internet, faire des recherches…)mais aussi des spécificités de ce navigateur. Vous apprendrez ainsi plein d'usages pratiques : créer des barres d'outils personnalisés, classer vos marques pages grâce à un gestionnaire, modifier le fonctionnement des onglets, faire des recherches dans une page internet…</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-24T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/3/small/1209462677_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/3/medium/firefox_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/3/original/firefox2_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/52/medium/1236790758.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/77/medium/1236790777.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/75/medium/1236790776.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/54/medium/1236790760.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/60/medium/1236790764.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>4</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/4</link> + <titre>Windows Mail (Vista)</titre> + <duree>1h19</duree> + <description>Le parcours pédagogique intégral sur Windows Mail a pour objectif de vous initier complètement à l'utilisation de ce logiciel e-mail installé par défaut sur Windows Vista. Vous y découvrirez toutes les étapes nécessaires à une pratique efficace et ludique du logiciel : envoi d'un e-mail, insertion de pièces-jointes, configuration de votre compte.... Ces vidéos-formations sont également là pour vous faire réaliser l'aide quotidienne que peut vous apporter Windows Mail. Ainsi vous deviendrez complètement autonome que vous souhaitiez envoyer quelques e-mails ou l'utiliser dans un contexte professionnel !</description> + <nb_formations>21 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-06T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/4/small/1209462677_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/4/medium/windows_mail_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/4/original/windows-mail_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/82/medium/1236790780.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/92/medium/1236790789.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/98/medium/1236790794.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/86/medium/1236790785.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/89/medium/1236790787.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>5</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/5</link> + <titre>Outlook Express 6</titre> + <duree>1h24</duree> + <description>Outlook Express 6 est le logiciel proposé par défaut par Microsoft dans son système d'exploitation Windows XP. Notre parcours de formation intégral va vous permettre d'appréhender complètement la gestion de vos e-mails. Tous les usages de l'e-mail sont traités que ce soit l'installation de votre compte POP, l'envoi de votre premier e-mail, la mise en place de vos signatures, la lutte contre le courrier indésirable…</description> + <nb_formations>27 formations</nb_formations> + <language>fr</language> + <publishDate>2007-09-06T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/5/small/1209462677_27768_1.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/5/medium/outlook-express-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/5/original/outlookexpress6_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/112/medium/1236790804.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/101/medium/1236790796.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/102/medium/1236790797.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/101/medium/1236790796.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/100/medium/1236790795.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>6</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/6</link> + <titre>Mail (Tiger)</titre> + <duree>1h30</duree> + <description>Mail est un logiciel de messagerie qui peut vous rendre bien des services. Saviez-vous par exemple qu'il communique avec votre Carnet d'Adresse pour gérer vos contacts ou qu'il est capable de se souvenir de toutes les adresses e-mails des correspondants à qui vous avez déjà écrit ? Ce parcours de formation a été conçu spécifiquement pour vous faire découvrir toutes les fonctionnalités de l'application Mail et les interactions avec votre Mac. Vous pourrez par la suite l'utiliser dans un contexte familial ou pour votre travail.</description> + <nb_formations>28 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-06T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/6/small/1209462677_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/6/medium/mails_mac_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/6/original/mail-tiger_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/146/medium/1236790830.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/140/medium/1236790826.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/139/medium/1236790825.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/130/medium/1236790819.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/134/medium/1236790822.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>8</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/8</link> + <titre>iCal (Tiger)</titre> + <duree>0h23</duree> + <description>Vous avez encore oublié l'anniversaire d'un proche ? Vous venez de rater un rendez-vous ? Il est temps pour vous de regarder ce parcours de formation sur iCal. Ce logiciel de gestion de votre calendrier est fourni gratuitement avec votre Mac. iCal vous permettra de vous souvenir de tous vos rendez-vous et des tâches à effectuer. Par ailleurs, grâce à un astucieux système d'impression, vous pourrez toujours en avoir une version papier dans votre poche.</description> + <nb_formations>7 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-08T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/8/small/1209462677_27768_1.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/8/medium/ical_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/8/original/ical_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/282/medium/1236790937.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/284/medium/1236790940.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/280/medium/1236790935.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/283/medium/1236790938.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/286/medium/1236790942.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>9</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/9</link> + <titre>Carnet d'adresse (Tiger)</titre> + <duree>0h33</duree> + <description>Le Carnet d'adresses est une application disponible gratuitement avec Mac OS X Tiger. Elle vous permet de gérer vos contacts qui se multiplient avec Internet. Ce parcours intégral de formation vous apprendra donc à enregistrer vos contacts et y ajouter toutes les informations nécessaires (e-mail, adresse postale, photographie). Vous découvrirez aussi des astuces bien pratique du Carnet d'adresses comme la suppression des doublons ou la gestion des anniversaire !</description> + <nb_formations>11 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-09T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/9/small/1209462678_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/9/medium/carnet_adresse_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/9/original/carnet_d_adresse_Tiger_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/288/medium/1236790943.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/293/medium/1236790947.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/290/medium/1236790945.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/297/medium/1236790950.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/287/medium/1236790943.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>11</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/11</link> + <titre>iPhoto '06</titre> + <duree>1h47</duree> + <description>Vous venez d'acheter un appareil photo numérique et vous vous demandez comment gérer vos photographies sur votre Mac ? Regardez dès maintenant ce parcours pédagogique sur iPhoto 6. Vous vous formerez sur toutes les possibilités de la photographie numérique. Du classement des photographies, en passant par la retouche d'image ou la diffusion des photographies (e-mail, impression…), iPhoto 6 n'aura plus de secrets pour vous !</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-24T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/11/small/1209462678_27768_1.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/11/medium/iphoto_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/11/original/iphotso06_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/329/medium/1236790975.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/334/medium/1236790980.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/318/medium/1236790965.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/327/medium/1236790973.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/307/medium/1236790958.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>13</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/13</link> + <titre>Galerie de photos Windows (Vista)</titre> + <duree>0h46</duree> + <description>Si la photographie numérique est si pratique, c'est parce qu'il est ensuite possible de gérer vos photographies directement sur votre PC. Notre parcours de formation intégral vous expliquera tout de la Galerie de photographies Windows. Vous apprendrez à utiliser les fonctionnalités classiques comme l'ajout d'informations sur une ou plusieurs photographies, le tri des photographies, la retouche photographique… Nous vous proposons aussi d'aller plus loin en découvrant des nouveautés moins connu comme la possibilité de modifier directement le papier peint de son Bureau depuis la Galerie de photographies Windows.</description> + <nb_formations>17 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-10T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/13/small/1209462678_27768_1.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/13/medium/galerie_de_photos_de_windows_vista__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/13/original/Galerie_de_photos_Windows_Vista_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/342/medium/1236790985.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/338/medium/1236790982.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/341/medium/1236790984.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/351/medium/1236790991.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/337/medium/1236790982.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>14</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/14</link> + <titre>Mes images (XP)</titre> + <duree>0h22</duree> + <description>Ce parcours pédagogique vous montrera comment utiliser le dossier Mes images de Windows XP. Tous les points essentiels de pour la gestion de vos photographies numériques sont traités dans nos vidéos-formations. Ainsi vous apprendrez à la fois à les stocker, les classer et les ranger et les visualiser à l'aide des diaporamas.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-10T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/14/small/1209462678_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/14/medium/Mes_images_XP_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/14/original/Mes_images_XP_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/361/medium/1236790998.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/359/medium/1236790996.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/360/medium/1236790997.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/358/medium/1236790995.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/363/medium/1236790999.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>15</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/15</link> + <titre>iTunes 7</titre> + <duree>1h28</duree> + <description>Ce parcours de formation vous expliquera comment profiter de la musique numérique à l'aide d'iTunes et de votre Mac. Vous découvrirez qu'il est à la fois possible d'importer vos musiques depuis un CD ou d'en acheter sur le magasin en ligne d'Apple. Nous vous apprendrons également à naviguer et ranger vos morceaux de musique qui deviendront très vite très nombreux. Par ailleurs de nombreuses astuces vous seront décrites comme la suppression des doublons, l'optimisation du rendu sonore, la personnalisation des pochettes des CD…. Au final, vous maîtriserez complètement iTunes 7 !</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-11T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/15/small/1209462678_27768_2.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/15/medium/ITUNES_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/15/original/itunes7mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/366/medium/1236791003.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/380/medium/1236791013.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/375/medium/1236791010.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/394/medium/1236791025.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/385/medium/1236791017.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>16</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/16</link> + <titre>iTunes 7</titre> + <duree>1h20</duree> + <description>iTunes 7 est un logiciel de gestion de vos morceaux de musique qui fonctionne sur votre PC. Ce parcours de formation intégral à pour objectif de vous expliquer comment profiter au mieux de ce logiciel ! Toutes les étapes de la gestion de vos MP3 vous seront présentés : importation de vos CD, rangement de vos musiques, achat de musique en ligne, configuration du logiciel… Par ailleurs de nombreuses astuces vous seront décrites comme écouter la radio du XXI siècles avec les Podcast, utiliser le contrôle parental…. Au final, vous maîtriserez complètement iTunes 7 !</description> + <nb_formations>24 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-11T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/16/small/1209462678_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/16/medium/ITUNES_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/16/original/itunes7_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/415/medium/1236791042.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/397/medium/1236791027.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/396/medium/1236791026.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/401/medium/1236791030.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/413/medium/1236791040.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>17</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/17</link> + <titre>Windows Media Player 11</titre> + <duree>1h04</duree> + <description>Windows Média Player est installé sur votre PC pour vous permettre de lire vos musiques. Ce parcours de formation va vous expliquer comment l'utiliser de A à Z. Vous apprendrez tout d'abord à importer vos musiques stockées sur CD. Par la suite, vous apprendre à lire vos musiques et à les ranger. Nos vidéos-formations vont donc vous aider à tout savoir du lecteur Windows Média Player.</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-13T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/17/small/1209462678_27768_1.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/17/medium/WindowsMediaPlayer_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/17/original/mediaplayer11_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/428/medium/1236791051.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/426/medium/1236791050.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/424/medium/1236791048.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/434/medium/1236791055.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/435/medium/1236791056.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>21</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/21</link> + <titre>Word 2003</titre> + <duree>4h01</duree> + <description>Le parcours pédagogique sur Word 2003 vous permettra d'utiliser Word 2003 au mieux dans votre quotidien. Vous découvrirez que ce logiciel de traitement de texte est utile pour faire des lettres simples mais aussi des documents bien plus complexes comme des CV, des invitations, des mémoires ou des thèses. Vous vous formerez à tous les aspects essentiels de Word 2003 : l'insertion et la mise en forme de caractère, la mise en page du document, l'utilisation d'objets (tableaux, images, graphiques…), la gestion des notes de bas de pages et bien plus encore…Notre formateur vous expliquera également l'intérêt et le fonctionnement du publipostage afin de générer simplement des enveloppes ou des étiquettes.</description> + <nb_formations>43 formations</nb_formations> + <language>fr</language> + <publishDate>2007-09-07T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/21/small/1209462679_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/21/medium/word2003_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/21/original/word2003_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/647/medium/1236791233.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/515/medium/1236791129.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/637/medium/1236791224.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/513/medium/1236791127.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/515/medium/1236791129.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>26</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/26</link> + <titre>Internet Explorer 7</titre> + <duree>0h59</duree> + <description>Internet Explorer 7 est le navigateur internet le plus utilisé par les internautes dans le monde. Nous vous proposons de maîtriser complètement ce logiciel. Vous saurez tout de l'accès à un site Internet en passant par la maîtrise de l'historique ou de vos favoris et en finissant par la configuration du logiciel. Par ailleurs, des petites astuces vous permettront de gagner du temps au quotidien. Par exemple, vous pourrez demander à Internet Explorer 7 de conserver en mémoire vos identifiants et mots de passe sur certains sites Internet.</description> + <nb_formations>21 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-24T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/26/small/1209462677_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/26/medium/IE_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/26/original/IE7_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/45/medium/1236790754.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/34/medium/1236790745.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/38/medium/1236790748.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/36/medium/1236790747.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/37/medium/1236790747.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>42</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/42</link> + <titre>Excel 2003</titre> + <duree>2h42</duree> + <description>Le parcours pédagogique sur Excel 2003 vous permettra d'utiliser Excel 2003 au mieux dans votre quotidien. Vous découvrirez que ce tableur est utile pour faire des calculs, mais aussi vos comptes personnels ou pour mettre en place des reporting dans votre entreprise. Vous vous formerez à tous les aspects essentiels d'Excel 2003 : l'insertion de données sur plusieurs lignes, la mise en forme de vos tableaux, la création de formule de calcul ou la génération de graphique…Notre formateur vous expliquera également comment naviguer plus simplement dans votre fichier Excel à l'aide des feuilles, des volets et du regroupement de colonnes.</description> + <nb_formations>24 formations</nb_formations> + <language>fr</language> + <publishDate>2007-09-13T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/42/small/1233731349_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/42/medium/exel03_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/42/original/excel2003_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/806/medium/1236791386.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/733/medium/1236791299.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/740/medium/1236791305.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/805/medium/1236791384.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/729/medium/1236791296.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>43</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/43</link> + <titre>Skype 4.1</titre> + <duree>1h12</duree> + <description>Savez-vous que Skype 4 vous permet d'avoir une conversation avec les personnes souhaitées directement depuis votre PC ? Au sein de notre programme pédagogique vous apprendrez à avoir une conversation par écrit, mais aussi par oral. Vous découvrirez deux modes de communication : appeler une personne ou organiser une vidéo-conférence. Notre formateur vous montrera également plein de petites astuces : personnalisation de l'interface, rangement de vos contacts...</description> + <nb_formations>17 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-04T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/43/small/1253262869_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/43/medium/skype_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/43/original/skype4.1_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2048/medium/1253264474.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2060/medium/1253267554.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2052/medium/1253265650.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2046/medium/1253263992.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2047/medium/1253264248.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>44</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/44</link> + <titre>iTunes 9</titre> + <duree>2h37</duree> + <description>iTunes 9 est une application gratuite qui peut lire vos morceaux de musique sur votre PC. Ce parcours de formation va vous expliquer comment se servir de ce logiciel. Vous allez donc suivre toutes les étapes essentielles à son bon fonctionnement : l'importation de votre musique, le rangement de celle-ci dans votre bibliothèque, la personnalisation du fonctionnement d'iTunes... Vous découvrirez aussi la grande nouveauté d'iTunes 9 : l'échange de morceaux de musique entre différents ordinateurs de votre foyer. Grâce à nos vidéos-formations, iTunes 9 n'aura plus de secret pour vous !</description> + <nb_formations>36 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-26T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/44/small/1253027923_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/44/medium/ITUNES_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/44/original/itunes9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2007/medium/1253092699.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1999/medium/1253032674.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1994/medium/1253032074.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1996/medium/1253032431.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1987/medium/1253031230.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>45</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/45</link> + <titre>iPhoto '08</titre> + <duree>1h57</duree> + <description>Vous venez d'acheter un appareil photo numérique et vous vous demandez comment gérer vos photographies sur votre Mac ? Regardez dès maintenant ce parcours pédagogique sur iPhoto 8. Vous vous formerez sur toutes les possibilités de la photographie numérique. Du classement des photographies, en passant par la retouche d'image ou la diffusion des photographies (e-mail, impression…), iPhoto 8 n'aura plus de secrets pour vous !</description> + <nb_formations>32 formations</nb_formations> + <language>fr</language> + <publishDate>2007-11-27T00:00:00+01:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/45/small/1209462680_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/45/medium/iphoto_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/45/original/iphotos8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/307/medium/1236790958.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/323/medium/1236790969.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/313/medium/1236790962.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/330/medium/1236790976.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/908/medium/1236791338.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>51</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/51</link> + <titre>Norton Internet Security 2007</titre> + <duree>0h38</duree> + <description>Ce parcours de formation a pour objectif de vous montrer dans les grandes lignes le fonctionnement de Norton Internet Security 2007. Vous y apprendrez tout à la fois à installer le logiciel et à effectuer des analyses pour vérifier que votre ordinateur n'est pas contaminé. Par ailleurs, notre formateur vous expliquera comment réaliser des mises à jour pour que Norton Internet Security puisse lutter efficacement contre les virus.</description> + <nb_formations>6 formations</nb_formations> + <language>fr</language> + <publishDate>2007-09-07T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/51/small/1209462680_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/51/medium/norton_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/51/original/norton2007_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/803/medium/1236791382.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/807/medium/1236791387.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/801/medium/1236791378.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/807/medium/1236791387.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/801/medium/1236791378.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>52</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/52</link> + <titre>Samsung</titre> + <duree>0h56</duree> + <description>Enfin un parcours de formation qui est disponible pour vous aider à utiliser votre imprimante Samsung. Vous disposerez d'une explication complète de l'installation de l'imprimante sur votre PC en passant par votre première impression et en finissant par la configuration de votre imprimante Samsung. Notre formateur vous montrera en plus comment résoudre toutes vos difficultés d'impression : bourrage papier, impression de mauvaises qualités...</description> + <nb_formations>9 formations</nb_formations> + <language>fr</language> + <publishDate>2007-10-07T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/52/small/1209462680_27768_1.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/52/medium/samsung_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/52/original/samsung_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/820/medium/1236791396.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/817/medium/1236791393.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/815/medium/1236791391.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/816/medium/1236791392.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/819/medium/1236791395.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>53</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/53</link> + <titre>Samsung</titre> + <duree>0h49</duree> + <description>Enfin un parcours de formation qui est disponible pour vous aider à utiliser votre imprimante Samsung. Vous disposerez d'une explication complète de l'installation de l'imprimante sur votre Mac en passant par votre première impression et en finissant par la configuration de votre imprimante Samsung. Notre formateur vous montrera en plus comment résoudre toutes vos difficultés d'impression : bourrage papier, impression de mauvaises qualités...</description> + <nb_formations>9 formations</nb_formations> + <language>fr</language> + <publishDate>2007-10-07T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/53/small/1209462681_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/53/medium/samsung_27768_1.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/53/original/samsung_27768_1.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/823/medium/1236791399.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/822/medium/1236791398.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/830/medium/1236791406.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/829/medium/1236791405.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/827/medium/1236791402.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>55</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/55</link> + <titre>Mail (Leopard)</titre> + <duree>2h13</duree> + <description>Parmi les nouveautés de Mac OS X Léopard, Mail est l'une des applications complètement revues. Rassurez-vous, le logiciel sert toujours à récupérer vos e-mails ! Mais saviez-vous par exemple qu'il communique avec iCal pour gérer votre calendrier ou qu'il est capable de vous afficher vos photographies stockées dans iPhoto ? Ce parcours de formation a été conçu spécifiquement pour vous faire redécouvrir ce nouveau Mail. Vous profiterez ainsi du papier à lettre pour créer de joli e-mail, des notes pour disposer d'un bloc note ou encore de coup d'oeil pour voir en un clin d'oeil vos pièces jointes !</description> + <nb_formations>27 formations</nb_formations> + <language>fr</language> + <publishDate>2007-11-04T00:00:00+01:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/55/small/1209462681_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/55/medium/mails_mac_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/55/original/mail-leopard_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/882/medium/1236791439.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1243/medium/1236791669.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/867/medium/1236791428.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/874/medium/1236791432.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/858/medium/1236791422.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>61</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/61</link> + <titre>Optenet 9.8</titre> + <duree>1h03</duree> + <description>Ce parcours de formation intégral sur Optenet 9 va vous permettre d'apprendre à utiliser de fond en comble ce logiciel de contrôle parental. Notre formateur vous expliquera comment configurer le logiciel. Cette étape est trop souvent négligée par les parents alors qu'elle est indispensable ! Par ailleurs, pour chaque limitation mise en place, nous vous montrerons les conséquences pratiques pour vos enfants.</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2008-03-16T00:00:00+01:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/61/small/1210780664_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/61/medium/optenet_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/61/original/optenet9.8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/933/medium/1236791459.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/936/medium/1236791462.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/943/medium/1236791470.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/929/medium/1236791456.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/935/medium/1236791461.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>62</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/62</link> + <titre>PowerPoint 2003</titre> + <duree>3h53</duree> + <description>Notre formation intégrale sur PowerPoint 2003 est idéale pour devenir complètement autonome dans l'utilisation de ce logiciel. Vous découvrirez que ce logiciel de présentation peut s'avérer utile dans plein de situations différentes : accompagner une présentation orale, envoyer des photographies à un proche, réaliser une brochure commerciale, créer une carte d'anniversaire…Vous disposerez donc d'une formation complète sur PowerPoint 2003 : insertion de texte, insertion et gestion des formes, animation d'un diaphragma, ajout de fichiers multimédia (image, vidéo, son ou graphique)…</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2008-04-13T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/62/small/1209462681_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/62/medium/powerpoint2003_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/62/original/powerpoint2003_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1065/medium/1236791539.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1015/medium/1236791513.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1010/medium/1236791511.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1012/medium/1236791512.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/957/medium/1236791479.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>63</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/63</link> + <titre>Norton Internet Security 2008</titre> + <duree>2h51</duree> + <description>Vous disposez de Norton Internet Security 2008 sur votre ordinateur : pourquoi ne pas vous former sur le logiciel afin de le faire marcher correctement ? C'est la réponse que nous apportons avec ce parcours de formation intégral à Norton Internet Security 2008. Notre formateur vous expliquera la lutte contre les virus mais aussi comment vous protéger contre les intrusions, les arnaques à la carte bancaire ou vos protéger contre les logiciels espions.</description> + <nb_formations>36 formations</nb_formations> + <language>fr</language> + <publishDate>2008-04-12T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/63/small/1209462681_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/63/medium/norton_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/63/original/norton2008_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/988/medium/1236791499.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/979/medium/1236791492.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/988/medium/1236791499.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/986/medium/1236791498.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/972/medium/1236791488.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>64</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/64</link> + <titre>Kaspersky Internet Security 7</titre> + <duree>2h10</duree> + <description>Le parcours de formation intégral sur Kaspersky 7 a été conçu pour vous former complètement sur cette suite de sécurité. Notre formateur vous expliquera les différentes capacités du logiciel Kaspersky 7. Vous découvrirez notamment qu'il est capable de lutter contre les virus mais qu'il vous propose aussi un pare-feu, un module de protection de votre vie privée et un contrôle parental. Par ailleurs, nous vous montrerons des astuces bien pratiques dans l'utilisation quotidienne du logiciel.</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2008-06-15T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/64/small/1213547711_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/64/medium/kaspersky_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/64/original/kaspersky7_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4703/medium/4703.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1024/medium/1236791519.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1038/medium/1236791527.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4712/medium/4712.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1030/medium/1236791523.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>65</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/65</link> + <titre>Firefox 3</titre> + <duree>0h38</duree> + <description>Firefox 3 reste pour vous un nom bizarre que prononce certains de vos amis ou de vos collègues ? Vous pensez qu'il n'est pas compatible sur Mac ? Grâce à ce parcours pédagogiques, vous allez enfin découvrir ce navigateur Internet ! Apprenez avec Firefox 3 toutes les bases de la navigation Internet : naviguer sur un site internet, utiliser la barre d'adresse, faire une recherche… Vous découvrirez des fonctionnalités innovantes du navigateur avec notamment la barre de navigation intelligente.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-21T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/65/small/1214047652_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/65/medium/firefox_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/65/original/firefox3-mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1058/medium/1236791536.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1053/medium/1236791535.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1057/medium/1236791535.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1054/medium/1236791532.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1052/medium/1236791534.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>67</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/67</link> + <titre>OpenOffice Writer 2.4</titre> + <duree>2h02</duree> + <description>Un logiciel gratuit pour votre traitement de texte ? Non, vous ne rêvez pas c'est ce que vous propose OpenOffice Writer ! Pour autant sans une formation sur le sujet, vous serez complètement perdu. Le parcours pédagogique sur OpenOffice Writer vous permettra d'utiliser OpenOffice Writer au mieux dans votre quotidien. Vous découvrirez que ce logiciel de traitement de texte est capable de tout faire : de simples courriers, des rapports, des invitations… Vous vous formerez à tous les aspects essentiels de Writer : l'insertion et la mise en forme de caractère, la mise en page du document, l'utilisation des styles de mise en page, le suivi des modifications et bien plus encore…</description> + <nb_formations>25 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-04T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/67/small/1215285900_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/67/medium/open_office_writer_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/67/original/openwritter2.4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1079/medium/1236791545.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1088/medium/1236791551.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1090/medium/1236791553.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1083/medium/1236791547.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1075/medium/1236791543.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>69</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/69</link> + <titre>OpenOffice Calc 2.4</titre> + <duree>1h04</duree> + <description>Apprenez en onze vidéos-formations à utiliser le tableur gratuit OpenOffice Calc ! Notre formation vous montrera différents aspects intéressants du logiciels pour réussir à mieux gérer vos données chiffrées ou vos tableaux de bord. Ce parcours pédagogique vous montrera des fonctionnalités clés de ce logiciel comme les formules, les menus déroulants ou les tableaux croisés dynamiques.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-14T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/69/small/1216027527_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/69/medium/open_office_calc_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/69/original/opencalc2.4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1100/medium/1236791561.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1109/medium/1236791568.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1109/medium/1236791568.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1114/medium/1236791571.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1112/medium/1236791570.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>70</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/70</link> + <titre>OpenOffice Impress 2.4</titre> + <duree>0h42</duree> + <description>Vous recevez n'arrivez jamais à lire les présentations contenus en pièce jointe de vos e-mails ? Vous souhaitez présenter avec un vidéo projecteur des documents ? Il est temps pour vous de regarder ce parcours pédagogique d'initiation à OpenOffice Impress. Notre formateur va vous expliquer les points essentiels d'OpenOffice Impress : la diapositive, les modes d'affichage, la gestion des formes ou encore la navigation dans votre fichier OpenOffice Impress 2.4.</description> + <nb_formations>8 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-14T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/70/small/1216027439_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/70/medium/open_office_impress_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/70/original/openimpress2.4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1108/medium/1236791568.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1115/medium/1236791572.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6985/medium/6985.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1108/medium/1236791568.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1164/medium/1236791605.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>71</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/71</link> + <titre>Keynote '08</titre> + <duree>0h18</duree> + <description>Êtes-vous prêt à essayer le logiciel de présentation d'Apple nommé Keynotes ? Notre formateur va vous en montrer un avant goût en vous montrant les points clés disponibles dans cette application. Vous découvrez comment keynote peut programmer le déplacement d'un objet dans votre diaporama, gérer des modèles de document, ou créer des compositions intelligentes.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-16T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/71/small/1216218201_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/71/medium/keynote_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/71/original/keynotes8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1119/medium/1236791574.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1121/medium/1236791575.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1116/medium/1236791572.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1118/medium/1236791574.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1120/medium/1236791574.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>72</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/72</link> + <titre>Numbers '08</titre> + <duree>0h14</duree> + <description>Vous vous demandez si Numbers, le tableur d'Apple, peut vous être utile au quotidien ? Notre formateur va vous montrer à travers 5 exemples le fonctionnement de cette application et ces avantages. Ainsi dans notre parcours pédagogique vous découvrirez comment effectuer très simplement des formules ou comment créer des graphique en trois clics. Vous apprendrez en plus à utiliser les tableaux prédéfinis qui vous feront réaliser un gain de temps considérable !</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-16T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/72/small/1216218425_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/72/medium/numbers_08_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/72/original/numbers08_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1124/medium/1236791577.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1125/medium/1236791577.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1117/medium/1236791573.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1123/medium/1236791576.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1122/medium/1236791576.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>73</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/73</link> + <titre>Pages '08</titre> + <duree>0h19</duree> + <description>Vous souhaitez découvrir tous les avantages du traitement de texte d'Apple Pages '08 ? Ce parcours de formation est fait pour vous ! Notre formateur vous montrera les fonctionnalités clés du logiciel comme la capacité d'intégrer simplement et joliment des images, la gestion des modèles de documents ou encore la possibilité de réaliser simplement un schéma. Cette initiation vous permettra de vous lancer à la découverte de Pages '08.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-16T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/73/small/1216217892_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/73/medium/page_08__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/73/original/pages08_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1126/medium/1236791578.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1127/medium/1236791579.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1128/medium/1236791579.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1129/medium/1236791580.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1130/medium/1236791580.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>74</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/74</link> + <titre>Excel 2008</titre> + <duree>3h46</duree> + <description>Ce parcours pédagogique vous permettra de comprendre et d'utiliser Excel 2008 sur votre Mac. Vous pourrez désormais gérer l'ensemble de vos tableaux pour créer et mettre en pages vos comptes, factures, listes de contacts ... Vous apprendrez tout ce qu'il faut savoir sur ce logiciel : l'insertion et la mise en forme de tableaux et de graphiques ainsi que la gestion des tableaux croisés dynamique et enfin la mise en place de formules. Notre formateur vous livrera en plus des petites astuces pour gagner du temps dans votre quotidien !</description> + <nb_formations>72 formations</nb_formations> + <language>fr</language> + <publishDate>2010-02-10T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/74/small/1216218849_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/74/medium/exels_mac_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/74/original/excel-2008-mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3033/medium/3033.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3043/medium/3043.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3087/medium/3087.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3041/medium/3041.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3030/medium/3030.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>75</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/75</link> + <titre>PowerPoint 2008</titre> + <duree>0h12</duree> + <description>Êtes-vous prêt à essayer PowerPoint 2008 le logiciel de présentation de Microsoft sur Mac ? Notre formateur va vous en montrer un avant goût en vous montrant les points clés disponibles dans cette application. Vous vous formerez notamment à l'insertion de formes (objet) et à la manipulation de ces dernières pour les déplacés, les regrouper ou les animer. Après cette formation, vous serez apte à progresser sur PowerPoint 2008.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-16T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/75/small/1216218925_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/75/medium/powerpoint_mac_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/75/original/powerpoint2008_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1139/medium/1236791585.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1136/medium/1236791583.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1136/medium/1236791583.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1138/medium/1236791584.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1140/medium/1236791586.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>76</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/76</link> + <titre>Word 2008</titre> + <duree>0h14</duree> + <description>Grâce à cette initiation à Word 2008, vous allez apprendre à utiliser quelques fonctionnalités importantes du logiciel. Notre formateur vous expliquera par exemple les filigranes de Word 2008 afin de protéger vos documents contre une divulgation. Vous apprendrez également à insérer des caractères spéciaux qui ne sont pas présents sur votre clavier.</description> + <nb_formations>4 formations</nb_formations> + <language>fr</language> + <publishDate>2008-07-16T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/76/small/1216218622_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/76/medium/word_2008_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/76/original/word2008_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6262/medium/6262.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6260/medium/6260.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1144/medium/1236791588.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1142/medium/1236791587.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1143/medium/1236791587.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>77</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/77</link> + <titre>Google Chrome Beta</titre> + <duree>0h34</duree> + <description>Google Chrome est un nom que vous avez vu dans la presse sans savoir exactement à quoi sert ce logiciel ? Vous êtes intrigué et aimeriez en savoir plus ? Grâce à ce parcours pédagogiques, vous allez enfin découvrir ce nouveau navigateur Internet proposé par Google ! Apprenez avec Google Chrome toutes les bases de la navigation Internet : naviguer sur le web, télécharger des fichiers, faire une recherche… Vous découvrirez des fonctionnalités innovantes de Google Chrome avec notamment la gestion des onglets et la possibilité de créer des applications Web.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2008-09-06T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/77/small/1220692112_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/77/medium/google_chrome_19.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/77/original/Google_Chrome_Beta_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1149/medium/1236791593.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1149/medium/1236791593.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1151/medium/1236791595.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1150/medium/1236791594.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1151/medium/1236791595.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>78</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/78</link> + <titre>iTunes 8</titre> + <duree>2h10</duree> + <description>Vous disposez d'iTunes 8 sur votre Mac mais vous ne savez pas comment vous en servir ? Ce parcours de formation vous expliquera comment profiter de la musique numérique à l'aide d'iTunes et de votre Mac. Vous apprendrez à importer vos morceaux de musique, à les lire dans l'ordre souhaité et à les ranger. Par ailleurs de nombreuses astuces vous seront décrites comme le contrôle parental ou l'optimisation du rendu sonore. Enfin, notre formateur vous fera découvrir les dernières nouveautés proposés par Apple avec un nouveau mode d'affichage (le mode grille) et un nouveau mode de sélection intelligente de votre musique (Génius).</description> + <nb_formations>42 formations</nb_formations> + <language>fr</language> + <publishDate>2009-01-26T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/78/small/1221842138_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/78/medium/ITUNES_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/78/original/itunes8mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/377/medium/1236791011.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/391/medium/1236791023.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/365/medium/1236791002.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/393/medium/1236791024.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/380/medium/1236791013.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>79</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/79</link> + <titre>iTunes 8</titre> + <duree>1h27</duree> + <description>Vous cherchez un logiciel pour écouter votre musique sur votre PC ? Vous venez de recevoir un iPod et vous ne savez pas comment mettre vos musiques dessus ? Découvrez immédiatement iTunes 8 ! Ce parcours de formation intégral a pour objectif de vous expliquer complètement le fonctionnement de ce logiciel. Nous vous expliquerons à la fois la lecture de vos musiques, les listes de lecture pour les ranger, l'achat d'album en ligne...Enfin, notre formateur vous fera découvrir les dernières nouveautés proposées par Apple avec un nouveau mode d'affichage (le mode grille) et un nouveau mode de sélection intelligente de votre musique (Génius).</description> + <nb_formations>26 formations</nb_formations> + <language>fr</language> + <publishDate>2008-09-25T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/79/small/1221842213_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/79/medium/ITUNES_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/79/original/itunes8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/414/medium/1236791041.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/407/medium/1236791036.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1161/medium/1236791603.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/398/medium/1236791028.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/401/medium/1236791030.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>80</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/80</link> + <titre>Thunderbird 2</titre> + <duree>2h05</duree> + <description>Pour profiter complètement du logiciel d'e-mail Thunderbird 2, il est indispensable de suivre une formation. Le parcours pédagogique intégral proposé vous apporte une réponse concrète à vos questions. Vous y apprendrez les fondamentaux (configuration, consultation) mais aussi des fonctionnalités plus poussées comme lutter contre les pourriels ou la gestion des e-mails via un compte IMAP. Notre formateur vous expliquera en plus des astuces pratiques comme la gestion des flux RSS ou de plusieurs serveurs d'envoi SMTP.</description> + <nb_formations>25 formations</nb_formations> + <language>fr</language> + <publishDate>2008-10-05T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/80/small/1223112833_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/80/medium/thunderbird_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/80/original/thunderbird2_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1183/medium/1236791618.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1182/medium/1236791617.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1177/medium/1236791614.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1170/medium/1236791609.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1187/medium/1236791624.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>81</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/81</link> + <titre>VAIO MusicBox 2</titre> + <duree>0h30</duree> + <description>Vous disposez d'un Sony Vaio et vous ne savez pas comment écouter votre musique ? Nos vidéos-formations et le logiciel Vaio MusicBox vont vous venir en aide pour y parvenir simplement. Vous apprendrez à la fois à naviguer parmi votre musique, à l'écouter mais aussi à effectuer des recherches. Notre formateur vous formera également pour que vous puissiez personnaliser le logiciel et même exporter une liste de lecture.</description> + <nb_formations>7 formations</nb_formations> + <language>fr</language> + <publishDate>2008-09-03T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/81/small/1223114199_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/81/medium/vaio_musics_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/81/original/vaiomusic_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1194/medium/1236791630.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1198/medium/1236791632.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1196/medium/1236791631.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1199/medium/1236791633.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1200/medium/1236791633.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>82</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/82</link> + <titre>VLC Media Player 0.9.3</titre> + <duree>0h36</duree> + <description>En regardant les vidéos-formations présentent dans ce parcours pédagogique, vous apprendrez à utiliser VLC Media Player sur votre Mac. Que ce soit pour son installation, la lecture d'un DVD ou encore la gestion du son, notre formateur vous accompagnera afin de vous expliquer toutes ces différentes étapes. Par ailleurs, vous verrez aussi comment configurer VLC Media Player afin d'adapter ce logiciel à votre utilisation.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2008-10-20T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/82/small/1223455685_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/82/medium/vlc_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/82/original/vlcmac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1204/medium/1236791636.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1203/medium/1236791635.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1207/medium/1236791639.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1206/medium/1236791638.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1202/medium/1236791634.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>83</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/83</link> + <titre>VLC Media Player 0.9.3</titre> + <duree>0h23</duree> + <description>Vous cherchez un lecteur vidéo rapide et qui lise tous les formats ? Ce parcours pédagogique vous propose de vous former intégralement au logiciel idéal pour vous : VLC Média Player. Notre formateur vous accompagnera pour son installation, son utilisation et sa configuration. Vous y découvrirez par exemple comment lire un fichier vidéo, gérer le son, utiliser les fonctionnalités de lectures... Grâce à VLC Media Player et ce parcours de formation, vous aurez des réponses à toutes vos questions !</description> + <nb_formations>7 formations</nb_formations> + <language>fr</language> + <publishDate>2008-10-15T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/83/small/1223455699_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/83/medium/vlc_27768_1.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/83/original/VLC_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1217/medium/1236791647.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1211/medium/1236791642.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1213/medium/1236791643.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1214/medium/1236791644.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1215/medium/1236791645.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>85</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/85</link> + <titre>iChat 4</titre> + <duree>1h01</duree> + <description>En visionnant ce parcours de formation intégral, vous découvrirez le fonctionnement d'iChat 4 sur votre Mac. Vous apprendrez que ce logiciel de messagerie instantanée est très utile pour avoir une conversation avec une ou plusieurs personnes de façon très rapide. Notre formateur vous décrira tout ce qu'il y a à savoir sur iChat 4 : ajouter un contact, configurer sa webcam et son micro, consulter l'historique… Vous découvrirez également des nouveautés introduites par Apple qui sont très utiles : le partage de documents et la prise de contrôle d'un autre Mac.</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2008-12-06T00:00:00+01:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/85/small/1226695058_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/85/medium/ichat_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/85/original/ichat4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1262/medium/1236791685.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1267/medium/1236791688.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1271/medium/1236791690.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1270/medium/1236791689.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1262/medium/1236791685.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>86</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/86</link> + <titre>Picasa 2.7</titre> + <duree>1h58</duree> + <description>Ce parcours pédagogique va vous montrer comment utiliser Picasa 2 sur votre ordinateur. Vous verrez donc que ce logiciel vous propose énormément de possibilité sur la gestion de vos photographie : l'importation, l'organisation (tri et rangement), la retouche et aussi le partage ! Par l'intermédiaire de ce parcours de formation, notre formateur vous montrera toutes les petites astuces à connaître afin de comprendre plus rapidement l'utilité de Picasa 2.</description> + <nb_formations>28 formations</nb_formations> + <language>fr</language> + <publishDate>2008-12-10T00:00:00+01:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/86/small/1227201545_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/86/medium/picasa_2.7_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/86/original/picasa2.7_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1293/medium/1236791706.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1278/medium/1236791694.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1280/medium/1236791696.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1291/medium/1236791705.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1310/medium/1236791718.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>87</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/87</link> + <titre>iMovie '08</titre> + <duree>1h18</duree> + <description>En visionnant ce parcours de formation, vous apprendrez comment vous servir d'iMovie '08 pour réaliser vos montages de Film. Tout vous sera expliqué par notre formateur : l'importation de vos vidéos, la retouche de celles-ci et même l'insertion d'éléments à partir d'iPhoto ! Vous verrez également quelles sont les fonctions avancées de ce logiciel de gestion de vidéos comme l'exportation d'une vidéo en format H.264. Ainsi, il vous sera possible d'effectuer un montage en tout confiance sur iMovie '08.</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2008-12-24T00:00:00+01:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/87/small/1228388304_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/87/medium/imovie_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/87/original/imovies8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1325/medium/1236791726.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1296/medium/1236791709.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1331/medium/1236791730.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1301/medium/1236791711.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1303/medium/1236791714.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>88</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/88</link> + <titre>Firefox 3</titre> + <duree>0h41</duree> + <description>Grâce à ce parcours pédagogique vous découvrirez pourquoi il faut absolument mettre à jour votre version de Firefox et donc passer à Firefox 3. En effet, vous apprendrez tout ce qu'apporte cette nouvelle version de ce navigateur internet. Notre formateur sera là pour vous accompagner afin que vous puissiez télécharger des fichiers en plusieurs fois, conserver en mémoire vos mots de passe, ajouter des fonctionnalités grâce aux modules complémentaires... Si l'on y ajoute la nouvelle barre d'adresses intelligente, vous ne pourrez plus vous passer de Firefox 3 !</description> + <nb_formations>9 formations</nb_formations> + <language>fr</language> + <publishDate>2009-01-13T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/88/small/1229600614_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/88/medium/firefox_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/88/original/firefox3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1323/medium/1236791725.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1318/medium/1236791722.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1319/medium/1236791723.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1317/medium/1236791722.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1319/medium/1236791723.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>90</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/90</link> + <titre>Parental Filter 2</titre> + <duree>0h55</duree> + <description>Ce parcours de formation va vous montrer comment Parental Filter 2 peut vous aider si vous avez des enfants. Vous allez découvrir qu'il vous permet de gérer différents profils d'utilisateur afin d'adapter ce logiciel de contrôle parental à chacun de vos enfants. Ainsi un de vos enfants pourra avoir le droit d'utiliser l'ordinateur à un moment de la journée et l'autre à un autre moment. Notre formateur vous expliquera donc tout ce qu'il faut savoir pour profiter simplement de Parental Filter 2.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2009-01-17T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/90/small/1232968431_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/90/medium/parental_filter_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/90/original/parental-filter-2_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1394/medium/1236791779.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1431/medium/1234448833.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1427/medium/1234447767.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1395/medium/1236791779.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1345/medium/1236791738.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>91</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/91</link> + <titre>BitDefender Total Security 2009</titre> + <duree>1h49</duree> + <description>Ce parcours de formation intégral a pour objectif de former totalement à BitDefender Total Security 2009. Vous allez donc découvrir dans tous les détails BiDefender 2009. Il s'agit d'une suite de sécurité très complète. Notre formateur abordera aussi un des aspects les plus compliqués : la configuration du logiciel. En effet pour l'anti-virus, le pare-feu ou le contrôle parental, il est indispensable d'effectuer cette manipulation pour protéger efficacement votre PC. Ainsi, vous disposerez d'une protection optimale de votre ordinateur avec BitDefender Total Security 2009.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2009-01-24T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/91/small/1240223633_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/91/medium/bit_defender_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/91/original/bitdefender-2009_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1391/medium/1236791777.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1390/medium/1236791776.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1392/medium/1236791777.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1424/medium/1234446625.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1429/medium/1234447875.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>92</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/92</link> + <titre>Paint.Net 3.3</titre> + <duree>0h43</duree> + <description>Vous n'arrivez pas à trouver un logiciel de retouche d'image gratuit et simple à utiliser ? Dans ce cas là , arrêtez de chercher : Paint.Net 3 et ce parcours de formation vous apportent une solution clé en main ! Vous découvrirez dans ces vidéos-formations que grâce à ce logiciel de retouche d'images vous pouvez très facilement dessiner des formes, insérer du texte, utiliser des couleurs... Notre formateur vous montrera également que Paint.Net possède un historique et gère très bien les calques. Après avoir visionné ce parcours de formation, vous utiliserez donc sans problème Paint.Net 3.</description> + <nb_formations>11 formations</nb_formations> + <language>fr</language> + <publishDate>2009-05-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/92/small/1232809510_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/92/medium/paint-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/92/original/paint.net_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1365/medium/1236791753.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1400/medium/1233850696.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1399/medium/1248258461.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1360/medium/1236791750.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1401/medium/1233850897.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>93</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/93</link> + <titre>Internet Explorer 8</titre> + <duree>1h26</duree> + <description>Internet Explorer 8 est le navigateur internet le plus utilisé sur la planète, il est donc indispensable de savoir s'en servir ! Nous vous proposons de maîtriser complètement ce logiciel par l'intermédiaire de ce parcours de formation. Vous saurez tout : de l'accès à un site Internet en passant par la maîtrise de vos favoris ou de l'historique de navigation et en finissant par la configuration du logiciel. Par ailleurs, vous découvrirez les nouveautés de cette dernière version. Par exemple, il vous est possible d'activer un mode protection de la vie privée sous Internet Explorer 8 ou encore d'utiliser des accélérateurs pour visualiser plus des informations.</description> + <nb_formations>23 formations</nb_formations> + <language>fr</language> + <publishDate>2009-04-10T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/93/small/1238148869_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/93/medium/1244535767_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/93/original/IE8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1486/medium/1486.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1485/medium/1239718332.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1482/medium/1482.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1480/medium/1480.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1488/medium/1488.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>94</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/94</link> + <titre>iMovie '09</titre> + <duree>1h26</duree> + <description>Ce parcours de formation va vous présenter iMovie '09. Vous découvrirez qu'il s'agit d'un logiciel de montage de vidéos très utilisé sur Mac. Notre formateur vous apprendra tout ce qu'il y a à savoir : importer une vidéo dans iMovie '09, l'exploiter à partir de celui-ci mais aussi configurer ce logiciel. Nous vous dévoilerons aussi les dernières nouveautés du logiciel comme la possibilité d'insérer des cartes interactives pour vos films de vacances ou le fait de pouvoir effectuer un montage encore plus précis. Après avoir vu nos vidéos-formations, vous maîtriserez complètement iMovie '09.</description> + <nb_formations>21 formations</nb_formations> + <language>fr</language> + <publishDate>2009-04-06T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/94/small/1239018464_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/94/medium/imovie_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/94/original/imovies09_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1479/medium/1239019927.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1302/medium/1236791714.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1305/medium/1236791715.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1298/medium/1236791710.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1303/medium/1236791714.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>95</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/95</link> + <titre>Aperçu 4.1</titre> + <duree>0h26</duree> + <description>En visualisant ce parcours de formation intégral, vous allez découvrir le fonctionnement d'Aperçu 4 sur votre Mac. Ainsi vous pourrez en deux clics consulter un document PDF ou une image quelque soit son format. Notre formateur vous montrera également que vous pouvez allez beaucoup plus loin avec ce logiciel ! Ainsi vous apprendrez à annoter un document, modifier une image, effectuer une recherche...</description> + <nb_formations>8 formations</nb_formations> + <language>fr</language> + <publishDate>2009-04-21T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/95/small/1239724419_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/95/medium/Apercu_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/95/original/Aper_u_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1490/medium/1239719522.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1494/medium/1239721755.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1492/medium/1239721028.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1491/medium/1239719793.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1496/medium/1239722106.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>98</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/98</link> + <titre>Adobe Reader 9</titre> + <duree>0h16</duree> + <description>Le PDF est un format très utilisé pour échanger des documents. Mais vous aurez besoin d'avoir un logiciel spécial pour pouvoir le lire sur votre ordinateur. En regardant ce parcours de formation, vous découvrirez Adobe Reader 9. Ce logiciel va tout simplement vous permettre de lire vos fichier PDF. De plus, notre formateur vous montrera que grâce à Adobe Reader 9, il est aussi possible d'exploiter ce type de fichiers ou d'y effectuer une recherche.</description> + <nb_formations>4 formations</nb_formations> + <language>fr</language> + <publishDate>2009-05-05T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/98/small/1241525497_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/98/medium/adobe_reader_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/98/original/reader9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1507/medium/1241526821.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1507/medium/1241526821.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1506/medium/1241526223.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1508/medium/1241526954.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3296/medium/3296.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>99</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/99</link> + <titre>iPhoto '09</titre> + <duree>2h33</duree> + <description>Découvrez dans ce parcours de formation intégral comment utiliser iPhoto '09 sur votre Mac. Ce logiciel est très complet. En effet, vous allez voir qu'iPhoto '09 vous permet tout aussi bien de classer vos photographies, de les retoucher et de les partager. Notre formateur vous montrera précisément comment effectuer ces différentes manipulations : de l'importation de vos photographie depuis un appareil photo à la création de cartes de voeux en passant par le rangement automatique de vos clichés. Enfin, cette formation vous présentera les nouveautés marquantes de cette nouvelle version avec notamment la reconnaissance automatique des visages et la publication des photographies sur Internet.</description> + <nb_formations>38 formations</nb_formations> + <language>fr</language> + <publishDate>2009-06-05T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/99/small/1241528166_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/99/medium/iphoto_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/99/original/iphotos09_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1543/medium/1243334888.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1542/medium/1243334746.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1544/medium/1243335062.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1555/medium/1555.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1559/medium/1244012855.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>100</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/100</link> + <titre>PDF Creator 0.9.8</titre> + <duree>0h32</duree> + <description>Vous recevez au quotidien des PDF et vous arrivez à les lire. Mais une question revient toujours, comment puis je les créer afin que mon correspondant lise sans problème mon document ? Ce parcours vous expliquera le fonctionnement de PDF Creator. Notre formateur vous formera à la fois à la création d'un fichier PDF mais aussi d'un fichier image. Vous apprendrez également comment il est possible de personnaliser la création d'un PDF.</description> + <nb_formations>6 formations</nb_formations> + <language>fr</language> + <publishDate>2009-05-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/100/small/1242130892_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/100/medium/pdf_creator_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/100/original/pdfcreator_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1529/medium/1242132663.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1526/medium/1242131368.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1528/medium/1242132511.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1528/medium/1242132511.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1529/medium/1242132663.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>101</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/101</link> + <titre>Nero 9</titre> + <duree>1h21</duree> + <description>Vous possédez énormément de données sur votre ordinateur et vous n'avez plus de place pour les stocker ? Vous souhaitez sauvegarder vos données ? En regardant ce parcours pédagogique, vous verrez qu'une des solutions est de graver ces données sur un disque en utilisant Nero 9. Pour cela, notre formateur vous expliquera en détails les manipulations à effectuer, que ce soit pour graver de la musique, des vidéos, des fichiers texte... De plus, vous découvrirez que Nero 9 vous permet d'effacer un CD ou DVD RW (réinscriptible).</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2010-02-17T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/101/small/1243339088_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/101/medium/nero_9_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/101/original/nero9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3212/medium/3212.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3205/medium/3205.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3208/medium/3208.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3205/medium/3205.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3215/medium/3215.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>102</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/102</link> + <titre>Safari 4</titre> + <duree>1h34</duree> + <description>Le parcours de formation intégral sur Safari 4 vous permettra de prendre complètement en main ce navigateur internet installé par défaut sur tous les ordinateurs Apple. Vous y découvrirez comment maîtriser entièrement ce navigateur : utilisation du champs recherche de Google, l'accès à plusieurs pages internet grâce aux onglets, le téléchargement d'un fichier... Notre formateur vous apprendra également des astuces pour mieux naviguer sur internet au quotidien. Enfin, nous vous présenterons des nouveautés incontournable comme l'affichage de vos signets avec Top sites ou la navigation à l'aide du clavier.</description> + <nb_formations>24 formations</nb_formations> + <language>fr</language> + <publishDate>2009-06-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/102/small/1244815807_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/102/medium/safari4_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/102/original/safari4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1605/medium/1246007657.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1604/medium/1246007528.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1581/medium/1244822019.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1603/medium/1246007353.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1579/medium/1244895903.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>103</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/103</link> + <titre>Ccleaner 2.2</titre> + <duree>0h22</duree> + <description>Vous trouvez que votre ordinateur est de plus en plus lent mais vous ne savez pas quoi faire ? Alors regardez vite ce parcours pédagogique ! Vous y apprendrez à utiliser Ccleaner 2. Ce logiciel vous permettra de nettoyer Windows et de réparer les erreurs du registre. Notre formateur vous expliquera comment utiliser les fonctionnalités de Ccleaner 2 et comment le configurer afin qu'il puisse répondre à vos attentes. Ainsi, votre PC retrouvera toute son énergie d'origine !</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2009-06-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/103/small/1245399773_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/103/medium/1245399773_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/103/original/cleaner2009_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1593/medium/1245400909.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1594/medium/1245401184.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1592/medium/1245400729.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1594/medium/1245401184.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1591/medium/1245400595.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>104</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/104</link> + <titre>Avast 4.8</titre> + <duree>0h23</duree> + <description>À l'aide des vidéos-formations présentent dans ce parcours pédagogique, vous découvrirez comment protéger votre ordinateur gratuitement. Pour cela, notre formateur vous montrera l'utilisation d'Avast 4. Vous découvrirez par exemple comment lancer une analyse de votre ordinateur, utiliser la zone de quarantaine ou encore mettre à jour l'anti-virus. Avec Avast 4 et cette initiation, votre ordinateur sera complètement sécurisé !</description> + <nb_formations>6 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-03T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/104/small/1246000829_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/104/medium/avast_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/104/original/avast4.8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1596/medium/1246002503.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1598/medium/1246003897.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1598/medium/1246003897.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1597/medium/1246002620.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1599/medium/1246006529.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>105</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/105</link> + <titre>Word 2007</titre> + <duree>4h09</duree> + <description>Le parcours pédagogique sur Word 2007 vous permettra d'utiliser Word 2007 au mieux sur votre ordinateur. Vous découvrirez que ce logiciel de traitement de texte est utile pour faire des lettres simples mais aussi des documents plus complexes comme des rapports, des bibliographies ou des CV. Vous apprendrez tout ce qu'il est utile de savoir sur Word 2007 : les modifications possibles de votre texte (police, forme, couleurs...), l'insertion d'éléments (puces, images, tableaux...), l'utilisation des insertions automatiques... De plus, notre formateur vous montrera des fonctionnalités avancées de Word 2007 comme le publipostage ou la gestion des tables des matières.</description> + <nb_formations>67 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-03T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/105/small/1246634724_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/105/medium/word_2007_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/105/original/word2007_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1676/medium/1247823145.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1627/medium/1246898386.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1680/medium/1247825861.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1669/medium/1247672442.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1659/medium/1247241662.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>108</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/108</link> + <titre>Utilitaire d'archive (Leopard)</titre> + <duree>0h08</duree> + <description>En visionnant ce parcours pédagogique, vous découvrirez comment fonctionne la compression de fichiers ou de dossiers sur votre Mac. Pour cela, notre formateur vous apprendra à utiliser l'utilitaire d'archive et Stuffit Expander 2009. Ces logiciels vous permettront de compresser des éléments afin qu'ils prennent moins de place sur votre Mac. Vous pourrez ainsi envoyer plus simplement des fichiers volumineux par e-mail. Vous apprendrez même à configurer ces logiciels !</description> + <nb_formations>2 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-10T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/108/small/1247138914_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/108/medium/utilitaire_d_archive_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/108/original/Utilitaire_d_archive_Leopard_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1647/medium/1247139888.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1648/medium/1247140241.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>109</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/109</link> + <titre>Outlook 2007</titre> + <duree>3h10</duree> + <description>Outlook 2007 est le logiciel de messagerie proposé par la suite Office 2007. Ce parcours pédagogique va vous permettre de gérer au mieux les e-mails que vous recevez et envoyez et d'utiliser les autres fonctionnalités d'Outlook 2007. Pour cela notre formateur vous expliquera comment installer votre compte POP, envoyer votre premier e-mail, ajouter un contact, mémoriser un événement dans le calendrier Outlook et bien plus encore ! Vous découvrirez donc qu'Outlook 2007 est un logiciel de messagerie très complet !</description> + <nb_formations>42 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-15T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/109/small/1248792519_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/109/medium/outlook_2007_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/109/original/outlook2007_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1780/medium/1248969481.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1752/medium/1248880273.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1747/medium/1248794518.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1770/medium/1248966762.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1770/medium/1248966762.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>110</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/110</link> + <titre>PowerPoint 2007</titre> + <duree>4h14</duree> + <description>Vous en avez marre d'avoir des difficultés avec PowerPoint 2007 ? Il est temps pour vous d'apprendre à être autonome dans l'utilisation de ce logiciel. Vous apprendrez à faire une présentation orale, à réaliser des schémas, à présenter des photographies...\nPour y parvenir, notre formateur vous montrera dans PowerPoint 2007 comment saisir du texte, créer des formes géométriques, animer des objets, insérer un graphique provenant d'Excel 2007 et bien plus encore !</description> + <nb_formations>57 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-01T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/110/small/1249660583_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/110/medium/powerpoint_2007_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/110/original/powerpoint2007_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1726/medium/1248449984.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1704/medium/1248276473.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1711/medium/1248361997.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1711/medium/1248361997.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1721/medium/1248444448.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>111</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/111</link> + <titre>Excel 2007</titre> + <duree>4h37</duree> + <description>Ce parcours pédagogique vous permettra de comprendre et d'utiliser Excel 2007 sur votre ordinateur. Vous découvrirez que ce tableur est utile pour faire des calculs, vos comptes personnels ou pour mettre en place des reporting dans votre entreprise. Vous apprendrez tout ce qu'il faut savoir sur ce logiciel : l'insertion et la mise en forme de tableaux et de graphiques, la conception de formules ou l'utilisation de tableaux croisées dynamiques. Notre formateur vous expliquera également de quelle façon Excel 2007 est en liaison avec les autres logiciels de la suite Office 2007.</description> + <nb_formations>73 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-22T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/111/small/1249478325_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/111/medium/excel_2007_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/111/original/Excel_2007_vignettte_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1786/medium/1249480474.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1824/medium/1249570651.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1796/medium/1249482905.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1797/medium/1249483177.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1818/medium/1249489351.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>112</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/112</link> + <titre>Skype 2.8</titre> + <duree>1h02</duree> + <description>En visionnant les vidéos-formations présentent dans ce parcours pédagogique, vous apprendrez à utiliser et configurer Skype 2.8 à partir de votre Mac. Ainsi, il vous sera possible d'avoir une conversation avec une ou plusieurs personnes. Cet échange peut se dérouler à l'aide du clavier (par écrit) ou via un micro (par oral). Vous découvrirez également comment gérer tous vos contacts, en apprenant à les ranger dans votre liste ou encore à les sauvegarder. Vous pourrez donc utiliser sans problème Skype 2.8 sur votre Mac.</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-04T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/112/small/1253270571_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/112/medium/skype_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/112/original/skype2.8mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2065/medium/1253271268.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2074/medium/1253274344.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2063/medium/1253271120.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2071/medium/1253274128.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2069/medium/1253273954.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>113</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/113</link> + <titre>The GIMP 2.6.7</titre> + <duree>2h07</duree> + <description>Vous venez d'installer The GIMP sur votre PC et vous êtes totalement perdu ? Vous souhaitez approfondir vos connaissances sur ce logiciel de retouche d'images ? Alors ce parcours de formation est fait pour vous ! Vous découvrirez tout d'abord les fonctions de base de The GIMP comme créer un document, réaliser un dessin… Mais notre formateur ira beaucoup plus loin en voyant comment retoucher une photographie, utiliser les calques, gérer les raccourcis clavier...</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-01T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/113/small/1253606565_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/113/medium/thegimp-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/113/original/gimp_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2094/medium/1253619478.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2102/medium/1253621676.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2089/medium/1253614421.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2107/medium/1253623774.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2083/medium/1253610834.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>120</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/120</link> + <titre>PhotoFiltre Studio 10</titre> + <duree>2h26</duree> + <description>Ce parcours de formation va vous présenter PhotoFiltre Studio 10. Notre formateur vous montrera différentes manipulations comme retoucher des photographies, créer un GIF animé, corriger des yeux rouges... Pour cela, vous aurez besoin d'apprendre des éléments techniques comme l'utilisation des calques et la sélection de plusieurs éléments. Tout ce qui est à savoir sur PhotoFiltre Studio 10 se trouve dans nos vidéo-formations !</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-01T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/120/small/1253707845_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/120/medium/photofiltre_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/120/original/photofiltre10_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2112/medium/1253710056.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2133/medium/1253712769.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2108/medium/1253709665.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2124/medium/1253711660.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2134/medium/1253712942.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>121</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/121</link> + <titre>SpyBot 1.6</titre> + <duree>0h47</duree> + <description>Vous souhaitez vérifier si votre ordinateur contient un logiciel malveillant (que ce soit un virus, un logiciel espion...)? Alors apprenez à vous servir de SpyBot - Search & Destroy. Grâce à ce parcours pédagogique, vous découvrirez avec notre formateur tout ce qu'il est nécessaire de savoir sur cet anti-virus : lancer une analyse de votre PC, gérer les programmes installés sur votre ordinateur, supprimer de façon sécurisée vos fichiers... Vous pourrez ainsi utiliser toutes les fonctionnalités que propose SpyBot - Search & Destroy.</description> + <nb_formations>11 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-04T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/121/small/1254497524_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/121/medium/spybot_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/121/original/spybot1.6_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2159/medium/1254726637.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2162/medium/1254727370.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2163/medium/1254727625.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2161/medium/1254727145.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2161/medium/1254727145.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>122</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/122</link> + <titre>Microsoft Security Essentials 1</titre> + <duree>0h35</duree> + <description>Vous souhaitez être protéger efficacement face aux menaces d'internet sans pour autant avoir à dépenser une fortune ? Alors vous aurez besoin de Microsoft Security Essentials ! Dans ce parcours de formation intégral, vous allez apprendre à utiliser cet anti-virus de l'installation à la configuration. Notre formateur vous montrera précisément quelles sont toutes les étapes à suivre pour comprendre et utiliser au mieux Microsoft Security Essentials.</description> + <nb_formations>8 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-08T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/122/small/1254729048_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/122/medium/essentiel_security_1_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/122/original/essential-security-1_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2181/medium/1254733172.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2183/medium/1254733625.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2179/medium/1254732908.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2182/medium/1254733346.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2180/medium/1254733074.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>123</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/123</link> + <titre>AVG Anti-Virus 8.5</titre> + <duree>0h58</duree> + <description>Ce parcours de formation vous apprendra à utiliser toutes les fonctionnalités présentent dans AVG Anti-Virus. Du début à la fin, notre formateur vous accompagnera à travers toutes une série d'étapes indispensables : le lancement d'une analyse, l'activation de la protection en temps réel, l'utilisation de la zone de quarantaine... Vous verrez même comment AVG Anti-Virus vous protège en tâche de fond. Grâce à ces vidéos-formations, vous aurez enfin toutes les réponses souhaitées sur AVG Anti-Virus !</description> + <nb_formations>14 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-08T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/123/small/1254729133_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/123/medium/avg_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/123/original/avg8.5_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2199/medium/1254737316.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2198/medium/1254737093.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2199/medium/1254737316.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2190/medium/1254735100.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2194/medium/1254736128.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>124</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/124</link> + <titre>Avira AntiVir 9</titre> + <duree>0h44</duree> + <description>En visionnant ce parcours pédagogique, vous trouverez tous les éléments qui vous seront utiles pour comprendre Avira AntiVir. Du lancement d'une analyse à la consultation de statistiques, tout vous sera décrit, montré et expliqué par notre formateur. Ainsi, vous pourrez utiliser cet anti-virus gratuit sur votre PC en toute confiance. Grâce à ce parcours pédagogique, vous serez tout d'Avira AntiVir.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-08T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/124/small/1254729245_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/124/medium/avira_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/124/original/avira9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2209/medium/1254742595.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2208/medium/1254739222.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2208/medium/1254739222.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2208/medium/1254739222.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2205/medium/1254738686.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>125</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/125</link> + <titre>Eset NOD32 4</titre> + <duree>1h10</duree> + <description>Ce parcours de formation a pour objectif de vous montrer dans les grandes lignes le fonctionnement d'Eset NOD32 sur votre PC. Vous y apprendrez tout aussi bien à installer ce logiciel qu'à effectuer des analyses pour vérifier que votre ordinateur n'est pas contaminé par un virus. Par ailleurs, notre formateur vous expliquera comment réaliser des mises à jour et activer la protection en temps réel pour qu'Eset NOD32 puisse lutter efficacement et en permanence contre les virus.</description> + <nb_formations>13 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-08T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/125/small/1254730426_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/125/medium/nod32_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/125/original/nod32_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2221/medium/1254744986.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2216/medium/1254744227.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2220/medium/1254744786.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2224/medium/1254745600.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2219/medium/1254744606.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>127</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/127</link> + <titre>Windows Live Messenger 2009</titre> + <duree>1h15</duree> + <description>En regardant les vidéos-formations présentent dans ce parcours pédagogique, vous découvrirez comment utiliser et configurer Windows Live Messenger 2009 à partir de votre PC. Ainsi, vous apprendrez à avoir une conversation avec les personnes souhaitée et ce quelque soit le nombre de personnes ! Grâce à ce parcours pédagogique, vous découvrirez que ce logiciel de messagerie instantanée possède beaucoup de fonctionnalités différentes : le rangement de vos contacts, une fenêtre d'actualité, un accès à vos e-mails… Découvrez immédiatement tout ce qu'il faut savoir sur Windows Live Messenger 2009 !</description> + <nb_formations>17 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-04T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/127/small/1255446034_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/127/medium/windows-live-msn-messenger_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/127/original/windowslivemessenger2009_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2146/medium/1253890741.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2150/medium/1253891541.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2140/medium/1253889736.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2148/medium/1253891105.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2148/medium/1253891105.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>128</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/128</link> + <titre>Microsoft Messenger 7</titre> + <duree>0h49</duree> + <description>À l'aide des vidéos-formations présentent dans ce parcours pédagogique, apprenez à utiliser et à configurer Microsoft Messenger 7. Ainsi, vous apprendre à avoir une conversation et échanger des fichiers avec les personnes que vous souhaitez. Vous pourrez même dialoguer avec des personnes possédant un PC ! Vous découvrirez également comment ranger tous vos contacts dans ce logiciel de messagerie instantanée. Alors, prêt à tout savoir sur Microsoft Messenger 7 ?</description> + <nb_formations>12 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-04T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/128/small/1254497684_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/128/medium/messenger_mac_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/128/original/messenger-7_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2172/medium/1254731369.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2173/medium/1254731496.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2168/medium/1254730901.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2177/medium/1254732092.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2174/medium/1254731750.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>144</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/144</link> + <titre>Windows Media Player 12</titre> + <duree>1h12</duree> + <description>Si vous avez besoin d'écouter de la musique sur votre PC, sachez que Windows Media Player est installé par défaut sur celui-ci. Nous vous montrerons dans ce parcours de formation comment maîtriser complètement ce lecteur multimédia. Vous apprendrez tout d'abord à importer vos musiques stockées à partir d'un CD ou d'un espace de stockage. Puis vous découvrirez comment lire et gérer votre musique avec Windows Media Player 12.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-23T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/144/small/1255522996_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/144/medium/WindowsMediaPlayer_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/144/original/mediaplayer12_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2293/medium/1255096484.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2309/medium/1255703466.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2312/medium/1255705051.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2301/medium/1255701954.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2306/medium/1255703004.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>145</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/145</link> + <titre>Galerie de photos Windows Live (Seven)</titre> + <duree>1h06</duree> + <description>Vous venez d'acheter un appareil photo numérique mais vous ne savez pas avec quel logiciel les gérer sur votre PC ? Alors apprenez grâce à ce parcours de formation intégral le fonctionnement de la Galerie de photographies Windows Live. Ainsi, vous allez découvrir comment utiliser ce logiciel. Notre formateur vous présentera tout d'abord des fonctionnalités classiques comme l'importation de vos photographies, la recherche, la retouche photographique… Nous vous proposons également de vous former sur des fonctionnalités moins connu : modifier le fond d'écran de son Bureau, publier ses photographies sur son profil Windows Live et tout ceci depuis la Galerie de photos Windows Live !</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-23T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/145/small/1255523244_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/145/medium/galerie_de_photos_de_Windows_seven__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/145/original/Galerie_de_photos_Windows_Live_Seven_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2329/medium/1255709399.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2330/medium/1255709597.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2325/medium/1255708662.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2327/medium/1255709031.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2333/medium/1255710422.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>146</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/146</link> + <titre>Windows Live Mail (Seven)</titre> + <duree>1h34</duree> + <description>Vous apprendrez dans ce parcours de formation intégral à utiliser sans problèmes Windows Live Mail. Ainsi, vous découvrirez tout ce qu'il faut savoir sur ce logiciel de messagerie : consultation de vos messages, envoi d'un e-mail, insertion de pièces-jointes, configuration de votre compte.... Notre formateur vous montrera également de quelle façon WIndows Live Mail améliore votre quotidien. En effet, ce logiciel de messagerie vous permet d'ajouter et de gérer des contacts, d'utiliser des calendriers afin d'ajouter des événements... tout vous sera expliquer sur Windows Live Mail dans ce parcours pédagogique !</description> + <nb_formations>27 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-23T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/146/small/1255523536_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/146/medium/windows_mail_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/146/original/windows-livemail_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2345/medium/1255968031.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2338/medium/1255967056.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2344/medium/1255967898.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2339/medium/1255967253.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2354/medium/1255970146.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>147</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/147</link> + <titre>WinRAR 3.9</titre> + <duree>1h47</duree> + <description>Vous recevez en permanence des documents .zip ou .rar que vous ne parvenez pas à ouvrir ? Vous souhaitez pouvoir conserver des documents en réduisant leurs poids ? Il est temps pour vous de découvrir WinRar à l'aide de ce parcours de formation. Notre formateur vous expliquera à la fois l'installation du logiciel mais aussi à décompresser ou compresser des fichiers avec WinRar. Vous apprendrez même comment il est possible de créer des processus automatiques pour générer des archives à la volée !</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-05T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/147/small/1256312601_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/147/medium/winrar_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/147/original/winrar-3.90_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2371/medium/2371.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2372/medium/2372.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2366/medium/2366.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2361/medium/1256313333.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2365/medium/2365.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>148</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/148</link> + <titre>Adobe Photoshop Elements 8</titre> + <duree>2h54</duree> + <description>Vous apprendrez dans ce parcours de formation intégral comment utiliser Adobe Photoshop Elements 8 sur votre Mac. Vous allez voir que ce logiciel vous permet d'effectuer des dessins et de retoucher vos photographies. Ainsi il vous sera possible d'utiliser tous les outils et fonctionnalités de ce logiciel pour insérer une forme, modifier des couleurs, améliorer vos clichés, créer un album avec vos photographies... Tout vous sera expliqué avec précision par notre formateur sur le fonctionnement d'Adobe Photoshop Elements 8.</description> + <nb_formations>33 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-05T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/148/small/1256661885_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/148/medium/Photoshop_Elements_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/148/original/photoshop8mac_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2439/medium/1256662475.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2471/medium/1256723490.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2450/medium/1256720266.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2466/medium/1256722939.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2459/medium/1256721917.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>149</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/149</link> + <titre>Adobe Photoshop Elements 8</titre> + <duree>5h37</duree> + <description>Vous venez d'avoir Photoshop Elements 8 sur votre PC mais vous ne savez pas du tout l'utiliser ? Alors regardez ce parcours de formation intégral sur ce logiciel. Vous y découvrirez comment naviguer dans celui-ci, que ce soit pour organiser vos photographies ou pour les retoucher. Ainsi, vous pourrez importer des photographies dans ce logiciel pour les consulter et les ranger. Vous parviendrez également à les retoucher pour changer leur apparence, les couleurs, corriger des yeux rouges... Notre formateur sera là pour vous expliquer avec précision tout ce qu'il faut savoir sur Adobe Photoshop Elements 8.</description> + <nb_formations>61 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-05T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/149/small/1256569083_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/149/medium/Photoshop_Elements_27768_1.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/149/original/photoshop8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2433/medium/1256659337.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2405/medium/1256654029.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2432/medium/1256659161.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2385/medium/1256637992.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2379/medium/1256574007.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>150</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/150</link> + <titre>Opera 10</titre> + <duree>1h09</duree> + <description>Ce parcours pédagogique a pour objectif de vous initiez à la navigation Internet depuis le logiciel Opera. Vous allez apprendre à naviguer très simplement avec plusieurs pages internet, à découvrir les nouvelles fonctionnalités et utiliser les nouveaux gadgets qui vont vous accompagner partout au sein d’Opera. Notre formateur vous montrera et sélectionnera les fonctionnalités essentielles du logiciel. Vous pourrez en plus vous créer et personnaliser un espace Internet. Ainsi, la navigation sur Internet ne vous fera donc plus peur !</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-10T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/150/small/opera_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/150/medium/opera_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/150/original/opera10_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2478/medium/7.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2483/medium/12.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2487/medium/16.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2485/medium/14.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2480/medium/9.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>151</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/151</link> + <titre>Windows Live Movie Maker (Seven)</titre> + <duree>0h44</duree> + <description>Ce parcours pédagogique a pour objectif de vous initier au montage de vidéos depuis le logiciel Windows Live Movie Maker. Vous allez apprendre à créer très simplement différents projets vidéos, à découvrir les nombreuses fonctionnalités et d'animations. Vous serez aussi utiliser les outils de gestion du sons qui vous permettront de monter de nombreux films . Notre formateur vous insistera sur les fonctionnalités essentielles de Windows Live Movie Make . Vous pourrez en plus créer et personnaliser un titre pour votre film ainsi qu'un générique de fin.</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-10T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/151/small/20_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/151/medium/Windows_Movie_Maker_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/151/original/windows-live-movie-maker_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2495/medium/4.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2498/medium/7.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2502/medium/11.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2503/medium/12.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2505/medium/14.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>152</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/152</link> + <titre>OpenOffice Writer 3.1</titre> + <duree>4h07</duree> + <description>Vous avez besoin de rédiger un texte mais vous n’avez pas de logiciels prévus à cet effet sur votre ordinateur ? Alors OpenOffice Writer 3 est la solution gratuite à votre problème. Vous allez découvrir dans ce parcours pédagogique comment le maîtriser complètement. Vous pourrez ainsi insérer des caractères, changer les couleurs de votre document, effectuer un publipostage… Notre formateur sera là pour vous expliquer son fonctionnement et pour vous montrer toutes les astuces à connaître pour utiliser au mieux OpenOffice Writer 3.</description> + <nb_formations>49 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-11T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/152/small/openoffice_writer_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/152/medium/open_office_writer_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/152/original/openwriter3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2510/medium/2509.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2537/medium/2537.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2515/medium/2514.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3464/medium/3464.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2537/medium/2537.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>153</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/153</link> + <titre>Adobe Premiere Elements 8</titre> + <duree>1h20</duree> + <description>Ce parcours pédagogique a pour objectif de vous initier au montage de vidéos depuis le logiciel Adobe Premier Elements 8. Vous allez apprendre à créer très simplement différents projets vidéos. Découvrez aussi la mise en place de différents effets sur vos photos et bandes sons. Vous serez aussi capable d’utiliser la chronologie de montage avancée qui vous permettra d ‘effectuer différentes modifications très précises. Notre formateur vous assistera pour que vous maîtrisiez les fonctionnalités essentielles d’Adobe Premier Elements . De plus vous apprendrez des usages avancées : création d’un menu DVD, publication sur votre site internet ou mixage sonore.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2009-11-18T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/153/small/87_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/153/medium/premier_element_8_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/153/original/element8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2575/medium/17.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2565/medium/7.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2573/medium/15.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2570/medium/12.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2578/medium/20.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>154</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/154</link> + <titre>Sony Vegas Pro 9</titre> + <duree>1h14</duree> + <description>Ce parcours pédagogique a pour objectif de vous initier au montage de vidéos depuis le logiciel Sony Vegas Pro 9. Vous allez apprendre à créer très simplement différents films. Découvrez aussi comment réussir la mise en place de différents effets sur vos photographies, vos vidéos et vos bandes sons. Après cette formation, vous serez aussi capable d’utiliser la chronologie de montage avancée qui vous permettra d'effectuer différentes modifications très précises. Ainsi, notre formateur vous assistera pour que vous maîtrisiez les fonctionnalités essentielles de Sony Vegas Pro 9.</description> + <nb_formations>26 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-02T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/154/small/sony_vegas_png_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/154/medium/sony_vegas_png_27768_1.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/154/original/sony-vegas-9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2612/medium/27.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2606/medium/19.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2613/medium/28.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2592/medium/4.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2602/medium/15.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>155</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/155</link> + <titre>OpenOffice Impress 3.1</titre> + <duree>3h50</duree> + <description>Ce parcours de formation intégral a pour objectif de vous apprendre à utiliser OpenOffice Impress 3. Vous découvrirez comment réaliser une présentation orale efficace ou créer une brochure commerciale. Pour y parvenir, notre formateur vous montrera les bases de ce logiciel : comment saisir du texte, créer des formes géométriques, animer des objets... Vous verrez également toutes les astuces à connaître pour utiliser au mieux OpenOffice Impress 3.</description> + <nb_formations>51 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-14T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/155/small/Impress_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/155/medium/Sans_titre_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/155/original/OpenOffice_Impress_3.1_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2624/medium/2624.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2648/medium/2648.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2640/medium/2640.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2634/medium/2634.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2640/medium/2640.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>156</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/156</link> + <titre>Magix Vidéo Deluxe 16</titre> + <duree>1h09</duree> + <description>Vous disposez du logiciel Magix Vidéo Deluxe 16 mais vous n'arrivez pas à vous en servir ? Il est temps de vous former avec ce parcours de formation ! Vous allez apprendre à créer très simplement différents films à l'aide de vos différents médias. Vous deviendrez par la suite capable d’utiliser la chronologie de montage afin d'effectuer toutes les modifications souhaitées. Durant cette formation, vous découvrirez également plusieurs modes de personnalisations et de retouches.. Par ailleurs, notre formateur vous montrera comment créer un DVD avec des menus pour voir vos films dans votre salon.</description> + <nb_formations>22 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-15T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/156/small/Video_deluxe_16__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/156/medium/magix-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/156/original/magix_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2674/medium/9.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2675/medium/10.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2666/medium/1.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2686/medium/21.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2683/medium/18.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>157</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/157</link> + <titre>OpenOffice Calc 3.1</titre> + <duree>3h43</duree> + <description>Ce parcours de formation intégral vous permettra de comprendre et d'utiliser OpenOffice Calc 3 sur votre PC. Vous y apprendrez que ce tableur peut-être utilisé pour présenter des données à l'aide de graphiques ou de tableaux, faire des calculs, exploiter vos données... Notre formateur vous montrera tout ce qu'il faut savoir sur ce logiciel : l'insertion et la mise en forme d'illustrations, la conception de formules ou encore la personnalisation du logiciel.</description> + <nb_formations>50 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-09T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/157/small/calc_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/157/medium/OpenOfficeCalc3_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/157/original/open-office-calc-3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2755/medium/2755.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2693/medium/2693.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2753/medium/2753.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2768/medium/2768.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2773/medium/2773.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>158</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/158</link> + <titre>FileZilla 3.3</titre> + <duree>0h59</duree> + <description>L'utilisation d'un client FTP (protocole de transfert de fichiers) vous est totalement inconnu ? Vous pensez que le seul moyen de transporter vos données est d'emmener votre Mac partout avec vous ?\nDétrompez-vous ! Vous aurez l'occasion de découvrir, dans ce parcours de formation, un moyen très utile pour accéder de n'importe où dans le monde à vos fichiers. Notre formateur vous montrera en plus des astuces pratiques pour simplifier votre quotidien : se connecter à plusieurs serveurs FTP, modifier l'accès selon l'utilisateur...</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-11T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/158/small/filezilla_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/158/medium/filezillapng_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/158/original/filezilla3.3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2721/medium/2721.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2724/medium/2724.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2714/medium/2714.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2711/medium/2711.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2730/medium/2730.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>159</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/159</link> + <titre>OnyX 2</titre> + <duree>0h30</duree> + <description>En visualisant ce parcours de formations, vous apprendrez à utiliser complètement le logiciel OnyX sur votre Mac. Notre formateur vous apprendra à entretenir votre Mac en effectuant des analyses ainsi que des nettoyages. Vous découvrirez également qu'Onyx propose des outils pour personnaliser le fonctionnement du Mac. Vous pourrez modifier ainsi le fonctionnement de Safari, du Dock, du Finder...</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2010-06-29T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/159/small/onyx_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/159/medium/onyx2_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/159/original/onyx2_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4394/medium/4394.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4399/medium/4399.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4400/medium/4400.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4395/medium/4395.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4401/medium/4401.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>160</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/160</link> + <titre>iWeb '09</titre> + <duree>1h08</duree> + <description>Ce parcours de formation vous propose de vous initier au fonctionnement de iWeb '09. En effet, à l’aide de notre formateur, vous allez découvrir les bases de ce logiciel de création de page Internet. Ainsi, vous pourrez créer de nombreux sites internet ou blogs en toute simplicité. Vous apprendrez durant ce parcours de formation à insérer de nombreux éléments intéressants sur votre site Internet : un plan, un flux RSS, de la publicité...</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-14T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/160/small/iweb_logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/160/medium/iweb09_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/160/original/iweb09_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2742/medium/2742.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2734/medium/4.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2750/medium/2750.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2741/medium/2741.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2739/medium/2739.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>161</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/161</link> + <titre>Access 2007</titre> + <duree>2h14</duree> + <description>Vous avez toujours rêvé d'utiliser Access pour gérer vos données sans jamais y parvenir ? ce parcours de formation intégral vous permettra de comprendre et d'utiliser Microsoft Office Access 2007 sur votre PC. Vous y apprendrez la création et la gestion d'une base de données. Vous découvrirez les fondamentaux de la création d'une table en passant par le formulaire jusqu'à la mise en place de relations. Notre formateur vous montrera tout ce qu'il faut savoir sur ce logiciel : la personnalisation, les statistiques, l'utilisation multi-utilisateurs...</description> + <nb_formations>36 formations</nb_formations> + <language>fr</language> + <publishDate>2009-12-21T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/161/small/logo_jpeg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/161/medium/Access_2007_png_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/161/original/access-2007_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2790/medium/2790.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2809/medium/2809.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2790/medium/2790.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2819/medium/2819.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2791/medium/2791.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>162</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/162</link> + <titre>G Data TotalCare 2010</titre> + <duree>1h37</duree> + <description>Ce parcours de vidéo-formation vous expliquera les différentes fonctionnalités de votre logiciel antivirus G Data TotalCare 2010. Apprenez avec nos formations à installer G Data, à analyser l'ensemble de votre ordinateur et à y chercher des virus. Par la suite, vous allez gérer vos virus détectés grâce à la zone de quarantaine. De plus, notre formateur vous montrera à effectuer une sauvegarde complète de vos différentes données et à les restaurer par la suite. Désormais ne craignez plus d'internet et surfez en toute tranquillité !</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-25T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/162/small/logo_jpeg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/162/medium/gdata_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/162/original/gdata2010_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2839/medium/1.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2845/medium/2845.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2846/medium/2846.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2852/medium/2852.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2854/medium/2854.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>163</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/163</link> + <titre>FTP Expert 3</titre> + <duree>0h37</duree> + <description>Vous n'arrivez pas à utiliser le logiciel FTP Expert 3 ? Ce parcours pédagogique vous montrera les principes d'utilisation de bases du logiciel FTP Expert 3 ! À l'aide du formateur, découvrez, à travers ces quelques vidéos-formations, comment vous connecter, transférer un fichier ou encore personnaliser votre interface.</description> + <nb_formations>8 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-21T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/163/small/images_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/163/medium/ftpexpert_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/163/original/ftpexpert_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2862/medium/2862.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2857/medium/2857.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2860/medium/2860.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2861/medium/2861.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2858/medium/2858.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>164</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/164</link> + <titre>OpenOffice Base 3.1</titre> + <duree>1h15</duree> + <description>Dans ce parcours de formation vous apprendrez la création et la gestion d'une base de données personnelle ou professionnelle. Vous pourrez ainsi organiser vos films ou vos commandes clients très simplement ! Vous découvrirez les étapes fondamentales de la création d'une table en passant par le formulaire jusqu'à la mise en place de relations et de requêtes. Notre formateur vous montrera tout ce qu'il faut savoir sur ce logiciel afin que vous puissiez le prendre en main totalement.</description> + <nb_formations>22 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-12T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/164/small/logo_jpeg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/164/medium/logo_png_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/164/original/openofficebase_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2879/medium/2879.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2891/medium/2891.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2887/medium/2887.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2890/medium/2890.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2888/medium/2888.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>165</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/165</link> + <titre>Fire FTP 1</titre> + <duree>0h35</duree> + <description>Ce parcours pédagogique vous propose de découvrir Fire FTP. À travers plusieurs vidéos-formations, notre formateur vous expliquera un certain nombre d'usages très importants. Vous apprendrez notamment à créer une connexion et à transférer vos données sur votre serveur. Vous découvrirez toutes les utilisations de ce module pour FireFox et pourrez ainsi partagerer vos fichiers directement sur Internet.</description> + <nb_formations>9 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-21T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/165/small/fireftp-logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/165/medium/FireFTP_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/165/original/fireftp1_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2900/medium/2900.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2899/medium/2899.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2901/medium/2901.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2902/medium/2902.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2901/medium/2901.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>166</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/166</link> + <titre>Lotus Notes 8.5</titre> + <duree>4h20</duree> + <description>Lotus Notes 8.5 est un logiciel de messagerie. Vous verrez qu'il est possible d'envoyer et de recevoir des e-mails. Vous découvrirez également que Lotus Notes 8.5 est très complet : il permet de gérer ses contacts, d'afficher ses réunions, d'ajouter des tâches... Les aspects plus complexes du logiciel tel que la configuration de votre compte (POP ou IMAP) et la gestion de la remise de vos e-mails seront également traités.</description> + <nb_formations>53 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-29T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/166/small/logolotusjpeg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/166/medium/logolotuspng_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/166/original/lotus_notes_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2937/medium/2937.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2944/medium/2944.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2931/medium/2931.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11755/medium/11755.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11749/medium/11749.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>167</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/167</link> + <titre>Publisher 2007</titre> + <duree>2h17</duree> + <description>Vous rêvez de faire votre site Internet mais vous ne connaissez pas du tout le langage HTML? Alors Publisher 2007 est la solution ! Ce parcours pédagogique vous montrera comment utiliser ce logiciel de la suite Office 2007. Notre formateur vous expliquera toutes les astuces à connaître dans Publisher 2007 pour réaliser le site Web que vous souhaitez. Vous apprendrez notamment à mettre en place plusieurs pages, à proposer des images à vos internautes ou à créer un formulaire de contact.</description> + <nb_formations>27 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-12T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/167/small/logopublii07_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/167/medium/logopubli_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/167/original/publisher07_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2974/medium/2974.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2953/medium/2953.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2972/medium/2972.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2966/medium/2966.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2953/medium/2953.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>168</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/168</link> + <titre>Cyberduck 3.3</titre> + <duree>0h38</duree> + <description>Ce parcours pédagogique vous propose de découvrir le logiciel Cyberduck. À travers plusieurs vidéos-formations, notre formateur vous enseignera un certain nombre d'usages relatifs à une bonne utilisation du célèbre canard. Vous apprendrez notamment à créer une connexion, à transférer vos données sur votre serveur. Vous découvrirez toutes les utilisations basiques de ce logiciel pour MAC et partagerez vos fichiers directement sur Internet.</description> + <nb_formations>8 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-21T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/168/small/cyberduck-logo1_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/168/medium/cyberduck.icon_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/168/original/cyberduck3.3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2980/medium/2980.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2981/medium/2981.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2984/medium/2984.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2982/medium/2982.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2982/medium/2982.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>169</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/169</link> + <titre>WebEasy 8</titre> + <duree>2h30</duree> + <description>Vous aimeriez avoir votre propre site Internet mais vous n'avez aucune connaissance dans la programmation? Ce parcours de formation va vous présenter une solution pour y parvenir : WebEasy 8. Ce logiciel va vous permettre de créer votre site Internet. Notre formateur vous expliquera tout ce qu'il faut savoir. Vous apprendrez à insérer des éléments, à les mettre en page et même à intégrer des bouts de code HTML pour réaliser toutes vos envies !</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-25T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/169/small/Web_easy_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/169/medium/Web_easy_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/169/original/webeasy8_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3014/medium/3013.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2993/medium/2992.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3007/medium/3006.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2997/medium/2996.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3008/medium/3007.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>170</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/170</link> + <titre>Real Player 12</titre> + <duree>0h58</duree> + <description>Vous souhaitez lire vos fichiers multimédia sans difficulté ? En visionnant ce parcours de formation, vous apprendrez à utiliser les fonctions principales relatives à une bonne utilisation du logiciel Real Player ! Après avoir appris à lire un fichier audio, vous aborderez, entre-autres, le téléchargement de vidéos via Internet, la création de listes de lecture ou encore comment écouter les différentes radios du monde entier.</description> + <nb_formations>11 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-22T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/170/small/realplayer_logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/170/medium/realplayer_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/170/original/realplayer1_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3023/medium/3023.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3027/medium/3027.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3024/medium/3024.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3026/medium/3026.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3025/medium/3025.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>171</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/171</link> + <titre>Toast Titanium 10</titre> + <duree>1h25</duree> + <description>Vous aimeriez enregistrer sur un disque des photos de vos proches pour en faire des diaporama ou encore garder un souvenir de vos vidéos de vacances en les conservant sur un DVD avec un menu entièrement personnalisé ? Ce parcours de formation va vous présenter le logiciel de gravure Toast Titanium. Cet outil vous permettra de réaliser tout types de sauvegardes et de copies de disques. Vous découvrirez, de plus, quelques logiciels proposés lors de l'installation de Toast, comme par exemple Disc-Cover, un logiciel pour créer vos jacquettes de CD et DVD ainsi que Get Backup pour sauvegarder vos données.</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2010-02-03T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/171/small/Logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/171/medium/toast_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/171/original/toasttitanium10_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3113/medium/3113.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3116/medium/3116.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3103/medium/3103.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3109/medium/3109.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3115/medium/3115.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>172</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/172</link> + <titre>IziSpot 4.3</titre> + <duree>1h12</duree> + <description>Vous souhaitez avoir votre site Internet mais vous ne connaissez rien en programmation? Ce parcours de formation va vous initier au fonctionnement de IziSpot. Ce logiciel vous permettra de créer de A à Z votre site Internet ! En effet vous pourrez saisir du texte, insérer des images, insérer de nouvelles pages... Notre formateur vous montrera également comment publier votre site en utilisant IziSpot.</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-27T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/172/small/Logo-IziSpot_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/172/medium/Izispot_4.3_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/172/original/izispot_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3127/medium/3127.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3131/medium/3131.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3133/medium/3133.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3132/medium/3132.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3131/medium/3131.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>173</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/173</link> + <titre>TOWeb 3</titre> + <duree>1h08</duree> + <description>Ce parcours de formation intégral vous fera découvrir TOWeb 3. Ce logiciel permet de créer son site Internet. Notre formateur vous suivra tout au long de ce parcours pour vous montrer les différentes étapes proposées. De l'insertion d'une page à la publication du site en passant par la mise en forme de votre texte, tout vous sera expliquer dans ce parcours pédagogique.</description> + <nb_formations>13 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-27T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/173/small/Logo-TOWeb_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/173/medium/Logo-TOWeb_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/173/original/toweb3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3140/medium/3140.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3145/medium/3145.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3143/medium/3143.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3134/medium/3134.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3141/medium/3141.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>174</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/174</link> + <titre>Ciel Comptes Personnels 2010</titre> + <duree>2h05</duree> + <description>Ce parcours de vidéos-formations vous apportera tout ce qu'il faut savoir à propos de la gestion de vos comptes. Vous verrez toutes les actions possibles de la plus banale comme intégrer une nouvelle dépense dans votre compte jusqu'à la gestion de vos actions et emprunts bancaires. Vous découvrirez, de plus, les accessoires incontournables de tout logiciel de gestion comptable tel que l'agenda ou la calculette !</description> + <nb_formations>25 formations</nb_formations> + <language>fr</language> + <publishDate>2010-02-10T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/174/small/Ciel_Comptes_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/174/medium/Ciel_Comptes_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/174/original/Ciel_Comptes_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3157/medium/3157.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3162/medium/3162.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3171/medium/3171.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3156/medium/3156.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3167/medium/3167.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>179</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/179</link> + <titre>Roxio Creator 2010</titre> + <duree>1h57</duree> + <description>Vous en avez marre de n'utiliser que 10% des fonctionnalités proposées par Roxio Creator 2010 ? En visualisant ce parcours de vidéos-formation, vous apprendrez bien sûr à utiliser les fonctionnalités classique de gravure. Mais vous apprendrez aussi à profiter des fonctionnalités pour retoucher vos films, vos photographies ou gérer vos musiques ! Vous pourrez même partager vos nombreux montages via Internet ou sur un DVD.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2010-02-23T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/179/small/logo_jpg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/179/medium/logo_roxio_png_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/179/original/roxiocreator2010_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3252/medium/3252.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3224/medium/3224.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3221/medium/3221.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3232/medium/3232.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3254/medium/3254.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>180</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/180</link> + <titre>Adobe Photoshop CS4</titre> + <duree>4h57</duree> + <description>Découvrez, à travers ce parcours de vidéos-formation, comment utiliser les différents outils proposé par ce logiciel. Vous deviendrez complètement autonome dans la retouche des images numériques. Votre formateur vous expliquera comment fonctionne la gestion des calques ainsi que plusieurs techniques qui vous permettront d'enlever des yeux rouges sur une photo, déformer des objets à volonté ou encore transformer une photo en véritable tableau grâce aux options de filtres !</description> + <nb_formations>80 formations</nb_formations> + <language>fr</language> + <publishDate>2010-03-08T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/180/small/Adobe_Photoshop_CS4_Logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/180/medium/Adobe_Photoshop_CS4_Logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/180/original/adobephotoshopcs4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3329/medium/3329.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4371/medium/4371.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3325/medium/3325.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3334/medium/3334.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4384/medium/4384.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>181</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/181</link> + <titre>Audacity 1.3</titre> + <duree>1h09</duree> + <description>Faites vos premiers pas dans le traitement audio grâce au logiciel gratuit et libre Audacity ! Vous découvrirez comment modifier et gérer vos différentes pistes audio. Notre formateur vous apprendra notamment à intégrer de nombreux effets audio, supprimer des passages inutiles, à insérer des fondus en ouverture et en fermeture de pistes... Vous pourrez même réaliser un mixage audio !</description> + <nb_formations>21 formations</nb_formations> + <language>fr</language> + <publishDate>2010-03-02T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/181/small/logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/181/medium/audacity_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/181/original/audacity_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3361/medium/3361.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3362/medium/3362.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3365/medium/3365.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3350/medium/3350.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3344/medium/3344.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>184</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/184</link> + <titre>Works 9</titre> + <duree>2h07</duree> + <description>Dans ce parcours pédagogique, vous allez apprendre à utiliser la suite de bureautique Works 9. Par l'intermédiaire de Works 9, vous pouvez utiliser un traitement de texte ou encore un tableur. Notre formateur vous montrera également que cette suite contient divers outils très utile au quotidien comme un dictionnaire, un calendrier ou une visionneuse Powerpoint.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2010-03-24T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/184/small/Works_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/184/medium/Works_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/184/original/works9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3547/medium/3547.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3539/medium/3539.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3537/medium/3537.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3538/medium/3538.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3538/medium/3538.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>189</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/189</link> + <titre>Pages '09</titre> + <duree>2h51</duree> + <description>Découvrez à travers ce parcours de formation comment profiter de l'application de traitement de texte Pages '09. Vous apprendrez comment utiliser les fonctions de bases du logiciel comme l'enregistrement d'un fichier ou l'utilisation de modèles de documents. Vous découvrirez ensuite les fonctions plus avancées que proposent cet outil telles que la création d'un publipostage, l'utilisation des formats de cellules ou la mise en forme d'un graphique. Enfin Vous serez apte à travailler directement avec vos collaborateurs en ligne sur un même document grâce à la plate-forme collaborative en ligne proposée par iWork.</description> + <nb_formations>49 formations</nb_formations> + <language>fr</language> + <publishDate>2010-03-31T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/189/small/pages_jpg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/189/medium/page_09_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/189/original/page09_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3589/medium/3589.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3579/medium/3579.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3585/medium/3585.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3576/medium/3576.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3594/medium/3594.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>190</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/190</link> + <titre>Word 2010</titre> + <duree>9h09</duree> + <description>Dans ce parcours de formation, vous verrez toutes les fonctionnalités de Word 2010, le logiciel de traitement de texte de la suite Office 2010. Vous verrez comment créer des documents complexes, et comment les mettre en page. Apprenez à utiliser les styles de paragraphes, les modèles et les thèmes de documents. Des outils automatisés permettent de générer rapidement des tables des matières, des index, des bibliographies. Avec le publipostage, vous pourrez créer des enveloppes complétées automatiquement avec les contacts que vous aurez sélectionnés dans votre carnet d'adresses. Word 2010 possède aussi de nombreux outils graphiques, qui facilitent la mise en forme des titres, des tableaux, des schémas, avec de nombreux effets spéciaux. Enfin, utilisez les fonctionnalités les plus modernes de Word 2010 en utilisant votre compte SkyDrive ou SharePoint : vos documents seront sauvegardés en ligne, et donc accessibles depuis n'importe quel poste connecté à internet. Vous pourrez les modifier n'importe où, les partager instantanément et travailler dessus à plusieurs.</description> + <nb_formations>130 formations</nb_formations> + <language>fr</language> + <publishDate>2013-03-21T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/190/small/Word2010_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/190/medium/Word2010_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/190/original/word2010_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15995/medium/15995.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3636/medium/3636.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3631/medium/3631.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3674/medium/3674.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3686/medium/3686.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>192</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/192</link> + <titre>Keynote '09</titre> + <duree>2h25</duree> + <description>Découvrez au travers de ce parcours de formation comment utiliser la plupart des outils proposés par le logiciel Keynote'09. Ce concurrent du célèbre logiciel Powerpoint vous apportera de nombreuses surprises en commençant par son coté intuitif qui vous permettra une rapide prise en main. Vous verrez par la suite comment utiliser diverses fonctionnalités comme la création de tableaux et graphiques, la retouche d'images ainsi que le travail en ligne via le service iWork.com.</description> + <nb_formations>43 formations</nb_formations> + <language>fr</language> + <publishDate>2010-05-03T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/192/small/keynotejpg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/192/medium/keynotepng_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/192/original/keynote09_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3740/medium/3740.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3784/medium/3784.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3766/medium/3766.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3779/medium/3779.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3757/medium/3757.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>193</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/193</link> + <titre>Thunderbird 3</titre> + <duree>2h18</duree> + <description>Afin de profiter complètement du logiciel de courriers électroniques Thunderbird 3, il est indispensable de suivre une formation. Le parcours pédagogique intégral proposé vous permettra d'installer et de gérer vos nombreux compte e-mails, de créer votre carnet d'adresse et d'établir des liste de diffusions. Vous pourrez également rajouter de nombreux modules complémentaire et personnaliser l'ensemble de votre Thunderbird afin de faciliter votre utilisation du logiciel.</description> + <nb_formations>41 formations</nb_formations> + <language>fr</language> + <publishDate>2010-04-28T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/193/small/thunderbird_3_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/193/medium/thunderbird_3_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/193/original/thunderbird3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3842/medium/3842.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3837/medium/3837.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3844/medium/3844.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3833/medium/3833.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3866/medium/3866.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>194</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/194</link> + <titre>Excel 2010</titre> + <duree>7h17</duree> + <description>Dans ce parcours de formation, vous apprendrez à utiliser le tableur de la suite Office 2010 : Excel 2010. Ainsi vous allez voir comment utiliser ce logiciel pour y insérer des données et les mettre en forme ou encore effectuer des calculs. De plus notre formateur, vous montrera l'utilisation d'outils plus complexes tels que le tableau croisé dynamique, l'utilisation de formules ou l'insertion de menus déroulants... Vous pourrez donc utiliser Excel 2010 pour faire vos comptes, des reportings d'entreprise et bien plus encore !</description> + <nb_formations>101 formations</nb_formations> + <language>fr</language> + <publishDate>2010-05-07T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/194/small/Logo-Excel2010_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/194/medium/Logo-Excel2010_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/194/original/Excel_2010_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3874/medium/3874.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3876/medium/3876.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3877/medium/3877.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3897/medium/3897.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3897/medium/3897.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>195</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/195</link> + <titre>Numbers '09</titre> + <duree>2h42</duree> + <description>Tout au long de ce parcours de formation, vous découvrirez à l'aide de votre formateur, les différentes options proposées par ce logiciel de la suite iWork sur Mac. Ainsi, vous saurez comment utiliser les fonctions basiques du logiciel comme la création de documents, l'impression ou la personnalisation jusqu'aux utilisations plus complexes comme l'insertion de graphiques à partir de vos données et l'insertion de fonctions dans vos documents. Au terme de cette formation, vous saurez utiliser une grande partie des options proposées par le logiciel et pouvoir ainsi manipuler des données chiffrées très simplement.</description> + <nb_formations>46 formations</nb_formations> + <language>fr</language> + <publishDate>2010-05-31T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/195/small/numbersJPG_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/195/medium/numbersPNG_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/195/original/numbers09_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3998/medium/3998.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3993/medium/3993.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4007/medium/4007.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4014/medium/4014.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3982/medium/3982.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>196</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/196</link> + <titre>PowerPoint 2010</titre> + <duree>10h27</duree> + <description>PowerPoint 2010 vous permettra de créer des présentations : des diaporamas qui peuvent servir de support à un exposé oral ou à une présentation client. Vous verrez d'abord comment insérer et organiser des diapositives. Puis vous apprendrez à créer des éléments plus complexes : zones de texte, image, graphiques, tableaux... Les diapositives peuvent ensuite être personnalisées avec des thèmes de couleurs, des effets d'animation, de transition, et des fichiers multimédias. PowerPoint 2010 favorise aussi le travail collaboratif : vous pourrez facilement envoyer vos présentations par e-mail, partager en ligne vos présentations, etc.</description> + <nb_formations>107 formations</nb_formations> + <language>fr</language> + <publishDate>2013-04-04T00:00:00+02:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/196/small/PowerPoint_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/196/medium/powerpoint2010-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/196/original/PowerPoint2010_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4084/medium/4084.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4137/medium/4137.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4115/medium/4115.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4117/medium/4117.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4133/medium/4133.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>197</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/197</link> + <titre>Bento 3</titre> + <duree>2h29</duree> + <description>Le mot Base de données vous fait peur ? Alors ce parcours pédagogique est fait pour vous ! Vous allez y apprendre à créer et utiliser une base de données simplement avec Bento 3 . Ainsi vous verrez comment créer des bibliothèques, des formulaires, des champs et des collections afin que votre base de données soit complète et rangée. Notre formateur vous fera également découvrir des simulations de base de données pour votre travail ou pour votre domicile.</description> + <nb_formations>38 formations</nb_formations> + <language>fr</language> + <publishDate>2010-05-14T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/197/small/bento_jpg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/197/medium/bento_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/197/original/bento3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4159/medium/4159.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4168/medium/4168.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4146/medium/4146.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4163/medium/4163.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4162/medium/4162.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>198</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/198</link> + <titre>iDVD '09</titre> + <duree>0h54</duree> + <description>Au cours de ce parcours de formation, vous allez apprendre à constituer votre propre DVD avec le logiciel iDVD. De la création du projet, à la sélection du thème en passant par la personnalisation et la mise en place des sous menus afin d'organiser au mieux ce DVD. Enfin, notre formateur vous montrera comment finaliser la gravure pour parvenir à profiter pleinement de votre création !</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2010-05-17T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/198/small/idvd_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/198/medium/idvd_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/198/original/iDVD_09_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4267/medium/4267.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4264/medium/4264.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4253/medium/4253.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4258/medium/4258.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4262/medium/4262.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>199</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/199</link> + <titre>Avast 5</titre> + <duree>1h10</duree> + <description>Grâce à ce parcours de formation, vous apprendrez à utiliser la nouvelle interface de Avast, Vous pourrez désormais utiliser les scans appropriés à vos besoins et à les configurer par la suite. Par ailleurs, le paramétrage des nombreux agents d'Avast sera désormais pour vous un jeu d'enfants ! Enfin vous pourrez neutraliser et supprimer de nombreux virus détectés par Avast 5. Votre ordinateur sera donc complètement sécurisé !</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2010-05-31T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/199/small/avast5_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/199/medium/avast5_png_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/199/original/avast5_27768_1.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4182/medium/4182.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4190/medium/4190.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4186/medium/4186.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4194/medium/4194.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4181/medium/4181.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>200</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/200</link> + <titre>Outlook 2010</titre> + <duree>8h37</duree> + <description>Outlook 2010 est un client de messagerie. Vous pourrez ainsi rapidement recevoir des e-mails avec plusieurs comptes et répondre à vos correspondants. Si vous gérez de nombreux messages, vous verrez comment les ranger dans des dossiers et les retrouver rapidement avec le moteur de recherche intégré au logiciel. Outlook 2010 vous permet d'automatiser un grand nombre de tâches : vous pourrez ainsi mettre de côté le courrier indésirable. Apprenez à utiliser le carnet d'adresse pour gérer vos contact, les partager, et préparer des groupes de diffusion. Apprenez à organiser vos tâches quotidiennes selon les échéances et les niveaux de priorité. Le calendrier de Outlook 2010 vous permettra de planifier vos événements et d'organiser des réunions.</description> + <nb_formations>90 formations</nb_formations> + <language>fr</language> + <publishDate>2013-03-21T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/200/small/Outlook_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/200/medium/Outlook_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/200/original/Outlook_2010_v2_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4221/medium/4221.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4247/medium/4247.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4221/medium/4221.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4216/medium/4216.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4242/medium/4242.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>201</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/201</link> + <titre>Internet Download Manager 5</titre> + <duree>0h41</duree> + <description>Au cours de ce parcours de vidéo-formation, vous apprendrez à utiliser votre le logiciel Internet Download Manager afin de télécharger plus rapidement de nombreux fichiers sur Internet. De plus notre formateur vous expliquera comment gérer l'ensemble de vos téléchargements en mettant en place différentes planifications. Vous découvrirez en plus des astuces pour gagner du temps et personnaliser le logiciel !</description> + <nb_formations>12 formations</nb_formations> + <language>fr</language> + <publishDate>2010-06-07T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/201/small/internetdownloadmanager_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/201/medium/internetdownloadmanager_27768_1.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/201/original/internetdownloadmanager5_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4269/medium/4269.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4280/medium/4280.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4277/medium/4277.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4274/medium/4274.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4272/medium/4272.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>202</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/202</link> + <titre>Adobe Dreamweaver CS5</titre> + <duree>2h59</duree> + <description>En visualisant ce parcours de formation, vous apprendrez à créer votre propre site internet avec Adobe Dreamweaver CS5. Vous apprendrez à réaliser entièrement ce dernier en créant la structure : les pages, les menus. Vous verrez par la suite comment saisir ou importer des données (texte, tableau, photo, vidéo) et les mettre en page. Notre formateur vous expliquera également comment modifier le code HTML de votre site Internet ! Enfin vous découvrirez comment publier sans difficulté ce dernier pour que les internautes puissent le consulter !</description> + <nb_formations>48 formations</nb_formations> + <language>fr</language> + <publishDate>2010-06-21T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/202/small/cs5_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/202/medium/adobedreamweavercs5_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/202/original/adobedreamweavercs5_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4291/medium/4291.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4320/medium/4320.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4326/medium/4326.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4307/medium/4307.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4299/medium/4299.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>203</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/203</link> + <titre>Adobe Photoshop CS5</titre> + <duree>5h15</duree> + <description>Découvrez, à travers ce parcours de vidéos-formation, comment utiliser les différents outils proposé par ce logiciel. Vous deviendrez complètement autonome dans la retouche des images numériques. Votre formateur vous expliquera comment fonctionne la plupart des outils du logiciel ainsi que plusieurs techniques qui vous permettront de retoucher entièrement un visage. Vous découvrirez en plus toutes les nouveautés de cette nouvelle version !</description> + <nb_formations>84 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-06T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/203/small/Photoshop_CS5_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/203/medium/Photoshop_CS5_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/203/original/CS5_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4355/medium/4355.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3332/medium/3332.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4384/medium/4384.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3299/medium/3299.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4386/medium/4386.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>204</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/204</link> + <titre>Kaspersky Internet Security 2011</titre> + <duree>1h17</duree> + <description>Ce parcours de formation vous permettra de sécuriser votre ordinateur contre les menaces virales. Notre formateur vous apprendra donc à maintenir à jour votre Antivirus, à effectuer différentes analyses du système et à désinfecter votre ordinateur. De plus il couvrira l'intégralité du paramétrage du contrôle parental afin de restreindre les droits de vos enfants et ainsi les protéger pendant qu'ils utilisent l'ordinateur.</description> + <nb_formations>21 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-07T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/204/small/kaspersky_jp_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/204/medium/kaspersky_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/204/original/kaspersky2011_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4409/medium/4409.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4405/medium/4405.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4406/medium/4406.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4424/medium/4424.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4422/medium/4422.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>205</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/205</link> + <titre>WordPress 3</titre> + <duree>1h49</duree> + <description>Ce parcours de formation vous permettra de créer votre propre site internet tout en effectuant des changements rapides de l'aspect du site avec de nombreux thèmes WordPress. Vous apprendrez aussi à créer et gérer vos articles, vos différentes pages ainsi que les utilisateurs en leur affectant différents droits. De plus vous pourrez partager l'ensemble de vos médias comme vos photographies, musiques, vidéos.... avec vos visiteurs.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-08T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/205/small/wordpress_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/205/medium/wordpresspng_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/205/original/wordpress3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4436/medium/4436.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4447/medium/4447.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4435/medium/4435.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4427/medium/4427.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4431/medium/4431.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>206</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/206</link> + <titre>Safari 5</titre> + <duree>1h58</duree> + <description>Dans ce parcours pédagogique vous allez apprendre à utiliser le navigateur Internet Safari 5. Ce navigateur, installé par défaut sur votre Mac, dispose de différentes fonctionnalités qui amélioreront votre navigation sur Internet. Ainsi, Safari 5 possède son propre champ de recherche, une barre d'adresse intelligente... De plus vous pourrez vous rendre plus rapidement sur un site grâce à l'historique ou vos signets (favoris). Pour finir notre formateur vous montrera l'une des nouveautés de ce navigateur : le lecteur permettant de masquer les publicités pour lire confortablement un article.</description> + <nb_formations>28 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-09T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/206/small/safari-logo_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/206/medium/safari5_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/206/original/Safari_5_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4462/medium/4462.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4475/medium/4475.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4477/medium/4477.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4463/medium/4463.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4461/medium/4461.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>207</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/207</link> + <titre>Google Earth 5</titre> + <duree>1h02</duree> + <description>Ce parcours de vidéo-formation vous permettra de voyager sur l'ensemble de la terre grâce au logiciel Google Earth.\r\nVous apprendrez alors à naviguer dans de nombreux pays. Vous pourrez personnaliser vos cartes en y intégrant différents repères ou zones. Vous découvrirez des aspects pratiques (trouver un restaurant) et ludique (vol en avion).</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-16T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/207/small/Earth_jpg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/207/medium/Earth_png_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/207/original/Google_Earth_5_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4491/medium/4491.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4484/medium/4484.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4495/medium/4495.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4496/medium/4496.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4499/medium/4499.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>208</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/208</link> + <titre>Picasa 3.6</titre> + <duree>1h45</duree> + <description>Au cours de ce parcours de vidéos-formation, vous apprendrez à utiliser le logiciel Picasa 3. Ce dernier vous permet d'organiser et de gérer l'ensemble de vos photos dans votre ordinateur. Par ailleurs, vous apprendrez à retoucher vos photos et créer différents montages (photos et vidéos). Enfin, vous pourrez désormais publier vos photos en ligne pour les partager avec vos amis.</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-27T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/208/small/picase_jpg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/208/medium/Sans_titre_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/208/original/picasa3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4506/medium/4506.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4524/medium/4524.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4513/medium/4513.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4505/medium/4505.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4532/medium/4532.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>209</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/209</link> + <titre>Excel - les macros</titre> + <duree>5h18</duree> + <description>Ce parcours pédagogique vous propose de vous former sur les macros d'Excel. Les macros sont très utiles pour les utilisateurs avancés afin d'automatiser des actions sur ce tableur. Pour en créer vous pouvez le faire directement dans Excel. Mais pour avoir une macro plus complexe, vous allez devoir utiliser Visual Basic Editor. Notre formateur vous montrera donc l'utilisation du langage VBA pour déclarer une variable, utiliser les objets, insérer un événement... Tout cela vous permettra par la suite d'insérer un graphique en tant que commentaire, d'exporter des données, d'insérer un sommaire et bien plus encore !</description> + <nb_formations>51 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-19T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/209/small/Logo-Excel2010_jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/209/medium/Logo-Excel2010_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/209/original/excelmacros_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4541/medium/4541.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4545/medium/4545.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4542/medium/4542.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4546/medium/4546.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4578/medium/4578.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>210</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/210</link> + <titre>OneNote 2010</titre> + <duree>2h08</duree> + <description>Dans ce parcours de formation intégral, vous allez découvrir le logiciel OneNote 2010. Ce logiciel vous permet d'insérer très simplement des notes sur ce que vous souhaitez. Mais OneNote 2010 dispose de plusieurs outils qui pourront s'avérer très utile : la création d'indicateurs vous permettant de marquer des notes, le découpage de vos notes en sections et pages afin de mieux vous y retrouver... Notre formateur vous montrera également comment OneNote 2010 vous permet de partager vos bloc-notes afin d'y travailler à plusieurs.</description> + <nb_formations>29 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-27T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/210/small/OneNote_2010_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/210/medium/OneNote_2010_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/210/original/onenote2010_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4589/medium/4589.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4613/medium/4613.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4610/medium/4610.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4598/medium/4598.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4603/medium/4603.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>211</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/211</link> + <titre>Acrobat Pro Extended 9</titre> + <duree>2h36</duree> + <description>A travers ce parcours de formation, vous découvrirez un grand nombre d'usages proposé par le logiciel. À l'aide de votre formateur, vous découvrirez tout d'abord les bases d'utilisations comme la création de documents PDF ou la lecture de ces derniers. En fin de parcours, vous serez apte à aborder des fonctionnalités plus compliquées comme la création de formulaires. Enfin, découvrez comment travailler en ligne avec vos collaborateurs grâce à la plateforme en ligne d'Acrobat.com qui vous permettra de partager vos travaux.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2010-08-24T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/211/small/Acrobat-Reader-9_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/211/medium/Acrobat-Reader-9_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/211/original/adobeproextended9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4639/medium/4639.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4645/medium/4645.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4637/medium/4637.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4644/medium/4644.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4640/medium/4640.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>212</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/212</link> + <titre>Visio 2010</titre> + <duree>2h42</duree> + <description>Dans ce parcours pédagogique, vous allez découvrir l'utilisation de Microsoft Visio 2010. Ce logiciel de Microsoft vous permet de concevoir des diagrammes. Pour cela, il intègre un grand nombre de formes ainsi que différentes fonctionnalités très utiles. Ainsi, vous pourrez créer un organigramme d'une entreprise, un plan d'aménagement d'une maison ou encore une carte géographique. Notre formateur vous montrera que Visio 2010 vous permet également d'exploiter les données d'un autre document ou encore de créer différents rapports avec vos diagrammes.</description> + <nb_formations>28 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-30T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/212/small/Visio_2010__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/212/medium/Visio2010_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/212/original/visio2010_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4660/medium/4660.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4676/medium/4676.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4659/medium/4659.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4655/medium/4655.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4658/medium/4658.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>213</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/213</link> + <titre>G Data TotalCare 2011</titre> + <duree>1h38</duree> + <description>Ce parcours de vidéo-formation vous expliquera les différentes fonctionnalités de votre logiciel antivirus G Data TotalCare 2011. Apprenez ainsi avec nos formations à installer G Data, à analyser l'ensemble de votre ordinateur et à y chercher des virus. Par la suite, vous allez apprendre à gérer vos virus détectés grâce à la zone de quarantaine. De plus, notre formateur vous montrera comment effectuer une sauvegarde complète de vos différentes données et à les restaurer par la suite. Désormais ne craignez plus d'internet et surfez en toute tranquillité !</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2010-07-23T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/213/small/ggg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/213/medium/gdata_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/213/original/G_Data_TotalCare_2011_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4679/medium/4679.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4695/medium/4695.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4688/medium/4688.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4684/medium/4684.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4684/medium/4684.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>214</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/214</link> + <titre>G Data EndpointProtection (Business)</titre> + <duree>1h14</duree> + <description>Au cours de ce parcours de vidéo-formation, vous allez apprendre à sécuriser un réseau d'entreprise à l'aide de G Data EndPointProtection. Vous apprendrez d'abord à installer et paramétrer le serveur. Vous serez par la suite amené à intégrer des ordinateurs clients. Notre formateur vous montrera comment définir les différentes règles permettant de faire des analyses anti-virus, de bloquer des clés USB et des applications ou d'empêcher des connexions à Internet. Enfin, vous découvrirez le fonctionnement des outils de reporting comme les statistiques et les fichiers de protocole.</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2010-08-05T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/214/small/ggg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/214/medium/gdata_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/214/original/G_Data_EndpointProtection_business_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4706/medium/4706.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4700/medium/4700.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4714/medium/4714.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4716/medium/4716.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4709/medium/4709.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>215</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/215</link> + <titre>Aperture 3</titre> + <duree>3h31</duree> + <description>Vous souhaitez disposer d'un logiciel plus complet qu'iPhoto '09 ? Ce parcours de formation est fait pour vous. Au cours de ce parcours pédagogique, vous découvrirez les différentes utilisations proposées par le logiciel Aperture 3. Vous apprendrez dans un premier temps à importer et classer vos photos dans votre bibliothèque. Au fil de la formation, vous découvrirez comment accéder aux options de retouches ainsi que la personnalisation grâce aux métadonnées. Cette formation vous offrira, de plus, la possibilité de partager des photographies à l'aide des exportations ou de la diffusion sur Internet !</description> + <nb_formations>51 formations</nb_formations> + <language>fr</language> + <publishDate>2010-08-24T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/215/small/Aperture.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/215/medium/aperture_logopng_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/215/original/aperture3.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4773/medium/4773.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4753/medium/4753.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4744/medium/4744.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4725/medium/4725.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4770/medium/4770.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>216</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/216</link> + <titre>Project 2010</titre> + <duree>3h15</duree> + <description>Ce parcours pédagogique a pour objectif de vous apprendre à utiliser Microsoft Project 2010. Ce logiciel vous permettra de créer et de gérer vos projets personnels ou professionnels. En effet, Project 2010 propose de gérer différentes tâches et ressources afin de savoir rapidement combien de temps sera nécessaire pour la réalisation du projet. Ce programme vous permet donc de lier des tâches, de les regrouper ou encore de les auditer. De pluns notre formateur vous montrera des fonctionnalités qui peuvent s'avérer très utiles comme l'utilisation des différents modes d'affichages, la création de rapports ou encore l'insertion de champs personnalisés.</description> + <nb_formations>38 formations</nb_formations> + <language>fr</language> + <publishDate>2010-08-04T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/216/small/project2010.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/216/medium/project2010-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/216/original/project2010.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4807/medium/4807.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4803/medium/4803.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4788/medium/4788.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4801/medium/4801.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4782/medium/4782.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>217</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/217</link> + <titre>Publisher 2010</titre> + <duree>1h03</duree> + <description>Dans ce parcours de formation, vous apprendrez à utiliser Publisher 2010. Ce logiciel permet de créer de nombreuses publications professionnelles. Par exemple, il est possible de créer un CV, un calendrier ou encore un catalogue. Notre formateur vous montrera toutes les astuces à connaître afin de créer et partager correctement votre travail avec Publisher 2010.</description> + <nb_formations>14 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-02T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/217/small/publisher_2010.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/217/medium/publisher2010-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/217/original/Publisher2010.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4821/medium/4821.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4827/medium/4827.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4818/medium/4818.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4822/medium/4822.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4814/medium/4814.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>218</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/218</link> + <titre>InfoPath 2010</titre> + <duree>1h22</duree> + <description>Dans ce parcours pédagogique, vous apprendrez à créer vos propres formulaires avec InfoPath 2010. C'est le moyen idéal pour envoyer une invitation ou une enquête. Ce logiciel, présent dans la suite Office, vous permet pour cela d'insérer différents éléments : champs de saisie, listes, cases à cocher, boutons... Notre formateur vous montrera également différentes astuces afin d'ordonner et de partager au mieux votre formulaire. Ainsi InfoPath 2010 n'aura plus de secrets pour vous !</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-02T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/218/small/infopath.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/218/medium/Logo_InfoPath_2010_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/218/original/InfoPath2010.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4843/medium/4843.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4838/medium/4838.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4837/medium/4837.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4840/medium/4840.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4829/medium/4829.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>219</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/219</link> + <titre>Carbonite 4</titre> + <duree>0h42</duree> + <description>Dans ce parcours pédagogique, vous apprendrez à utiliser le logiciel Carbonite. Celui-ci vous permettra de sauvegarder les fichiers que vous souhaitez. Ainsi vous pourrez les récupérer en cas de mauvaises manipulations. Notre formateur vous montrera également toutes les astuces à connaître pour le bon déroulement de la sauvegarde ou de la restauration de vos fichiers avec Carbonite.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2010-08-05T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/219/small/Carbonite.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/219/medium/Carbonite_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/219/original/carbonite4.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4847/medium/4847.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4849/medium/4849.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4849/medium/4849.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4846/medium/4846.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4847/medium/4847.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>220</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/220</link> + <titre>Apple Remote Desktop 3</titre> + <duree>2h02</duree> + <description>Dans ce parcours de formation, vous apprendrez à utiliser Apple Remote Desktop 3. Ce logiciel permet de gérer très simplement l'ensemble des Mac se trouvant sur le même réseau local. Ainsi, vous pouvez tout aussi bien d'observer un ordinateur que de le contrôler. De plus Apple Remote Desktop propose de gérer plusieurs éléments sur un ordinateur : l'échange de fichiers, la gestion de la mise sous tension, le partage d'écran ou encore la création de rapports. Pour finir notre formateur, vous montrera les aspects de configuration de ce logiciel.</description> + <nb_formations>25 formations</nb_formations> + <language>fr</language> + <publishDate>2010-10-08T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/220/small/Remote_Desktop_3_-_logo.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/220/medium/Remote_Desktop_3_-_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/220/original/apple_remote_desktop3.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5317/medium/5317.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5316/medium/5316.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5325/medium/5325.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5326/medium/5326.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5315/medium/5315.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>221</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/221</link> + <titre>Nero 10</titre> + <duree>2h19</duree> + <description>Ce parcours pédagogique va vous montrer comment utiliser Nero 10. Cette suite de logiciels vous permettra tout aussi bien de graver vos données multimédia que de les organiser dans une bibliothèque. Nero 10 dispose de bien d'autres fonctionnalités afin de gérer correctement vos données multimédia. Ainsi, notre formateur vous expliquera comment retoucher des photographies, effectuer un diaporama, créer des jaquettes et bien plus encore !</description> + <nb_formations>25 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-02T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/221/small/Nero_10_logo.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/221/medium/Nero_10_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/221/original/nero10.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4870/medium/4870.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4872/medium/4872.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4860/medium/4860.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4878/medium/4878.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4874/medium/4874.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>222</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/222</link> + <titre>Adobe Photoshop Lightroom 3</titre> + <duree>3h43</duree> + <description>Dans ce parcours de formation, vous découvrirez le logiciel Lightroom 3. Ce logiciel de gestion de photographies vous permettra de gérer de manière professionnelle vos différentes prises de vues. Vous découvrirez à travers les différentes leçons les différents outils de classements ainsi que de retouches disponibles pour vos images. Par la suite, vous verrez comment exporter vos photos vers un diaporama,e une vidéo ou encore comment les afficher directement sur Internet !</description> + <nb_formations>46 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-14T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/222/small/adobe_lightroom_icon1_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/222/medium/adobe_lightroom_icon1_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/222/original/Lightroom_3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4918/medium/4918.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4910/medium/4910.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4927/medium/4927.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4915/medium/4915.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4891/medium/4891.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>223</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/223</link> + <titre>Access 2010</titre> + <duree>4h10</duree> + <description>Vous ne connaissez rien en base de données ? Ce parcours de formation sur Access 2010 va vous permettre de remédier à ce problème ! Vous y apprendrez à créer et gérer une base de données. Vous pourrez ainsi organiser des données comme une collection de livres ou vos commandes clients. Ce parcours commencera par vous initier au fonctionnement de ce logiciel : création de table, insertion de champs et de données, utilisation de formulaires... Puis notre formateur vous montrera comment exploiter au mieux vos différentes données. Ainsi vous pourrez lier vos différentes tables, utiliser les requêtes ou encore créer différents rapports.</description> + <nb_formations>55 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-10T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/223/small/Access_2010_logo.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/223/medium/Access_2010_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/223/original/access2010.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4943/medium/4943.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4942/medium/4942.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4983/medium/4983.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4946/medium/4946.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4951/medium/4951.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>224</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/224</link> + <titre>iTunes 10</titre> + <duree>3h01</duree> + <description>Dans ce parcours de formation intégral, vous apprendrez à utiliser iTunes 10 sur votre Mac. Vous verrez donc comment ce logiciel vous permet de remplir votre bibliothèque musicale, que ce soit avec l'importation d'un CD audio ou avec l'achat d'une musique. Vous apprendrez également à gérer votre iPod ou iPhone avec cette application. Puis vous découvrirez qu'il est possible de se créer un compte iTunes Store afin d'utiliser certaines fonctionnalités comme Genius ou le nouveau réseau social Ping. Enfin, notre formateur vous montrera qu'iTunes 10 permet de gérer simplement le partage de sa bibliothèque.</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-15T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/224/small/iTunes_10_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/224/medium/iTunes_10_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/224/original/itunes10_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5007/medium/5007.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5004/medium/5004.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/4999/medium/4999.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5018/medium/5018.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5011/medium/5011.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>225</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/225</link> + <titre>iTunes 10</titre> + <duree>2h56</duree> + <description>Ce parcours pédagogique a pour objectif de vous initier au fonctionnement d'iTunes 10 sur votre PC. Il s'agit d'un logiciel gratuit vous permettant de gérer vos fichiers multimédia : musiques, films, podcasts... Vous verrez donc comment importer ces fichiers dans votre bibliothèque afin de les organiser correctement. Ce parcours vous montrera également comment gérer votre iPod ou iPhone avec iTunes 10. Puis notre formateur vous expliquera comment utiliser votre compte iTunes Store afin d'effectuer des achats, utiliser Ping ou encore partager vos données.</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-15T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/225/small/iTunes_10_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/225/medium/iTunes_10_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/225/original/iTunes10.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5041/medium/5041.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5055/medium/5055.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5048/medium/5048.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5043/medium/5043.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5038/medium/5038.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>226</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/226</link> + <titre>Norton Internet Security 2011</titre> + <duree>2h20</duree> + <description>Vous souhaitez être protégé efficacement face aux virus ? Alors ce parcours de formation est fait pour vous ! Vous allez y découvrir l'utilisation de Norton Internet Security 2011. Ainsi, vous allez pouvoir utiliser ce logiciel pour contrer les virus, les logiciels espions et bien plus encore ! Vous verrez également qu'il est possible d'utiliser un contrôle parental afin de restreindre l'accès à l'ordinateur pour vos enfants. Grâce à notre formateur, vous pourrez donc lutter efficacement contre toutes les menaces !</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-21T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/226/small/Norton_2011_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/226/medium/Norton_2011_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/226/original/Norton_internet_security_2011.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5124/medium/5124.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5121/medium/5121.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5127/medium/5127.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5134/medium/5134.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5130/medium/5130.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>227</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/227</link> + <titre>BitDefender Total Security 2011</titre> + <duree>2h11</duree> + <description>Dans ce parcours de formation vous apprendrez à utiliser correctement BitDefender Total Security 2011. À l'aide de ce logiciel, vous allez pouvoir vous protéger face aux virus et autres logiciels malveillants. Pour cela vous devrez apprendre à configurer les fonctionnalités proposées, que ce soit pour l'antivirus, l'antispam ou encore le pare-feu. BitDefender Total Security 2011 possède également différents outils permettant d'améliorer l'utilisation de son ordinateur. Ainsi il est possible d'optimiser les performances de son PC, de protéger ses données à l'aide d'un coffre-fort... Notre formateur vous montrera toutes les astuces à connaître pour que vous puissiez profiter pleinement de cette suite de sécurité.</description> + <nb_formations>28 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-23T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/227/small/BitDefender_2011_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/227/medium/BitDefender-2011-logo-png_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/227/original/Bit_defender_total_security_2011.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5172/medium/5172.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5192/medium/5192.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5194/medium/5194.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5196/medium/5196.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5191/medium/5191.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>228</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/228</link> + <titre>PaintShop Photo Pro X3</titre> + <duree>2h11</duree> + <description>Ce parcours de formation nous emmènera à la rencontre du logiciel PaintShop Photo Pro X3. Cet outil de gestion de photographie offre de nombreuses options de retouche grâce à un éditeur complet. Nous découvrirons au fil des vidéos-formations comment classer et organiser nos images mais également comment effectuer des modifications rapides sur ces dernières. Enfin nous irons étudier de plus près l'éditeur de retouche d'images afin de personnaliser au maximum nos photographies en leurs appliquants différents effets.</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-30T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/228/small/icone_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/228/medium/PaintShop_Photo_Pro_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/228/original/PaintShop_photo_pro_x3.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5232/medium/5232.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5244/medium/5244.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5231/medium/5231.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5219/medium/5219.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5243/medium/5243.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>229</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/229</link> + <titre>Adobe Photoshop Elements 9</titre> + <duree>5h28</duree> + <description>Dans ce parcours de formation vous apprendrez à utiliser Adobe Photoshop Elements 9. Par l'intermédiaire de ce logiciel vous pourrez tout aussi bien gérer vos photographies que les retoucher. Pour cela deux modes distincts vous sont proposés. Vous découvrirez donc comment naviguer entre ces modes et les utiliser. Ainsi vous pourrez consulter et ranger vos clichés, mais également y ajouter des effets ou changer les couleurs. Enfin notre formateur vous montrera que grâce à Adobe Photoshop Elements 9, il est possible de partager ses photographies très simplement.</description> + <nb_formations>64 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-30T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/229/small/Photoshop_elements_9_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/229/medium/Photoshop_elements_9_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/229/original/adobe_photoshop_elements_9.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5285/medium/5285.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5302/medium/5302.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5259/medium/5259.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5306/medium/5306.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5271/medium/5271.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>230</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/230</link> + <titre>Adobe Premiere Elements 9</titre> + <duree>3h19</duree> + <description>Dans ce parcours de formation ,vous allez découvrir l'utilisation de Premiere Elements 9. Par l'intermédiaire de ce logiciel il vous sera possible de monter les vidéos que vous possédez. Pour cela cette application intègre deux interfaces, suivant les modifications que vous souhaitez faire et votre niveau. Vous apprendrez donc quelles sont les différentes possibilités afin de monter correctement votre vidéo. Ainsi vous allez voir comment modifier l'inclinaison de votre vidéo, sa durée ou y ajouter des effets. Enfin notre formateur vous montrera comment partager simplement le travail que vous avez effectué avec votre proche !</description> + <nb_formations>42 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-29T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/230/small/Premiere_elements_9_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/230/medium/Premiere_elements_9_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/230/original/adobe_premiere_elements_9.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5362/medium/5362.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5334/medium/5334.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5340/medium/5340.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5338/medium/5338.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5365/medium/5365.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>231</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/231</link> + <titre>FileMaker Pro 11</titre> + <duree>3h25</duree> + <description>Dans ce parcours de formation intégral, vous apprendrez à utiliser FileMaker Pro 11. Par l'intermédiaire de ce logiciel, vous verrez comment créer et exploiter des bases de données. Vous commencerez donc par découvrir le fonctionnement général de ce logiciel pour créer une base de données, la diviser en table et la remplir. Puis notre formateur vous montrera les modèles, ainsi vous allez voir qu'il peut être très simple et rapide d'insérer des informations dans sa base de données ! Enfin, vous découvrirez des aspects plus complexes de FileMaker Pro 11. Par exemple, vous apprendrez à lier plusieurs tables, à effectuer des requêtes ou encore consulter différents rapports.</description> + <nb_formations>50 formations</nb_formations> + <language>fr</language> + <publishDate>2010-10-13T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/231/small/FileMaker_Pro_11_logo__jpg__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/231/medium/FileMaker_Pro_11_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/231/original/File_Maker_pro_11.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5415/medium/5415.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5422/medium/5422.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5409/medium/5409.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5405/medium/5405.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5450/medium/5450.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>253</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/253</link> + <titre>Nokia 5800 XpressMusic</titre> + <duree>0h17</duree> + <description>Vous venez d'acheter le Nokia 5800 XpressMusic et vous êtes un peu perdu ? Vous souhaiteriez profiter d'une initiation à ce téléphone ? Notre parcours pédagogique est fait pour cela ! En 5 formations, vous allez découvrir l'utilisation de ce téléphone portable ainsi que les fonctionnalités clés proposées par Nokia. Notre formateur vous montrera en plus une série de petites astuces simplifiant le quotidien avec le Nokia 5800 XpressMusic.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2009-06-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/253/small/1236864392_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/253/medium/1244535326_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/253/original/nokia_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1455/medium/1236159256.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1456/medium/1236159423.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1454/medium/1236159088.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1458/medium/1236863571.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1457/medium/1236159537.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>254</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/254</link> + <titre>Sony Ericsson V640i</titre> + <duree>0h12</duree> + <description>Vous n'avez jamais réussi à profiter du téléphone Sony Ericsson V640i et vous êtes un peu perdu ? Vous souhaiteriez profiter d'une initiation à ce téléphone ? Notre parcours pédagogique est fait pour cela ! En 5 formations, vous allez découvrir l'utilisation de ce téléphone portable ainsi que les premiers réglages indispensables pour utiliser votre Sony. Notre formateur vous montrera en plus une série de petites astuces simplifiant le quotidien avec le Sony Ericsson V640i.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2009-03-02T00:00:00+01:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/254/small/1236864185_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/254/medium/1244535396_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/254/original/sony_erisson_v640i.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1459/medium/1236863378.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1453/medium/1236158823.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1451/medium/1236158481.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1450/medium/1236158212.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1452/medium/1236158678.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>255</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/255</link> + <titre>BlackBerry Storm</titre> + <duree>0h34</duree> + <description>Nous vous proposons ce parcours de formation afin que vous puissiez profiter pleinement de votre BlackBerry Storm. Notre formateur vous expliquera les éléments indispensables à une bonne utilisation de ce téléphone portable comme la navigation dans les menus, l'envoi d'un SMS ou l'appel téléphonique. Vous y découvrirez aussi comment profiter des fonctionnalités multimédias du BlackBerry Storm en apprenant à visionner vos photographies, à configurer l'appareil pour recevoir vos courriers ou à configurer le bluetooth pour échanger des fichiers !</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2009-05-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/255/small/1235482064_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/255/medium/blackberry_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/255/original/blackberry_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1403/medium/1234174888.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1405/medium/1234175288.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1406/medium/1234175680.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1410/medium/1234184996.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1404/medium/1234175073.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>256</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/256</link> + <titre>Ipod Nano 4g</titre> + <duree>0h36</duree> + <description>En 10 formations, vous allez tout savoir de votre iPod Nano. Vous découvrirez tout de lui du premier démarrage en passant la lecture d'un moraux de musique ou la visualisation d'une vidéo. Notre formateur vous montrera également comment il est possible de configurer l'iPod Nano et de mettre en place une sécurité pour protéger vos données. Nous vous montrerons également des petites astuces bien pratique comment l'utilisation des extras, de l'agenda ou du carnet d'adresse !</description> + <nb_formations>11 formations</nb_formations> + <language>fr</language> + <publishDate>2009-05-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/256/small/1233009889_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/256/medium/1244099183_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/256/original/ipod_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1375/medium/1236791761.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1376/medium/1236791762.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1379/medium/1236791765.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1353/medium/1236791746.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1374/medium/1236791761.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>258</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/258</link> + <titre>iPhone 3G</titre> + <duree>1h29</duree> + <description>Nous vous proposons le parcours de formation indispensable pour pleinement s'épanouir avec votre iPhone 3G. En effet, vous apprendrez à utiliser complètement le téléphone d'Apple. Nous vous initierons d'abord à la navigation tactile puis à l'ensemble des usages possibles de ce téléphone. Vous apprendrez ainsi à gérer vos e-mails, à naviguer sur Internet, à prendre des photographies, à écouter de la musique…. AInsi, l'iPhone 3G n'aura plus aucune secret pour vous !</description> + <nb_formations>24 formations</nb_formations> + <language>fr</language> + <publishDate>2009-04-24T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/258/small/1234424940_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/258/medium/1244100514_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/258/original/iphone3g_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1416/medium/1234271558.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1434/medium/1235650238.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1421/medium/1234272583.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1440/medium/1440.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1446/medium/1236091867.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>259</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/259</link> + <titre>Panasonic Lumix DMC-TZ6</titre> + <duree>0h47</duree> + <description>Il n'est jamais facile d'utiliser son appareil photographique. Notre formateur est là pour vous aider à mieux maîtriser votre Panasonic Lumix. Vous découvrirez grâce à lui comment profiter de votre appareil de la première ouverture au paramétrage de ce dernier. Enfin, ce parcours de formation est le moyen idéal pour prendre de meilleurs photos en apprenant à profiter des différentes fonctionnalités comme l'anti-yeux rouges, la balance des blancs, le mode sépia...</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2010-01-08T00:00:00+01:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/259/small/lumix_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/259/medium/lumix_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/259/original/lumix-DMC-TZ7_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2830/medium/2830.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2835/medium/2835.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2831/medium/2831.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2836/medium/2836.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2832/medium/2832.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>260</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/260</link> + <titre>iOS 6 (iPad / iPhone)</titre> + <duree>4h45</duree> + <description>Vous possédez un iPad ou un iPhone avec le système d'exploitation iOS6, mais vous n'arrivez pas à en profiter pleinement ? Ce parcours de formation va vous apprendre à maîtriser totalement ce système d'exploitation d'Apple, dédiés aux supports tactiles : iPad et iPhone. Vous verrez quels sont les gestes utiles, et comment Naviguer entre les applications. Vous verrez aussi l'utilisation des e-mails, la navigation sur Internet, la localisation avec les plans et le multimédia !</description> + <nb_formations>51 formations</nb_formations> + <language>fr</language> + <publishDate>2013-03-20T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/260/small/ios6.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/260/medium/ios6.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/260/original/ipad_27768_1.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3794/medium/3794.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15743/medium/15743.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3790/medium/3790.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3827/medium/3827.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3801/medium/3801.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>261</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/261</link> + <titre>Orange</titre> + <duree>1h13</duree> + <description>Vous ressentez une gêne dans l'utilisation du webmail d'Orange au quotidien ? Vous souhaiteriez vous former à son utilisation ? Ce parcours pédagogique composé de plus de vingt vidéos-formations est fait pour vous ! Notre formateur vous expliquera tout de l'envoi de votre premier e-mail en passant par le tri de ces derniers pour arriver à des formations plus compliquées comme l'importation d'une autre adresse e-mail sur votre e-mail Orange. Vous découvrirez en plus des petites astuces bien pratiques comme la mise en place d'une signature automatique ou d'un message pour signaler que vous êtes en vacances !</description> + <nb_formations>23 formations</nb_formations> + <language>fr</language> + <publishDate>2007-11-24T00:00:00+01:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/261/small/1209462995_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/none.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/261/original/orange_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/159/medium/1236790840.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/165/medium/1236790844.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/171/medium/1236790850.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/173/medium/1236790851.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/175/medium/1236790852.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>263</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/263</link> + <titre>Windows live</titre> + <duree>1h39</duree> + <description>Vous souhaitez pouvoir conserver une adresse e-mail fixe ? Une adresse e-mail qui ne change pas si vous résiliez votre abonnement internet ? Ce parcours pédagogique sur Windows Live est fait pour vous ! Notre formateur vous expliquera tout de l'envoi de votre premier e-mail en passant par le tri de ces derniers pour arriver à des formations plus compliquées comme l'importation d'une autre adresse e-mail sur votre e-mail Windows Live. Vous découvrirez en plus que Windows Live vous propose un agenda et un gestionnaire de contacts qui communiquent pleinement avec votre e-mail !</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2007-11-25T00:00:00+01:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/263/small/1209462992_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/none.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/263/original/windowslive_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/220/medium/1236790890.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/209/medium/1236790881.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/229/medium/1236790897.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/233/medium/1236790901.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/231/medium/1236790899.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>294</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/294</link> + <titre>Gmail</titre> + <duree>4h47</duree> + <description>Ce parcours de formation vous permet d'aborder l'ensemble des fonctionnalités proposées par Gmail ainsi que Google Agenda. Vous verrez d'abord comment créer un compte et prendre en main ce webmail. Vous pourrez ensuite consulter vos e-mails et correspondre avec une ou plusieurs personnes. Gmail intègre aussi de nombreuses fonctionnalités pour automatiser les rangements, trier, filtrer, et retrouver rapidement les e-mails. Le carnet d'adresses bénéficie aussi d'un moteur de recherche intégré. Les contacts peuvent être importés, partagés et imprimés. Il est aussi possible de gérer les contacts par groupe, et de créer ainsi des listes de diffusion qui faciliteront l'envoi de vos e-mails. Enfin, Google agenda vous permet de gérer plusieurs calendriers. Vous apprendrez à créer des événements classiques, récurrents ou encore des réunions en invitant vos contacts.</description> + <nb_formations>62 formations</nb_formations> + <language>fr</language> + <publishDate>2012-04-25T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/294/small/gmail_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/294/medium/gmail_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/294/original/Gmail_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3281/medium/3281.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3265/medium/3265.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3275/medium/3275.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3280/medium/3280.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8570/medium/8570.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>308</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/308</link> + <titre>Google Documents</titre> + <duree>2h50</duree> + <description>Dans ce parcours de formation, vous verrez toutes les fonctionnalités de Google Documents. Cette application de traitement de texte en ligne vous permettra de créer et de mettre en page rapidement n'importe quel document texte. Vous verrez comment importer d'anciens documents, et comment en créer de nouveaux. Vous verrez aussi comment intégrer des éléments visuels et interactifs à vos documents textes. Car Google documents va plus loin que la simple mise en page de texte en proposant d'insérer des images, des liens hypertextes, des tableaux et même des graphiques. Vous saurez enfin toutes les fonctionnalités de partage d'un document. Vous pouvez envoyer par mail, publier sur interne, et travailler simultanément à plusieurs sur un même document. Vous pourrez même gérer des forums de discussion intégrés à vos documents.</description> + <nb_formations>49 formations</nb_formations> + <language>fr</language> + <publishDate>2012-02-01T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/308/small/google_documents_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/308/medium/google_documents_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/308/original/google_documents_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6325/medium/6325.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6331/medium/6331.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6336/medium/6336.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6302/medium/6302.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6333/medium/6333.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>334</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/334</link> + <titre>Photoshop Express</titre> + <duree>1h40</duree> + <description>Ce parcours pédagogique vous propose de découvrir le logiciel en ligne Photoshop Express. Il vous permettra de retoucher et ranger vos photographies gratuitement ! Vous verrez tout au long de ces vidéos-formations comment ajouter des effets sur vos images pour améliorer un rendu avec l'outil pop-up pour jouer sur les couleurs ou encore l'outil luminosité pour améliorer une photo prise dans un lieu sombre. Par la suite vous apprendrez à classer et ranger puis partager ces images dans votre galerie personnelle.</description> + <nb_formations>32 formations</nb_formations> + <language>fr</language> + <publishDate>2010-09-17T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/334/small/psexpress_png_27768_0.png</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/none.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/334/original/photoshop_express_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5093/medium/5093.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5081/medium/5081.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5097/medium/5097.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5101/medium/5101.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5105/medium/5105.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>341</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/341</link> + <titre>Mac OS X Tiger</titre> + <duree>2h03</duree> + <description>Vous voulez tout savoir de Mac OS X Tiger ? Ce parcours pédagogique intégral est fait pour vous ! Vous vous formerez ainsi à l'utilisation : du Finder pour naviguer parmi vos fichiers, du Dock pour utiliser vos logiciels plus simplement et des Préférences systèmes pour configurer tout votre Mac. Notre formateur vous fera découvrir toutes les nouveautés bien pratique de ce système d'exploitation d'Apple : vous pourrez ainsi jongler avec vos fenêtres à l'aide d'exposé, faire des recherches dans tous vos documents avec Spotlight et bien plus encore avec Mac OS X Tiger !</description> + <nb_formations>37 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-24T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/341/small/1209462912_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/341/medium/tiger_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/341/original/mail-tiger_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/561/medium/1236791161.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/510/medium/1236791124.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/527/medium/1236791137.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/507/medium/1236791121.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/533/medium/1236791141.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>342</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/342</link> + <titre>Mac OS X Leopard</titre> + <duree>1h33</duree> + <description>Mac OS X Leopard est installé sur votre Mac mais à part connaître le nom de ce système d'exploitation, vous êtes perdu ? Ce parcours de formation va vous aider ! Chaque aspect de Mac OS X Leopard vous sera expliqué. Ainsi vous apprendrez à naviguer dans vos documents avec le Finder, à ouvrir rapidement vos applications avec le Dock ou à configurer votre ordinateur Apple avec les Préférences Systèmes. Par ailleurs, notre formateur vous fera découvrir toutes les nouveautés de Mac OS X Léopard : les piles dans le Dock, Spaces pour disposer de plusieurs écran, Time Machine pour sauvegarder facilement vos documents, Coup d'oeil pour instamment un document et bien plus encore !</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2007-11-21T00:00:00+01:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/342/small/1209462913_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/342/medium/Leopard_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/342/original/macosXleopard_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/847/medium/1236791417.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/529/medium/1236791138.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/523/medium/1236791134.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/839/medium/1236791411.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/530/medium/1236791139.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>343</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/343</link> + <titre>Windows XP</titre> + <duree>2h43</duree> + <description>Windows XP est encore en 2009 le système d'exploitation le plus répandu au monde ! Mais pour autant, il reste parfois difficile de réussir à bien s'en servir. Ce parcours de formation intégral est là pour vous aider à mieux maîtriser les éléments essentiels de ce système d'exploitation : le menu démarrer, la barre des tâches, le poste de travail ou encore le panneau de configuration. Vous y apprendrez également à utiliser à plusieurs votre PC sans pour autant mélanger vos données grâce aux comptes utilisateurs.</description> + <nb_formations>51 formations</nb_formations> + <language>fr</language> + <publishDate>2007-08-30T00:00:00+02:00</publishDate> + <publishYear>2007</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/343/small/1209462912_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/343/medium/xp_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/343/original/xp_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/664/medium/1236791246.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/661/medium/1236791244.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/706/medium/1236791278.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/705/medium/1236791277.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/657/medium/1236791241.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>344</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/344</link> + <titre>Windows Vista</titre> + <duree>4h47</duree> + <description>Windows Vista modifie beaucoup d'éléments sur votre PC. Ce parcours de formation vous aidera à vous former intégralement à ce nouveau système d'exploitation de Microsoft. Toutes les fonctionnalités de Microsoft Windows Vista vous seront expliquées. Vous apprendrez à naviguer dans vos données avec le poste de travail, à utiliser mieux maîtriser le menu démarrer et la barre des tâches ou à configurer votre PC en utilisant le panneau de configuration. Enfin, ce parcours pédagogique vous permettra de découvrir les nouveautés de Windows Vista : les minis applications (gadget) sur votre bureau, la sauvegarde de vos documents, le centre de sécurité, le contrôle parental et bien plus encore !</description> + <nb_formations>87 formations</nb_formations> + <language>fr</language> + <publishDate>2008-08-30T00:00:00+02:00</publishDate> + <publishYear>2008</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/344/small/1209462913_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/344/medium/vista_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/344/original/vista_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/628/medium/1236791215.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/613/medium/1236791204.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/618/medium/1236791208.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/771/medium/1236791337.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/602/medium/1236791194.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>345</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/345</link> + <titre>Mac OS X Snow Leopard</titre> + <duree>5h58</duree> + <description>Vous avez nécessairement entendu parlé du dernier système d'exploitation d'Apple (Snow Leopard) dans la presse. Ce parcours de formation va vous former complètement à Snow Leopard. Notre formateur vous expliquera à la fois l'utilisation du Finder et la navigation à l'aide des fenêtres et du Dock. Vous apprendrez également à configurer votre Mac (Spotlight, compte utilisateur, sécurité…) à l'aide des Préférences Systèmes. Enfin nous vous montrerons toutes les nouveautés disponibles dans Mac OS X Snow Leopard : le contrôle parental, les insertions automatiques ou Automator.</description> + <nb_formations>86 formations</nb_formations> + <language>fr</language> + <publishDate>2009-09-20T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/345/small/1254133354_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/345/medium/snow_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/345/original/macosxsnowleopard_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1957/medium/1254124099.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1499/medium/1240936273.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/852/medium/1236791419.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1914/medium/1252998215.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1940/medium/1253286597.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>346</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/346</link> + <titre>Windows Seven</titre> + <duree>7h14</duree> + <description>Windows Seven apporte beaucoup de changements par rapport aux anciennes versions. C'est pourquoi nous vous proposons de vous former intégralement à ce nouveau système d'exploitation de Microsoft par l'intermédiaire de ce parcours de formation intégral. Notre formateur vous accompagnera afin de vous expliquer toutes les fonctionnalités de Windows Seven : de la navigation dans vos données à l'aide du Poste de travail jusqu'à la configuration de votre PC à l'aide du panneau de configuration en passant par la gestion des différents compte utilisateur, tout vous sera expliqué en détails. De plus, vous découvrirez dans ce parcours pédagogique les nouveautés de Windows Seven : les onglets dans la barre des tâches, le fonctionnement des nouveaux gadgets, les nouvelles interfaces des logiciels intégrés à Windows...</description> + <nb_formations>111 formations</nb_formations> + <language>fr</language> + <publishDate>2009-10-15T00:00:00+02:00</publishDate> + <publishYear>2009</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/346/small/1255704585_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/346/medium/seven_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/346/original/seven_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1886/medium/1254999031.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1883/medium/1254998478.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1872/medium/1254996798.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1877/medium/1254997671.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/1865/medium/1254995613.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>347</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/347</link> + <titre>Linux Ubuntu</titre> + <duree>5h45</duree> + <description>Nous vous proposons de vous former intégralement sur le système d'exploitation libre et gratuit Linux Ubuntu par l'intermédiaire de ce parcours de formation intégral. Notre formateur vous accompagnera dans l'ensemble de ces formations afin de vous expliquer toutes les fonctionnalités de Linux Ubuntu : en commencent par la navigation dans vos données avec le navigateur de fichiers jusqu'à la configuration de votre ordinateur. Vous découvrirez même l'utilisation du terminal ! Tout vous sera donc expliqué dans les moindres détails.</description> + <nb_formations>94 formations</nb_formations> + <language>fr</language> + <publishDate>2010-04-12T00:00:00+02:00</publishDate> + <publishYear>2010</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/347/small/ubutu_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/347/medium/ubuntu_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/347/original/linux-ubuntu_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3625/medium/3625.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3394/medium/3394.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3495/medium/3495.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3719/medium/3719.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3620/medium/3620.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>371</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/371</link> + <titre>Firefox 4</titre> + <duree>3h12</duree> + <description>Que vous soyez débutant, ou habitué à un autre navigateur internet, cette formation vous permettra de découvrir progressivement toutes les possiblités offertes par Firefox 4. Cette version du navigateur est plus puissante, gagne en rapidité, et offre des paramétrages de sécurité renforcés. Ce qui fait par ailleurs la force de ce navigateur est la quantité toujours grandissante des modules directement téléchargeables sur internet. Apprenez à les utiliser, et découvrez les autres atouts de Firefox 4 : la navigation par groupes d'onglets, la sauvegarde de vos pages préférées avec les marque-pages, et la possibilité de personnaliser à l'extrême votre barre d'outils.</description> + <nb_formations>33 formations</nb_formations> + <language>fr</language> + <publishDate>2011-05-02T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/371/small/logo_firefox_4_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/371/medium/logo_firefox_4_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/371/original/firefox_4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5998/medium/5998.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5976/medium/5976.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6004/medium/6004.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5979/medium/5979.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5981/medium/5981.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>373</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/373</link> + <titre>Google Chrome 11</titre> + <duree>2h37</duree> + <description>Avec cette formation, vous saurez utiliser le navigateur de Google dans toutes ses fonctionnalités. Retrouvez tous les outils que vous avez l'habitude d'utiliser avec d'autres navigateurs, et découvrez les particularités de Google Chrome. Ces dernières en font un navigateur à la fois pratique, rapide, et sûr. Personnalisez ensuite votre navigateur grâce aux extensions toujours plus nombreuses que vous pourrez installer d'un clic. Vous pourrez ainsi retrouver vos flux d'actualité, et certains outils spécifiques à Internet Explorer 9 ou Firefox 4. Pour les utilisateurs plus avancés, Google Chrome met l'accent sur le partage des données : apprenez à synchroniser vos navigateurs sur plusieurs appareils, ou à mettre vos imprimantes en réseau avec un simple compte Google.</description> + <nb_formations>29 formations</nb_formations> + <language>fr</language> + <publishDate>2011-05-06T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/373/small/google_chrome_logo_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/373/medium/google_chrome_logo_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/373/original/Google_Chrome_11_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6028/medium/6028.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6015/medium/6015.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6018/medium/6018.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6030/medium/6030.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6009/medium/6009.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>374</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/374</link> + <titre>Internet Explorer 9</titre> + <duree>3h12</duree> + <description>Cette formation sur Internet Explorer 9 vous permettra de faire le tour de tout ce qu'il est possible de faire avec la nouvelle version du navigateur le plus utilisé au monde : un indispensable ! Vous apprendrez les bases de la navigation sur internet, mais aussi les paramétrages qui vous permettront d'utiliser internet de façon plus rapide, plus confortable, et plus sûre. Internet Explorer 9 met l'accent sur la personnalisation de l'accès à vos sites préférés : sachez utiliser les favoris, les raccourcis et les nouvelles barres d'outils, mais aussi les liens RSS et les Webslices qui vous permettent d'avoir directement accès à vos actualités. Vous saurez enfin comment utiliser et configurer les outils de sécurité d'Internet Explorer 9, afin de profiter d'internet sans que cela ne porte atteinte à votre vie privée.</description> + <nb_formations>34 formations</nb_formations> + <language>fr</language> + <publishDate>2011-04-20T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/374/small/IE_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/374/medium/IE_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/374/original/IE9_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5917/medium/5917.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5902/medium/5902.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5922/medium/5922.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5905/medium/5905.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/5910/medium/5910.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>375</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/375</link> + <titre>iPhoto '11</titre> + <duree>4h05</duree> + <description>Découvrez dans cette formation la richesse d'utilisation offerte par iPhoto '11. En effet, ce logiciel va vous permettre de gérer vos photos du classement jusqu'à la réalisation de projets d'aspect professionnel. Vous verrez comment concevoir vos propres calendriers, albums de famille, cartes de voeux, pour ensuite les commander en ligne pour vous-même ou vos proches. Découvrez comment exporter vos photos pour en faire de magnifiques diaporamas, vidéoclips, ou pages web. La grande variété des outils de retouche vous permettront de corriger le moindre détail de vos photographies numériques. Les types de classement les plus avancés, par la reconnaissance des visages ou la création d'albums intelligents, vont renouveller la perception que vous allez donner de vos photos.</description> + <nb_formations>42 formations</nb_formations> + <language>fr</language> + <publishDate>2011-05-13T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/375/small/iPhoto_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/375/medium/iPhoto_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/375/original/iPhoto_11_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6093/medium/6093.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6098/medium/6098.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6092/medium/6092.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6101/medium/6101.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6073/medium/6073.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>376</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/376</link> + <titre>WinRAR 4</titre> + <duree>1h53</duree> + <description>Vous recevez en permanence des documents .zip ou .rar que vous ne parvenez pas à ouvrir ? Vous souhaitez pouvoir conserver des documents en réduisant leurs poids ? Il est temps pour vous de découvrir WinRar à l'aide de ce parcours de formation. Notre formateur vous expliquera à la fois l'installation du logiciel mais aussi à décompresser ou compresser des fichiers avec WinRar. Vous apprendrez même comment il est possible de créer des processus automatiques pour générer des archives à la volée</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2011-05-10T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/376/small/winrar_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/376/medium/winrar_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/376/original/winrar4_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2363/medium/1256313795.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2370/medium/2370.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2369/medium/2369.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2368/medium/2368.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/2376/medium/2376.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>377</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/377</link> + <titre>iMovie '11</titre> + <duree>2h55</duree> + <description>Ce parcours de formation recouvre l'ensemble des outils proposés par le logiciel de montage vidéo qu'est iMovie '11. Vous découvrirez toutes les étapes de création de vos films, du simple classement de vos séquences filmées, jusqu'à l'exportation et au partage de vos films sur d'autres supports ou sur internet. Apprenez à retoucher les images, à ajuster vos bandes sonores, à ajouter des textes dynamiques, et même à incruster des photos dans vos films. Enfin, iMovie '11 dispose de bibliothèques d'effets préconçus, qui vous permettront d'ajouter des effets de transition d'aspect professionnel. Vous pourrez même créer des cartes géographiques en mouvement !</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2011-05-19T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/377/small/iMovie_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/377/medium/iMovie_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/377/original/iMovie_11_-_produit_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6147/medium/6147.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6139/medium/6139.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6120/medium/6120.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6146/medium/6146.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6123/medium/6123.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>383</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/383</link> + <titre>SharePoint Online</titre> + <duree>3h35</duree> + <description>Ce parcours de formation recouvre tout ce que vous pouvez faire avec SharePoint Online. Que vous soyez administrateur du site d'équipe, simple utilisateur ou concepteur de site web, vous connaîtrez l'ensemble des fonctionnalités de SharePoint Online dans Office 365. Apprenez à gérer les comptes des différents utilisateurs, les groupes d'autorisation, et les emplois du temps de chacun. En tant qu'utilisateur, apprenez à créer et partager vos documents Word, Excel, PowerPoint et OneNote. Surveillez en temps réel vos listes des tâches. Travaillez en interaction avec votre équipe en créant des débats, ou des annonces. Enfin, découvrez comment créer un site web, de la conception à la publication, avec SharePoint Online.</description> + <nb_formations>43 formations</nb_formations> + <language>fr</language> + <publishDate>2011-06-07T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/383/small/Sharepoint_Online_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/383/medium/Sharepoint_Online_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/383/original/Sharepoint_Online_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6251/medium/6251.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6279/medium/6279.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6258/medium/6258.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6271/medium/6271.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6248/medium/6248.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>384</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/384</link> + <titre>Word Web App</titre> + <duree>0h24</duree> + <description>Ce parcours de formation présente les applications de la suite Office 365 : Word, Excel, Powerpoint et OneNote. Ces applications sont appelées Web Apps, car elles vous permettent de créer et de stocker vos documents directement en ligne. Vous pouvez ainsi les partager avec les membres de votre équipe de travail. Le parcours de formation se concentre sur l'aspect collaboratif du travail, avec des documents modifiés simultanément à plusieurs mains. Vous verrez notamment comment importer, exporter, copier et coller des données entre plusieurs documents.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2011-06-07T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/384/small/word_web_app_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/384/medium/word_web_app_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/384/original/word_web_app_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6289/medium/6289.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6288/medium/6288.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6286/medium/6286.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6287/medium/6287.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6286/medium/6286.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>385</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/385</link> + <titre>Outlook Web App</titre> + <duree>0h21</duree> + <description>Ce parcours de formation vous montre les principales fonctions d'Outlook Web App. Apprenez à classer vos contacts et vos e-mails selon l'organisation de votre travail. Par ailleurs, cette version d'Outlook en ligne est conçue pour favoriser le travail collaboratif. Vous verrez donc comment envoyer des mails à plusieurs destinataires, et comment organiser vos conférences selon les emplois du temps de vos collègues.</description> + <nb_formations>5 formations</nb_formations> + <language>fr</language> + <publishDate>2011-06-07T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/385/small/Outlook_WebApp_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/385/medium/Outlook_WebApp_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/385/original/Outlook_WebApp_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6292/medium/6292.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6291/medium/6291.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6295/medium/6295.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6294/medium/6294.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6293/medium/6293.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>386</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/386</link> + <titre>Lync Online</titre> + <duree>0h24</duree> + <description>Ce parcours de formation présente Lync Online. Lync Online permet d'être en contact, en temps réel avec les membres de votre équipe de travail. Vous pourrez discuter, échanger des documents, et partager des zones de votre écran pour travailler à plusieurs mains. Vous verrez comment organiser des conférences en ligne, échanger des informations simultanément avec plusieurs utilisateurs. Vous verrez comment créer des sondages pour obtenir directement l'avis des différents membres de votre équipe. Les résultats sont mis à jour automatiquement dans la fenêtre des statistiques. Vous pouvez ainsi prendre des décisions rapidement..</description> + <nb_formations>6 formations</nb_formations> + <language>fr</language> + <publishDate>2011-06-07T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/386/small/Lync_Online_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/386/medium/Lync_Online_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/386/original/Lync_Online_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6296/medium/6296.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6299/medium/6299.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6298/medium/6298.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6298/medium/6298.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6296/medium/6296.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>390</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/390</link> + <titre>Google Liste de Documents</titre> + <duree>1h23</duree> + <description>Cette formation présente l'intégralité des outils de la liste de Documents Google. Cette interface relie les diverses applications Google Docs. Vous pourrez créer et modifier des documents textes, mais aussi des feuilles de calcul, des présentations de type PowerPoint, des formulaires et des images. La variété des documents est encore enrichie par la possibilité d'utiliser et de partager des modèles de documents avec des utilisateurs du monde entier. Vous allez voir comment utiliser au mieux la liste de documents Google pour classer vos document, les suivre et les retrouver rapidement. C'est aussi à partir de la liste que vous pourrez attribuer les autorisations de lecture et de modifications des documents que vous partagez.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2012-02-12T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/390/small/google_liste_logo_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/390/medium/google_liste_logo_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/390/original/Google_liste_-_produit_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6400/medium/6400.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6392/medium/6392.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6399/medium/6399.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6397/medium/6397.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6394/medium/6394.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>392</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/392</link> + <titre>Google Feuille de Calculs</titre> + <duree>5h53</duree> + <description>Ce parcours de formation présente l'ensemble des fonctionnalités de Google Feuille de Calculs. Vous verrez comment rentrer et modifier vos données dans des tableaux et des listes. Vous apprendrez à classer, trier et filtrer vos données pour les rendre plus visibles et les retrouver rapidement. Les feuilles de calcul fonctionnent aussi comme une calculatrice améliorée. Vous pouvez effectuer des calculs complexes et retrouver des informations directement à partir de formules automatisées sur des plages entières. Les feuilles de calculs comportent aussi des outils qui permettent d'analyser et d'illustrer des données chiffrées. Vous apprendrez à mettre en forme des tableaux croisés dynamiques, ainsi que des graphiques ou des cartes d'intensité de couleur. Enfin, vous verrez comment utiliser Google Feuille de Calculs pour partager vos feuilles de calcul et travailler dessus à plusieurs mains. Les feuilles de calcul de Google sont conçues comme un véritable outil de travail collaboratif.</description> + <nb_formations>88 formations</nb_formations> + <language>fr</language> + <publishDate>2012-04-11T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/392/small/google_feuille_de_calcul_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/392/medium/google_feuille_de_calcul_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/392/original/Google_feuille_de_calcul_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6461/medium/6461.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6510/medium/6510.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6517/medium/6517.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6464/medium/6464.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6505/medium/6505.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>393</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/393</link> + <titre>Google Formulaires</titre> + <duree>1h12</duree> + <description>Ce parcours de formation retrace toutes les fonctionnalités proposées par Google Formulaires. Vous verrez comment créer vos propres questionnaires en ligne. Les formulaires peuvent contenir des cases à cocher, des échelles d'évaluation, et de nombreux autres éléments. Vous pouvez aussi créer des sondages complexes avec des embranchements conditionnés par les réponses des utilisateurs. Il est donc important de savoir structurer vos questionnaires. Vous verrez enfin les différentes méthodes qui vous permettront de lire et d'interpréter rapidement les réponses à vos formulaires.</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2012-04-12T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/393/small/google_feuille_de_calcul_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/393/medium/google_feuille_de_calcul_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/393/original/Google_Formulaires_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6547/medium/6547.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6562/medium/6562.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6556/medium/6556.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6560/medium/6560.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6551/medium/6551.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>394</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/394</link> + <titre>Google Dessins</titre> + <duree>1h21</duree> + <description>Ce parcours de formation couvre tous les outils disponibles dans Google Dessins. Chaque fonctionnalité est montrée, et illustrée par des exemples concrets. Vous verrez ainsi comment créer et manipuler des formes vectorielles, personnalisées ou prédéfinies. D'autres fonctions vous permettent d'importer ou d'exporter des dessins dans différents formats. Vous pourrez ainsi réutiliser vos dessins dans d'autres documents, ou récupérer des images à partir de votre disque dur ou d'internet.</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2012-04-12T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/394/small/google_dessins_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/394/medium/google_dessins_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/394/original/Google_Dessins_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6571/medium/6571.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6570/medium/6570.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6572/medium/6572.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6569/medium/6569.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6580/medium/6580.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>398</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/398</link> + <titre>Mac OS X Lion</titre> + <duree>10h47</duree> + <description>Découvrez immédiatement le nouveau système d'Apple dans un parcours qui couvre l'intégralité de ses fonctionnalités. Mac Os X Lion innove sur de nombreux plans, et conserve des fonctionnalités fondamentales qui ont fait le succès des précédents systèmes d'exploitation d'Apple. Mac OS X Lion développe ainsi une nouvelle manière de concevoir la navigation à travers les applications. Mission Control fusionne Spaces et Exposé pour créer un seul tableau de bord à partir duquel retrouver toutes vos fenêtres. Les applications peuvent êtres visualisées en plein écran et associées à des espaces. Ainsi, vos activités variées sont accessibles immédiatement. De plus, Mac OS X Lion intègre de nombreux gestes avec le touch pad. En utilisant les bons gestes, vous aurez directement accès aux fenêtres que vous souhaitez retrouver, sans quitter le mode plein écran. Dans la même logique, vous allez découvrir Launchpad, l'application qui donne accès à toutes les autres applications dans une interface renouvelée. Le Finder est toujours présent, avec des outils très efficaces. Le coup d'oeil permet de consulter rapidement vos documents, mais aussi de créer de véritables diaporamas. Spotlight est totalement paramétrable pour retrouver vos fichiers selon des critères précis et combinés.</description> + <nb_formations>124 formations</nb_formations> + <language>fr</language> + <publishDate>2011-07-12T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/398/small/Mac_OS_Lion_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/398/medium/Mac_OS_Lion_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/398/original/Mac_OS_Lion_27768_1.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6715/medium/6715.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6756/medium/6756.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6684/medium/6684.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6742/medium/6742.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6700/medium/6700.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>405</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/405</link> + <titre>Mail (Lion)</titre> + <duree>4h06</duree> + <description>Ce parcours de formation couvre l'ensemble des fonctionnalités de Mail sous Mac OS X Lion. Ce logiciel de messagerie installé par défaut sur tous les systèmes Apple depuis juillet 2011 innove par rapport aux versions précédentes. L'interface a été entièrement réaménagée pour faciliter la lecture de vos e-mails. Vos e-mails sont listés dans une barre de présentation qui laisse toute la fenêtre libre pour l'aperçu. Une barre de favoris complètement personnalisable vous permettra de ranger et de retrouver vos e-mails en un instant. Mail est complètement synchronisé avec les autres applications de Mac OS X Lion. Vous pouvez importer et exporter des images à partir de iPhoto. Vous pouvez programmer des événements directement dans iCal et les partager directement avec le carnet d'adresse. Vous êtes sûr de ne perdre aucun message grâce à la fonction d'archivage. Time Machine peut retrouver l'état de vos boîtes de réception à la date que vous voulez. Mail dépasse enfin la simple fonction de messagerie en vous proposant de créer des notes et de consulter des flux RSS.</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2011-08-05T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/405/small/logo_Mail_Lion__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/405/medium/logo_Mail_Lion__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/405/original/Mail_Lion__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6826/medium/6826.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6845/medium/6845.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6843/medium/6843.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6829/medium/6829.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6831/medium/6831.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>409</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/409</link> + <titre>Aperçu (Lion)</titre> + <duree>2h03</duree> + <description>Ce parcours de formation vous propose de découvrir l'intégralité des fonctionnalités d'Aperçu sous Mac OS X Lion. Cette application vous permet de consulter rapidement tous les documents de votre Mac. Maintenant sous Mac OS X Lion, vous pouvez même utiliser constamment le plein écran. Mais Aperçu est aussi un outil très puissant. Vous pourrez créer vos propres documents à partir d'informations récupérées sur d'autres documents ou sur internet. Vous pourrez aussi numériser des documents papiers, et faire des captures d'écran. Aperçu sous Mac OS X Lion vous permet d'annoter et de modifier vos textes et vos photographies.</description> + <nb_formations>22 formations</nb_formations> + <language>fr</language> + <publishDate>2011-08-16T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/409/small/logo_Aper_u_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/409/medium/logo_Aper_u_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/409/original/Aper_u_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6898/medium/6898.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6908/medium/6908.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6907/medium/6907.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6887/medium/6887.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6897/medium/6897.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>410</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/410</link> + <titre>Carnet d'adresse (Lion)</titre> + <duree>1h14</duree> + <description>Ce parcours de formation va vous permettre de tout savoir sur le Carnet d'Adresses de Mac OS X Lion. Si vous êtes habitué aux versions précédentes de l'application, vous avez remarqué que l'apparence a changé. Cette nouvelle interface vous donne accès à de nombreuses fonctionnalités, qui fonctionnent en commun avec d'autres applications comme Mail ou iCal. Vous pourrez par exemple retrouver les dates d'anniversaire dans vos calendriers. Vous pouvez d'un clic partager vos contacts et les envoyer par e-mail. Carnet d'adresse crée des classements intelligents, ce qui permet de faire des envois groupés.</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2011-08-17T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/410/small/carnet_d_adresses_logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/410/medium/carnet_adresse_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/410/original/Carnet_d_adresse_Lion_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6920/medium/6920.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6922/medium/6922.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6925/medium/6925.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6924/medium/6924.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6915/medium/6915.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>411</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/411</link> + <titre>iCal (Lion)</titre> + <duree>1h22</duree> + <description>Ce parcours de formation vous propose de découvrir l'intégralité des fonctionnalités de iCal sous Mac OS X Lion. Cette application permet de créer puis de gérer plusieurs calendriers, pour une meilleure organisation quotidienne. Vous allez ainsi pouvoir planifier vos rendez-vous, les horaires et les délais. Pour ne rien oublier, vous pouvez programmer des alertes sonores, visuelles, des e-mails automatiques, etc. Enfin vous pourrez coordonner vos calendriers iCal avec d'autres agendas, les vôtres, ceux de vos amis et de vos collègues.</description> + <nb_formations>17 formations</nb_formations> + <language>fr</language> + <publishDate>2011-08-23T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/411/small/iCal_logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/411/medium/ICal_logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/411/original/iCal_vignette_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6934/medium/6934.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6933/medium/6933.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6936/medium/6936.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6942/medium/6942.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6946/medium/6946.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>412</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/412</link> + <titre>Google Présentations</titre> + <duree>3h11</duree> + <description>Ce parcours de formation couvre l'ensemble des fonctionnalités de Google Présentations. Cette application de Google Docs permet de créer des documents de type PowerPoint. Ce sont des diaporamas qui servent de support à vos interventions orales. Dans Google Présentations, vous allez créer des diapositives, et les organiser en parcours. De nombreux outils vous permettent d'ajouter des éléments multimédia à vos diapositives, des images et des vidéos. Vous pourrez aussi créer des organigrammes, des graphiques et des tableaux. Enfin, une large gamme d'outils vous permettront de rendre votre diaporama agréable, en choisissant des couleurs et des thèmes d'apparence.</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2012-03-21T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/412/small/presentation_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/412/medium/presentation_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/412/original/Google_Presentation_vignette_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6953/medium/6953.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6968/medium/6968.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6983/medium/6983.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6956/medium/6956.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6969/medium/6969.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>413</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/413</link> + <titre>Eset NOD32 5</titre> + <duree>2h14</duree> + <description>Ce parcours de formation présente l'ensemble des fonctionnalités de Eset Nod32 et Eset Smart Security, la version 5 du logiciel. Eset Nod32 est un logiciel antivirus qui protège votre ordinateur en temps réel contre les virus, spyware, chevaux de Troie et autres logiciels malveillants. Eset Smart Security complète les fonctionnalités de Eset Nod 32 notamment pour lutter contre le courrier indésirable. Vous allez voir comment gérer ces programmes afin d'être sûr que vous n'avez aucun virus sur votre ordinateur. Apprenez à garder la base de signatures de virus constamment à jour. Découvrez comment programmer des analyses intelligentes régulièrement. Luttez contre le spam directement dans votre logiciel de messagerie. Établissez même un contrôle parental sur les sessions de vos enfants.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2011-08-17T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/413/small/eset_jpeg_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/413/medium/eset-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/413/original/eset5_vignette_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7032/medium/7032.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7035/medium/7035.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7054/medium/7054.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7046/medium/7046.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7028/medium/7028.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>419</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/419</link> + <titre>Word 2011</titre> + <duree>5h53</duree> + <description>Dans ce parcours de formation, vous verrez toutes les fonctionnalités de Word 2011 pour Mac. Ce logiciel de traitement de texte permet de créer des documents complexes, et de les mettre en page. Vous verrez ainsi comment utiliser les styles de paragraphes, les modèles et les thèmes de documents. Des outils automatisés permettent de générer rapidement tables des matières, des index, des bibliographies. Vous pouvez par exemple créer rapidement des enveloppes pour effectuer un publipostage. Word 2011 pour Mac possède aussi de nombreux outils graphiques, qui facilitent la mise en forme des titres, des tableaux, des graphiques, avec de nombreux effets spéciaux. Enfin, il faut savoir sur Word 2011 pour Mac s'intègre parfaitement à Mac OS X, et fonctionne conjointement avec Mail, Carnet d'adresse, et Aperçu.</description> + <nb_formations>93 formations</nb_formations> + <language>fr</language> + <publishDate>2011-09-23T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/419/small/Word_2011_pour_Mac_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/419/medium/Word2011_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/419/original/Word_2011_pour_Mac_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7204/medium/7204.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7203/medium/7203.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7161/medium/7161.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7169/medium/7169.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7158/medium/7158.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>422</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/422</link> + <titre>Expert PDF 7 Professional</titre> + <duree>1h25</duree> + <description>Ce parcours de formation montre chacune des fonctionnalités de Expert PDF 7. Vous verrez tout d'abord comment ouvrir, créer, et convertir vos documents PDF. Vous verrez notamment comment passer d'un format d'image ou Word à un format PDF et réciproquement. Il est très important de savoir marquer et retrouver rapidement les informations importantes dans un document PDF. Expert PDF 7 propose plusieurs outils de navigation, un mode plein écran, et un système de signets. Il est possible de créer rapidement des documents d'aspect professionnel, avec des schémas, des liens hypertextes et des schémas complexes. Enfin, Expert PDF 7 est un outil de partage, facilitant l'échange des documents par e-mail. Il est ainsi possible de commenter et de répondre aux commentaires laissés sur un document.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2011-10-06T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/422/small/Expert_PDF_7_Pro_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/422/medium/expert-pdf-logo_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/422/original/Expert_PDF_7_Pro_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7329/medium/7329.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7341/medium/7341.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7328/medium/7328.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7332/medium/7332.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7337/medium/7337.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>423</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/423</link> + <titre>PowerPoint 2011</titre> + <duree>4h34</duree> + <description>Ce parcours de formation vous présente la totalité des usages de PowerPoint 2011 pour Mac. Ce logiciel vous permettra de créer des présentations : des diaporamas qui peuvent servir de support à un exposé oral. Vous verrez d'abord comment insérer et organiser des diapositives. Puis vous apprendrez à créer des éléments plus complexes : zones de texte, image, graphiques, tableaux... Les diapositives peuvent ensuite être personnalisées avec des thèmes de couleurs, des effets d'animation, de transition, et des fichiers multimédias. PowerPoint 2011 favorise aussi le travail collaboratif : vous pourrez facilement envoyer vos présentations par e-mail, valider les modifications de vos collègues, etc.</description> + <nb_formations>69 formations</nb_formations> + <language>fr</language> + <publishDate>2011-10-13T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/423/small/Powerpoint2011_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/423/medium/PowerPoint2011_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/423/original/Powerpoint2011_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7393/medium/7393.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7398/medium/7398.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7355/medium/7355.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7396/medium/7396.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7384/medium/7384.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>426</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/426</link> + <titre>Excel 2011</titre> + <duree>6h33</duree> + <description>Vous allez retrouver dans ce parcours de formation l'ensemble des fonctionnalités d'Excel 2011 pour Mac. Ce tableur vous permettra de gérer des données chiffrées, monétaires, des pourcentages mais aussi des données textuelles, des dates, et des liens hypertextes. Apprenez à mettre en forme vos données dans des tableaux reconnus par le logiciel. Il sera ainsi plus simple de changer leur apparence, mais aussi de les trier, de les filtrer, d'afficher des sous-totaux. Vous verrez comment créer des graphiques et des tableaux croisés dynamiques, afin de mieux présenter et analyser vos données. Ces outils se mettent à jour en temps réel avec l'évolution des données insérées, ils permettent de réorganiser et de regrouper automatiquement les données. Si vous souhaitez appliquer des calcul sur des plages de données, apprenez à utiliser les formules d'Excel 2011. Vous pourrez ainsi additionner, diviser, convertir automatiquement des plages de données. Mais vous pourrez aller plus loin avec des formules complexes qui permettent d'effectuer des calculs sous condition, des recherches et des remplacements dans plusieurs listes, selon les critères que vous définissez. Apprenez enfin à utiliser Excel 2011 pour Mac dans le cadre d'un travail collaboratif. De nombreux outils vous permettront de partager vos document, de les envoyer par e-mail, et de les protéger avec des mots de passe. Vous pourrez gérer les modifications apportées par vos collègues, et communiquer avec eux en laissant des commentaires directement dans le document, mais sans alourdir le contenu des cellules.</description> + <nb_formations>93 formations</nb_formations> + <language>fr</language> + <publishDate>2011-10-26T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/426/small/Excel2011_logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/426/medium/Excel2011_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/426/original/Excel_2011_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7534/medium/7534.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7535/medium/7535.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7546/medium/7546.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7536/medium/7536.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7554/medium/7554.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>427</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/427</link> + <titre>TuneUp Utilities 2012</titre> + <duree>1h05</duree> + <description>Ce parcours de formation vous fera découvrir l'ensemble des fonctionnalités de TuneUp Utilities 2012. Ce logiciel contient des outils diversifiés qui permettent d'optimiser le fonctionnement de votre ordinateur. Vous pourrez par exemple désactiver les programmes et les fonctionnalités de Windows qui prennent des ressources inutilement. Votre ordinateur gagnera ainsi en rapidité. Un mode Turbo peut être enclenché pour gagner de la vitesse, provisoirement ou durablement. Si votre optique est plutôt d'économiser de l'énergie, vous trouverez aussi un mode spécial. Vous verrez aussi comment résoudre un certain nombre de problèmes que vous pouvez rencontrer avec votre ordinateur. Comment corriger les erreurs d'affichage de Windows. Comment restaurer un fichier supprimé une fois que la corbeille a été vidée. Vous pourrez enfin personnaliser en profondeur l'apparence et le comportement de Windows.</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2011-10-28T00:00:00+02:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/427/small/tuneup2_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/427/medium/tuneup_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/427/original/tuneup3_27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7566/medium/7566.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7576/medium/7576.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7567/medium/7567.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/3814/medium/3814.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7568/medium/7568.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>434</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/434</link> + <titre>Outlook 2011</titre> + <duree>3h13</duree> + <description>Ce parcours de formation présente toutes les fonctionnalités d'Outlook 2011 pour Mac. Vous pourrez ainsi rapidement recevoir des e-mails avec plusieurs comptes et répondre à vos correspondants. Si vous gérez de nombreux messages, vous verrez comment les ranger dans des dossiers et les retrouver rapidement avec le moteur de recherche intégré au logiciel. Outlook 2011 pour Mac vous permet d'automatiser un grand nombre de tâches : vous pourrez ainsi mettre de côté le courrier indésirable. Apprenez à utiliser le carnet d'adresse pour gérer vos contact, les partager, et préparer des groupes de diffusion. Apprenez à organiser vos tâches quotidiennes selon les échéances et les niveaux de priorité. Enfin, le calendrier de Outlook 2011 pour Mac vous permettra de planifier vos événements et d'organiser des réunions.</description> + <nb_formations>50 formations</nb_formations> + <language>fr</language> + <publishDate>2011-11-02T00:00:00+01:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/434/small/outlook2011_logo_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/434/medium/outlook2011_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/434/original/Outlook2011_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7649/medium/7649.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7621/medium/7621.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7621/medium/7621.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7655/medium/7655.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7613/medium/7613.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>442</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/442</link> + <titre>Nero 11</titre> + <duree>3h38</duree> + <description>Ce parcours de formation vous montrera l'ensemble des fonctionnalités de Nero 11. Vous pourrez notamment graver vos disques de données, vos compilations musicales, et vos films. Les formats DVD et BluRay sont supportés par le logiciel si votre graveur est adapté à ces technologies. Mais Nero 11 va beaucoup plus loin qu'un simple logiciel de gravure : il vous propose de gérer l'ensemble de vos fichiers multimédias. Par exemple, vous pourrez constituer vos propres albums photos, les mettre en page et les commander pour les recevoir chez vous. Avant de graver vos pistes musicales, vous pourrez les mixer et leur ajouter des effets. Nero 11 contient aussi un logiciel de montage. Vous pourrez donc monter vos propres films, les enregistrer et les graver dans divers formats.</description> + <nb_formations>53 formations</nb_formations> + <language>fr</language> + <publishDate>2011-11-28T00:00:00+01:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/442/small/Nero_2011_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/442/medium/Nero_2011_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/442/original/Nero_11_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7708/medium/7708.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7721/medium/7721.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7736/medium/7736.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7705/medium/7705.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7726/medium/7726.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>444</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/444</link> + <titre>Facebook</titre> + <duree>2h21</duree> + <description>Découvrez comment développer un réseau social sur Facebook. Vous apprendrez notamment comment créer et configurer votre profil Facebook, comment constituer un réseau d'amis, discuter avec eux,  publier des photographies... Vous pouvez aller plus loin et voir comment tenir un blog, écrire des articles. Il est est même possible de créer des pages pour faire la promotion de votre entreprise, association, ou groupe de musique.</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2011-11-29T00:00:00+01:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/444/small/Facebook_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/444/medium/Facebook_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/444/original/Facebook_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7820/medium/7820.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7838/medium/7838j.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7837/medium/7837.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7831/medium/7831.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7825/medium/7825.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>445</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/445</link> + <titre>Twitter</titre> + <duree>1h16</duree> + <description>Apprenez à utiliser toutes les fonctionnalités de Twitter. Il s'agit d'un site de microbloging : les utilisateurs postent de très courts messages, des Tweets, qui sont immédiatement rendus publics. Il est même possible de poster des images et des vidéos. Vous aurez ainsi des nouvelles de vos amis. Vous pourrez aussi suivre en direct les actualités publiées par les journalistes, les personnalités politiques, les stars du cinéma, de la musique, etc. Comme les flux d'informations sont très nombreux et très denses, il est important de savoir les trier, les organiser. Twitter possède ainsi de nombreux outils : moteur de recherche, listes, localisation des Tweets, etc.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2012-01-06T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/445/small/twitter_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/445/medium/twitter_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/445/original/Twitter_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7843/medium/7843.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7841/medium/7841.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7858/medium/7858.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7848/medium/7848.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7845/medium/7845.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>449</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/449</link> + <titre>Adobe Photoshop Elements 10</titre> + <duree>5h33</duree> + <description>Ce parcours de formation recouvre l'ensemble des fonctionnalités d'Adobe Photoshop Elements 10. Le programme s'organise autour de deux modes : le mode organiser et le mode éditeur, qui sont deux logiciels. Le mode organiser vous permettra de gérer vos photographies, de créer des albums photos. Vous pourrez retrouver rapidement vos photos préférées à l'aide de mots clés, ou avec la reconnaissance automatique des visages. Le mode retouche vous permettra de modifier rapidement vos photos. Vous verrez comment redresser une photo bancale, comment changer le cadre. Vous pourrez enlever les yeux rouges, retoucher la lulminosité et le contraste. Mais vous pourrez aller plus loin et retoucher les détails des photos, faire du détourage, créer des effets artistiques, etc. Enfin, découvrez les fonctionnalités de partage qui permettent par exemple de publier un album photo immédiatement sur facebook.</description> + <nb_formations>73 formations</nb_formations> + <language>fr</language> + <publishDate>2011-12-14T00:00:00+01:00</publishDate> + <publishYear>2011</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/449/small/Adobe_Photoshop_Elements_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/449/medium/Adobe_Photoshop_Elements_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/449/original/Adobe_Photoshop_Elements_10_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7917/medium/7917.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7924/medium/7924.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7886/medium/7886.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7904/medium/7904.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7905/medium/7905.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>453</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/453</link> + <titre>Adobe Premiere Elements 10</titre> + <duree>3h07</duree> + <description>Cette formation couvre tout ce qu'il est possible de faire avec Adobe Premiere Elements 10. Vous verrez d'abord comment importer tous les fichiers dont vous aurez besoin pour votre film. Ce peut être des fichiers vidéos, mais aussi des musiques et des images. Vous pourrez ensuite monter ces éléments ensemble. Adobe Premiere Elements 10 vous propose d'utiliser plusieurs pistes pour créer des effets de transition. Vous pourrez aussi incruster des vidéos avec un fond vert. Enfin pour partager vos vidéos, vous pouvez créer un menu DVD, et les graver sur un disque. Il est aussi possible d'envoyer des vidéos sur Youtube.</description> + <nb_formations>44 formations</nb_formations> + <language>fr</language> + <publishDate>2012-01-16T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/453/small/Adobe_Premiere_Elements_10_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/453/medium/Adobe_Premiere_Elements_10_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/453/original/Adobe_Premiere_Elements_10_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7992/medium/7992.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8019/medium/8019.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8011/medium/8011.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8014/medium/8014.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/7988/medium/7988.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>456</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/456</link> + <titre>LibreOffice Writer 3.5</titre> + <duree>6h07</duree> + <description>Ce parcours de formation présente l'ensemble des fonctionnalités de LibreOffice Writer. Vous verrez comment rédiger et mettre en page des documents complexes allant de la lettre de motivation au mémoire de master, en passant par le dossier de presse. Vous apprendrez à insérer des illustrations, à créer des schémas et des graphiques. Vous pourrez aussi générer rapidement et automatiquement des informations bibliographiques, des tables des matières, des enveloppes pour de nombreux destinataires. Vous verrez enfin comment vous approprier au mieux l'interface de LibreOffice Writer, qui est entièrement personnalisable.</description> + <nb_formations>86 formations</nb_formations> + <language>fr</language> + <publishDate>2012-01-30T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/456/small/LibreOffice_Writer_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/456/medium/LibreOffice_Writer_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/456/original/LibreOffice_Writer_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8124/medium/8124.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8095/medium/8095.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8071/medium/8071.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8097/medium/8097.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8084/medium/8084.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>458</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/458</link> + <titre>Ciel Gestion Commerciale 2012</titre> + <duree>2h28</duree> + <description>Ce parcours de formation couvre l'intégralité du programme Ciel Gestion Commerciale 2012. Toutes les étapes pour bien débuter avec le logiciel sont expliquées. Depuis la création de votre catalogue d'articles jusqu'à l'analyse de vos ventes. Le logiciel vous permet de créer rapidement des devis, de les transformer en factures, et de les communiquer à vos clients. Les tarifs spéciaux et les promotions sont automatiquement appliquées en fonction des règles que vous avez décidées. En fonction de vos commandes fournisseurs et de vos ventes, les mouvements de stocks sont calculés, une alarme vous averti dès qu'une quantité minimum est atteinte. Enfin, vous pourrez analyser l'ensemble de vos données à l'aide de fonctionnalités avancées. Votre tableau de bord vous indiquera l'évolution de vos ventes sous forme de graphique. Les Etats et Statistiques vous permettront de générer et d'imprimer rapidement n'importe quel document utile. Que ce soit la liste de vos représentants, votre RIB, ou encore le relevé des comptes clients.</description> + <nb_formations>33 formations</nb_formations> + <language>fr</language> + <publishDate>2012-02-21T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/458/small/Ciel_CG_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/458/medium/Ciel_Comptes_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/458/original/Ciel_Comptes_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8160/medium/8160.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8147/medium/8147.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8171/medium/8171.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8167/medium/8167.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8177/medium/8177.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>459</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/459</link> + <titre>Messagerie Orange Pro</titre> + <duree>4h05</duree> + <description>Ce parcours de formation vous propose de voir l'ensemble des fonctionnalités de la messagerie Orange Pro. Vous verrez d'abord comment compléter vos informations personnelles et comment vous approprier l'interface du webmail. Vous pourrez ensuite commencer à échanger des e-mails avec un ou plusieurs correspondants. Pour aller plus loin, vous pourrez même envoyer des fax, des sms, et des fichiers lourds. La messagerie Orange Pro vous permet de gérer plusieurs boîtes de réception et plusieurs adresses e-mails. Elle intègre donc aussi de nombreux outils pour automatiser les rangements, trier, filtrer, et retrouver les e-mails. Le courrier indésirable, ou spam, est ainsi automatiquement mis de côté. Le carnet d'adresses bénéficie aussi d'un moteur de recherche intégré. Les contacts peuvent être importés, partagés et imprimés. Il est aussi possible de gérer les contacts de façon groupée, et de créer des listes de diffusion. Enfin, la partie agenda du webmail permet de gérer plusieurs calendriers. Les événements peuvent être programmés de façon récurrente, et il est possible d'y inviter des contacts.</description> + <nb_formations>65 formations</nb_formations> + <language>fr</language> + <publishDate>2012-03-06T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/459/small/orange_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/459/medium/Messagerie_Orange_Pro_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/459/original/Messagerie_Orange_Pro_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8223/medium/8223.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8230/medium/8230.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8190/medium/8190.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8213/medium/8213.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8207/medium/8207.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>460</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/460</link> + <titre>Windows 8</titre> + <duree>8h37</duree> + <description>Ce parcours de formation présente toutes les fonctionnalités de Windows 8, le nouveau système d'exploitation de Microsoft depuis août 2012. La grande nouveauté de Windows 8 réside dans le menu démarrer. En effet, ce dernier est devenu une véritable interface indépendante, qui devient la page d'accueil de Windows 8. Il est possible de le personnaliser en y ajoutant d'autres applications, des dossiers personnels, et même des pages internet. Vous verrez aussi comment organiser vos comptes utilisateurs, comment basculer de l'un à l'autre. L'accent est ainsi mis sur le partage de documents et l'utilisation des réseaux. Le poste de travail a lui aussi évolué, de nouveaux outils font leur apparition dans le ruban de l'explorateur Windows. Windows 8 possède son propre pare-feu et son propre antivirus, Windows Defender. Vous verrez enfin comment configurer votre système d'exploitation pour le rendre plus accessible et plus facile d'utilisation.</description> + <nb_formations>116 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-04T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/460/small/win8_logo2__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/460/medium/win8_logo2__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/460/original/Win8_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10183/medium/10183.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8262/medium/8262.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10197/medium/10197.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10247/medium/10247.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10229/medium/10229.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>465</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/465</link> + <titre>Thunderbird 12</titre> + <duree>3h15</duree> + <description>Dans ce parcours pédagogique, vous allez apprendre à utiliser le logiciel de messagerie Thunderbird 12. Vous verrez qu'il est possible d'envoyer et de recevoir des e-mails. Vous découvrirez également que Thunderbird 12 est très complet : il permet de gérer ses contacts, d'afficher ses réunions, d'ajouter des tâches... Notre formateur vous montrera aussi les aspects plus complexes du logiciel tel que la configuration de votre compte (POP ou IMAP), la gestion de la remise de vos e-mails ou la gestion du publipostage...</description> + <nb_formations>54 formations</nb_formations> + <language>fr</language> + <publishDate>2012-04-23T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/465/small/thunderbird_11_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/465/medium/thunderbird_11_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/465/original/Thunderbird11_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8390/medium/8390.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8380/medium/8380.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8375/medium/8375.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8418/medium/8418.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8420/medium/8420.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>470</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/470</link> + <titre>WebEx</titre> + <duree>1h42</duree> + <description>Ce parcours de formation couvre l'intégralité des fonctionnalités proposées par le service de conférence en ligne WebEx. Cette plate-forme vous permettra de créer et d'organiser des conférences en lignes. Invitez des participants, décidez la date et l'heure de la réunion. Des outils vous permettent de gérer plusieurs conférences dans un calendrier qui dispose de plusieurs affichages. En conférence, vous pouvez distribuer les rôles aux participants et mener le débat. Vous pouvez communiquer avec la messagerie instantée, le téléphone, ou encore la webcam intégrée à votre ordinateur. De nombreux outils vous permettront de gérer des tableaux, d'échanger des fichiers et de partager des applications. Les documents et tableaux créés lors de la conférence peuvent être sauvegardés et partagés rapidement.</description> + <nb_formations>22 formations</nb_formations> + <language>fr</language> + <publishDate>2012-04-27T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/470/small/Webex_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/470/medium/Webex_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/470/original/Webex_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8682/medium/8682.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8671/medium/8671.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8676/medium/8676.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8667/medium/8667.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8685/medium/8685.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>474</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/474</link> + <titre>Firefox 12</titre> + <duree>2h17</duree> + <description>Avec ce parcours de formation, vous apprendrez progressivement à utiliser les fonctionnalités du navigateur de Mozilla. Vous verrez d'abord comment l'installer et le prendre en main. Vous retrouverez ainsi les fonctionnalités que vous utilisez avec les autres navigateurs. Découvrez les particularités de Firefox 12 comme la navigation privée ou les groupes d'onglets ! Puis personnalisez votre navigateur grâce aux extensions ou encore aux thèmes d'apparence. Pour les utilisateurs avancés, apprenez à synchroniser vos navigateurs sur plusieurs ordinateurs ou sur votre téléphone portable.</description> + <nb_formations>33 formations</nb_formations> + <language>fr</language> + <publishDate>2012-05-16T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/474/small/logo_firefox_4_250x250_27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/474/medium/logo_firefox_4_250x250_27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/474/original/Firefox_12_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8868/medium/8868.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8881/medium/8881.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8880/medium/8880.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8858/medium/8858.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8851/medium/8851.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>475</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/475</link> + <titre>Google - Les services</titre> + <duree>4h51</duree> + <description>Ce parcours de formation vous présente l'ensemble des fonctionnalités du moteur de recherche de Google. Vous allez découvrir comment effectuer une recherche avancée, afin de retrouver des informations très précises. Saviez-vous que le moteur de recherche de Google intègre une calculatrice, les cours de la bourse, les résultats sportifs ? Vous pourrez aussi rechercher spécifiquement des images, des vidéos, des blogs, en utilisant des mots clés et de nombreux critères de tri. Google Scholar est spécialisé dans la recherche d'articles de recherche, Google Books vous permettra de retrouver des livres numérisés. Plusieurs formations vous permettront d'utiliser au mieux Google Maps pour retrouver des cartes, des itinéraires, et explorer des villes en mode Street View. Pour avoir accès à des informations personnalisées dès votre page d'accueil, vous pouvez utiliser iGoogle. Vous retrouverez ainsi en temps réel vos actualités préférées, la météo, des jeux, etc. Pour aller plus loin, et retrouver automatiquement tous les articles parus récemment sur vos sites d'actualité préférés, utilisez Google Reader. Enfin, découvrez comment utiliser tous les services de traduction de Google.</description> + <nb_formations>61 formations</nb_formations> + <language>fr</language> + <publishDate>2012-05-21T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/475/small/Google_-_les_services_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/475/medium/Google_-_les_services_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/475/original/Google_-_les_services_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8921/medium/8921.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8906/medium/8906.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8914/medium/8914.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8911/medium/8911.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8940/medium/8940.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>476</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/476</link> + <titre>Google Chrome 19</titre> + <duree>2h11</duree> + <description>Dans ce parcours de formation, vous allez apprendre à utiliser toutes les fonctionnalités du navigateur de Google. Retrouvez tous les outils que vous avez l'habitude d'utiliser avec d'autres navigateurs, et découvrez les particularités de Google Chrome. Personnalisez ensuite votre navigateur grâce aux thèmes et aux extensions que vous pouvez télécharger depuis Chrome Web Store. Vous pourrez ainsi retrouver vos flux d'actualité ou encore vérifier vos e-mails. Pour les utilisateurs plus avancés, Google Chrome met l'accent sur le partage des données : apprenez à synchroniser vos navigateurs sur plusieurs appareils, ou à mettre vos imprimantes en réseau avec un simple compte Google.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2012-05-22T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/476/small/google_chrome_19_logo__27768_0.jpeg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/476/medium/google_chrome_19_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/476/original/google_chrome_19_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8971/medium/8971.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8962/medium/8962.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8948/medium/8948.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8959/medium/8959.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8961/medium/8961.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>478</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/478</link> + <titre>Antidote HD v6</titre> + <duree>2h11</duree> + <description>Ce parcours de formation couvre l'ensemble des fonctionnalités d'Antidote HD v6. Découvrez comment utiliser les 12 grands dictionnaires d'Antidote HD v6 pour découvrir de nouveaux mots, préciser leur sens, enrichir le vocabulaire d'un texte. Vous pourrez par exemple retrouver tous les mots de la même famille, les synonymes, les antonymes, etc. Si vous avez le moindre doute, retrouvez rapidement toutes les locutions, et de nombreuses citations, à partir d'une recherche par mot. Consultez la conjugaison de n'importe quel verbe, à n'importe quel temps. Antidote HD v6 s'intègre dans vos logiciels de traitement de texte préférés : Wordpad, Word (et dans toute la suite Microsoft Office), LibreOffice. Vous pourrez ainsi corriger vos textes au moment de la rédaction. Programmez les règles d'orthographe employées, pour la ponctuation, les majuscules, le genre et le nombre des locuteurs. Vous pourrez même utiliser des réglages spécifiques par région (Québec, Belgique, Suisse, etc.)</description> + <nb_formations>26 formations</nb_formations> + <language>fr</language> + <publishDate>2012-05-22T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/478/small/antidote_logo_ipad__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/478/medium/antidote_logo_ipad__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/478/original/Antidote_HD_v6_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9063/medium/9063.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9070/medium/9070.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9063/medium/9063.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9068/medium/9068.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9071/medium/9071.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>479</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/479</link> + <titre>Skype 5.9</titre> + <duree>1h43</duree> + <description>Dans ce programme pédagogique, vous apprendrez à utiliser toutes les fonctionnalité de Skype 5.9. Vous verrez d'abord comment créer un compte et installer le logiciel. Ensuite, prenez en main cette messagerie instantanée en découvrant comment son interface est organisée. Skype 5.9 vous permet d'ajouter très simplement vos correspondants à l'aide de leur pseudo, leur e-mail ou encore vous pouvez les retrouver rapidement avec leur nom et leur prénom sur l'annuaire. Vous pourrez ensuite communiquer à l'écrit, à l'oral et réaliser des vidéos-conférences avec vos contacts. Skype 5.9 intègre aussi de nombreuses fonctionnalités telles que le partage d'écran, la boîte vocale, le renvoi d'appel sur votre numéro de téléphone...</description> + <nb_formations>21 formations</nb_formations> + <language>fr</language> + <publishDate>2012-05-30T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/479/small/skype_5.9_logo__27768_0.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/479/medium/skype_5.9_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/479/original/Skype_5.9_vignette__27768_0.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9083/medium/9083.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9079/medium/9079.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9076/medium/9076.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9077/medium/9077.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9086/medium/9086.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>480</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/480</link> + <titre>Adobe Reader X</titre> + <duree>1h33</duree> + <description>Dans ce parcours pédagogique, vous allez apprendre à utiliser le logiciel Adobe Reader X. Vous verrez dans un premier temps comment lire un fichier PDF. Ensuite, vous pourrez récupérer les éléments de votre document pour les utiliser par la suite dans d'autres applications. Vous découvrirez également qu'Adobe Reader X vous permet de commenter votre document en ajoutant des annotations et en surlignant du texte. Par ailleurs, personnalisez et qualifiez d'un simple clic vos commentaires pour faciliter le travail collaboratif. Enfin, apprenez à personnaliser votre logiciel : vous pourrez ainsi adapter l'interface, l'affichage et les barres d'outils selon vos besoins.</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2012-06-07T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/480/small/Adobe_Reader_10.1.3_logo__27768_0.jpeg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/480/medium/Adobe_Reader_10.1.3_logo__27768_0.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/480/original/Adobe_reader_X_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9094/medium/9094.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9101/medium/9101.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9105/medium/9105.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9094/medium/9094.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9098/medium/9098.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>481</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/481</link> + <titre>LibreOffice Calc 3.5</titre> + <duree>6h24</duree> + <description>Vous allez retrouver dans ce parcours de formation l'ensemble des fonctionnalités de LibreOffice Calc 3.5. Ce tableur vous permettra de gérer des données chiffrées, monétaires, des pourcentages mais aussi des données textuelles, des dates, et des liens hypertextes. LibreOffice Calc 3.5 est un logiciel gratuit, en constant développement, et compatible avec les autres tableurs, comme Excel par exemple. Vous pourrez créer des tableaux, personnaliser leur apparence, mais trier, filtrer les données, ou encore afficher des sous-totaux. Vous verrez comment créer des graphiques et des tableaux croisés dynamiques, afin de mieux présenter et analyser vos données. Ces outils se mettent à jour en temps réel avec l'évolution des données insérées, ils permettent de réorganiser et de regrouper automatiquement les données. Si vous souhaitez appliquer des calcul sur des plages de données, apprenez à utiliser les formules de LibreOffice Calc 3.5. Vous pourrez ainsi additionner, diviser, convertir automatiquement des plages de données. Mais vous pourrez aller plus loin avec des formules complexes qui permettent d'effectuer des calculs sous condition, des recherches et des remplacements dans plusieurs listes, selon les critères que vous définissez. Apprenez enfin à utiliser LibreOffice Calc 3.5 dans le cadre d'un travail collaboratif. De nombreux outils vous permettront de partager vos document, de les envoyer par e-mail, et de les protéger avec des mots de passe. Vous pourrez gérer les modifications apportées par vos collègues, et communiquer avec eux en laissant des commentaires directement dans le document, mais sans alourdir le contenu des cellules.</description> + <nb_formations>91 formations</nb_formations> + <language>fr</language> + <publishDate>2012-06-13T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/481/small/Libreoffice_Calc_3.5_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/481/medium/Libreoffice_Calc_3.5_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/481/original/LibreOfficeCalc3vignette.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9136/medium/9136.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9129/medium/9129.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9179/medium/9179.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9141/medium/9141.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9150/medium/9150.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>482</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/482</link> + <titre>VLC Media Player 2</titre> + <duree>1h35</duree> + <description>Avec ce parcours de formation, apprenez à utiliser toutes les fonctionnalités du lecteur multimédia VLC Media Player 2. Vous verrez d'abord comment télécharger et installer le logiciel. Ensuite, retrouvez les fonctionnalités classiques d'un lecteur multimédia telles que la lecture d'un DVD et la gestion du son. Vous pourrez après ajouter et ranger vos fichiers mutilmédia dans la bibliothèque de VLC Média Player. Enfin, vous verrez aussi comment configurer VLC 2.0 afin d'adapter ce logiciel à vos besoins. Vous pourrez comme cela personnaliser le logiciel en modifiant les barres de lecture, en choisissant un thème et en ajoutant des barres d'outils.</description> + <nb_formations>19 formations</nb_formations> + <language>fr</language> + <publishDate>2012-06-07T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/482/small/vlc_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/482/medium/vlc_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/482/original/vlc_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9216/medium/9216.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9224/medium/9224.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9230/medium/9230.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9225/medium/9225.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9229/medium/9229.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>483</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/483</link> + <titre>Windows Live Messenger 2011</titre> + <duree>2h21</duree> + <description>Dans ce programme pédagogique, vous apprendrez à utiliser toutes les fonctionnalité de Windows Live Messenger 2011. Vous verrez d'abord comment installer le logiciel et créer votre identifiant Windows Live. Ensuite, prenez en main cette messagerie instantanée en découvrant comment son interface est organisée. Windows Live Messenger 2011 vous permet d'ajouter très simplement vos correspondants à l'aide de leur e-mail ou encore vous pouvez les retrouver rapidement avec leur nom et leur prénom sur l'annuaire en ligne de Messenger. Vous pourrez ensuite communiquer à l'écrit, à l'oral et réaliser des vidéos-conférences avec vos contacts. Windows Live Messenger intègre aussi d'autres fonctionnalités comme le partage de fichiers en mode diaporama et la demande d'assistance avec la prise de contrôle de l'ordinateur. Enfin, découvrez l'extension Messenger Plus! et apprenez à utiliser ses fonctionnalités principales.</description> + <nb_formations>32 formations</nb_formations> + <language>fr</language> + <publishDate>2012-06-14T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/483/small/Windows_Live_Messenger_2011_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/483/medium/Windows_Live_Messenger_2011_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/483/original/Windows_Live_Messenger_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9263/medium/9263.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9237/medium/9237.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9249/medium/9249.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9259/medium/9259.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9245/medium/9245.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>486</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/486</link> + <titre>Conférence Orange Pro</titre> + <duree>1h30</duree> + <description>La conférence Orange Pro est un service en ligne du cloud pro d'Orange qui permet d'organiser des conférences téléphoniques et de présenter des documents à distance. Vous verrez dans ce parcours de formation comment vous connecter une première fois, et comment organiser une première conférence. Vous pourrez accéder rapidement à vos conférences en utilisant une barre d'outil spécialement conçue pour Outlook. Ainsi, vous pourrez facilement basculer de vos e-mails à vos conférences. Enfin, découvrez comment partager des documents avec vos interlocuteurs en ligne. Vous pourrez ainsi leur communiquer et leur présenter divers documents de travail.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2012-06-22T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/486/small/conference_orange_pro_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/486/medium/conf_rence_orange_pro_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/486/original/COnference_Pro_Orange_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9324/medium/9324.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9321/medium/9321.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9330/medium/9330.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9325/medium/9325.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9323/medium/9323.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>487</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/487</link> + <titre>Ccleaner 3.19</titre> + <duree>0h45</duree> + <description>Ce parcours de formation vous fera découvrir les fonctionnalités de Ccleaner 3.19. Ce logiciel contient des outils diversifiés qui permettent d'optimiser le fonctionnement de votre ordinateur. Vous pourrez analyser et nettoyer votre système Windows. Vous pourrez également supprimer facilement les programmes que vous n'utilisez plus. Votre ordinateur gagnera ainsi en rapidité. Vous verrez aussi comment résoudre un certain nombre de problèmes que vous pouvez rencontrer avec votre ordinateur. Vous verrez enfin qu'il est possible de personnaliser le comportement de Ccleaner 3.19.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2012-06-18T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/487/small/Ccleaner_3.19_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/487/medium/Ccleaner_3.19_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/487/original/Ccleaner_3.19_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9340/medium/9340.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9341/medium/9341.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9339/medium/9339.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9344/medium/9344.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9338/medium/9338.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>489</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/489</link> + <titre>Blogger</titre> + <duree>3h19</duree> + <description>Blogger, service de Google, vous permet de créer gratuitement un Blog. Vous verrez comment rédiger vos messages en y ajoutant des contenus divers ( texte, image, son, vidéos). Vous apprendrez également à configurer votre blog afin qu'il fonctionne comme vous le souhaitez. Enfin, vous pourrez personnaliser complètement votre blog Blogger suivant vos goûts et les couleurs que vous appréciez.</description> + <nb_formations>40 formations</nb_formations> + <language>fr</language> + <publishDate>2012-07-01T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/489/small/Blogger_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/489/medium/Blogger_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/489/original/Blogger_vignette_.jpeg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9374/medium/9374.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9381/medium/9381.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9385/medium/9385.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9393/medium/9393.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9390/medium/9390.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>490</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/490</link> + <titre>WordPress 3.4</titre> + <duree>5h09</duree> + <description>Wordpress 3.4 vous permet de créer gratuitement un Blog. Vous verrez comment rédiger vos messages en y ajoutant des contenus divers ( texte, image, son, vidéos). Vous apprendrez aussi à créer et gérer vos différentes pages. Ensuite, découvrez comment personnaliser votre menu de navigation avec des sous-rubriques. De plus, avec Wordpress vous pourrez ajouter des utilisateurs afin de créer un blog collaboratif. Enfin, vous pourrez personnaliser complètement votre blog Wordpress selon vos préférences d'utilisation.</description> + <nb_formations>59 formations</nb_formations> + <language>fr</language> + <publishDate>2012-07-09T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/490/small/wordpress_120.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/490/medium/wordpress_120.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/490/original/Wordpress_vignette_.jpeg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9516/medium/9516.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9545/medium/9545.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9548/medium/9548.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9538/medium/9538.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9533/medium/9533.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>491</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/491</link> + <titre>LibreOffice Base 3.5</titre> + <duree>2h32</duree> + <description>LibreOffice Base 3.5 est le logiciel de gestion de bases de données de la suite LibreOffice 3.5. Ce parcours de formations reprend à zéro la création d'une base de données. Vous verrez comment créer plusieurs tables, les tableaux dans lesquels sont organisées les données. Pour remplir plus facilement vos tables, LibreOffice Base 3.5 vous permet de créer et de personnaliser des formulaires d'enregistrement. Vous pourrez ensuite créer des requêtes, qui permettent de récupérer les données de plusieurs tables, pour les croiser et relier les éléments communs. Les requêtes permettent aussi d'effectuer des calculs et de remplir automatiquement des colonnes. Enfin, apprenez à générer des rapports, c'est à dire des documents complétés automatiquement par le logiciel à partir de vos données.</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2012-07-03T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/491/small/libreoffice_base_3.5__logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/491/medium/libreoffice_base_3.5__logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/491/original/LibreOffice_base_3.5__vignette_.jpeg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9414/medium/9414.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9429/medium/9429.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9433/medium/9433.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9432/medium/9432.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9434/medium/9434.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>493</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/493</link> + <titre>Audacity 2</titre> + <duree>2h01</duree> + <description>Audacity 2 est un logiciel de montage et de mixage audio. Vous pourrez enregistrer vos propres pistes audio si vous possédez un micro. Vous pourrez ensuite mixer plusieurs pistes ensemble. Audacity 2 possède de nombreux effets, que vous pouvez paramétrer et appliquer facilement : tremolo, wawah, échos, etc. Vous verrez comment gérer le volume, la balance, les fréquence et les effets de plusieurs pistes audio. Une fois que votre projet est terminé, vous pouvez l'exporter dans plusieurs formats : mp3, wav, ogg, etc.</description> + <nb_formations>24 formations</nb_formations> + <language>fr</language> + <publishDate>2012-07-06T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/493/small/Audacity_2_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/493/medium/Audacity_2_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/493/original/Audacity_2_vignette_.jpeg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9573/medium/9573.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9570/medium/9570.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9566/medium/9566.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9572/medium/9572.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9569/medium/9569.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>494</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/494</link> + <titre>Jimdo</titre> + <duree>2h39</duree> + <description>Jimdo vous permet de créer sans difficulté un site Internet. Vous verrez comment insérer du texte, le mettre en forme, changer l'image de fond, ajouter des images, des vidéos, un plan Google Maps ... pour concevoir un site aux pages multiples et variées.</description> + <nb_formations>32 formations</nb_formations> + <language>fr</language> + <publishDate>2012-07-11T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/494/small/Jimdo.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/494/medium/Jimdo.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/494/original/Jimdo_vignette_.jpeg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9591/medium/9591.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9616/medium/9616.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9611/medium/9611.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9618/medium/9618.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9609/medium/9609.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>495</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/495</link> + <titre>YourCegid</titre> + <duree>0h58</duree> + <description>YourCegid Solos Devis Facturation est une application intégrée au Cloud Pro d'Orange. Vous pouvez ainsi y accéder à partir de la même interface que votre messagerie pro. Cette application vous permettra de gérer l'ensemble des informations concernant vos clients, les articles de votre catalogue, vos devis et vos factures. Ajoutez d'abord tous vos contacts. Vous pouvez les envoyer en bloc rapidement avec un fichier Excel, puis compléter les fiches avec des photos par exemple. Ajoutez ensuite tous vos articles. L'envoi en bloc est également disponible. L'application calcule automatiquement pour vous le prix TTC en fonction de votre prix fournisseur, de la marge que vous appliquez au produit, et du taux de TVA. Enfin, rédigez et mettez en pages vos devis et vos factures pour obtenir automatiquement un rendu professionnel. YourCegid Solos Devis Facturation propose des outils vous permettant de manipuler facilement ces documents. Vous pouvez les envoyer, les imprimer, transformer un devis en facture, une facture, en avoir, etc.</description> + <nb_formations>10 formations</nb_formations> + <language>fr</language> + <publishDate>2012-07-11T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/495/small/Yourcegid_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/495/medium/Yourcegid_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/495/original/YourCegid_vignette_.jpeg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9628/medium/9628.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9621/medium/9621.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9620/medium/9620.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9626/medium/9626.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9619/medium/9619.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>496</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/496</link> + <titre>LibreOffice Impress 3.5</titre> + <duree>5h29</duree> + <description>LibreOffice Impress 3.5 vous permet de réaliser un diaporama pour dynamiser votre présentation orale et la rendre efficace. Apprenez à utiliser les bases de ce logiciel : comment saisir du texte, créer des formes géométriques, animer des objets... Vous verrez également toutes les astuces à connaître pour utiliser au mieux le logiciel.</description> + <nb_formations>74 formations</nb_formations> + <language>fr</language> + <publishDate>2012-08-06T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/496/small/Libreoffice_presentation_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/496/medium/Libreoffice_presentation_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/496/original/LibreOffice_Impress_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9657/medium/9657.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9686/medium/9686.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9636/medium/9636.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9639/medium/9639.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9693/medium/9693.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>499</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/499</link> + <titre>WinZip 15</titre> + <duree>1h26</duree> + <description>Vous recevez en permanence des documents .zip ou .rar que vous ne parvenez pas à ouvrir ? Vous souhaitez pouvoir conserver des documents en réduisant leurs poids ? Il est temps pour vous de découvrir WinZip à l'aide de ce parcours de formation. Vous verrez comment installer le logiciel mais aussi comment décompresser ou compresser des fichiers avec WinZip. Vous apprendrez même à envoyer directement vos archives par e-mail depuis le logiciel ou encore à sécuriser vos documents en ajoutant un mot de passe.</description> + <nb_formations>17 formations</nb_formations> + <language>fr</language> + <publishDate>2012-08-07T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/499/small/WinZip.jpeg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/499/medium/WinZip.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/499/original/Winzip_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9889/medium/9889.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9893/medium/9893.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9901/medium/9901.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9887/medium/9887.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9891/medium/9891.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>501</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/501</link> + <titre>Excel 2007 (UK)</titre> + <duree>7h04</duree> + <description>Ce parcours pédagogique vous permettra de comprendre et d'utiliser Excel 2007 version anglaise sur votre ordinateur. Vous découvrirez que ce tableur est utile pour faire des calculs, vos comptes personnels ou pour mettre en place des reporting dans votre entreprise. Vous apprendrez tout ce qu'il faut savoir sur ce logiciel : l'insertion et la mise en forme de tableaux et de graphiques, la conception de formules ou l'utilisation de tableaux croisées dynamiques.</description> + <nb_formations>100 formations</nb_formations> + <language>fr</language> + <publishDate>2012-08-22T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/501/small/excel_2007_120jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/501/medium/excel_2007_120png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/501/original/Excel2007_uk_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9993/medium/9993.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9967/medium/9967.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9997/medium/9997.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10077/medium/10077.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9937/medium/9937.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>503</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/503</link> + <titre>Stockage pro par SugarSync</titre> + <duree>1h27</duree> + <description>SugarSync est une application du cloud Pro d'Orange, qui vous permettra de rendre vos fichiers accessibles sur n'importe quel appareil connecté à internet. Vous pourrez ainsi synchroniser des fichiers qui se trouvent sur plusieurs ordinateurs, mais aussi sur d'autres appareils : iPad, iPhone, Smartphone Android. Les fichiers synchronisés pourront être modifiés en ligne : les modifications seront répercutées pour les différents périphériques. Pour aller plus loin avec SugarSync, vous pouvez envoyer vos fichiers par e-mail et les partager avec vos contacts. SugarSync gère parfaitement les images : prenez des photos avec votre SmartPhone, partagez-les instantanément et publiez-les sur Facebook directement depuis l'interface de SugarSync.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2012-08-13T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/503/small/SugarSync_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/503/medium/SugarSync_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/503/original/SugarSync_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10123/medium/10123.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10153/medium/10153.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10143/medium/10143.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10129/medium/10129.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10131/medium/10131.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>505</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/505</link> + <titre>Mindjet 2012</titre> + <duree>6h49</duree> + <description>Mindjet 2012 vous permettra de créer et de gérer vos projets personnels ou professionnels. Ce logiciel est basé sur le "mind mapping" : vous pourrez donc organiser votre pensée selon des cartes. En effet, Mindjet 2012 propose de gérer différentes tâches et ressources afin de savoir rapidement combien de temps sera nécessaire pour la réalisation du projet. Ce programme vous permet également d'organiser des sessions de brainstorming et de réaliser des diagrammes analytiques type Forces Faiblesses Possibilités Menaces afin de prendre de meilleures décisions. Vous verrez également comment présenter vos maps de façon dynamique avec les différents modes d'affichage proposés par le logiciel.</description> + <nb_formations>88 formations</nb_formations> + <language>fr</language> + <publishDate>2012-09-10T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/505/small/mindjet.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/505/medium/mindjet.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/505/original/mindjet_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10403/medium/10403.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10317/medium/10317.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10365/medium/10365.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10261/medium/10261.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10299/medium/10299.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>507</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/507</link> + <titre>FreeMind 0.9</titre> + <duree>2h07</duree> + <description>FreeMind 0.9 est un logiciel gratuit qui vous permettra d'éditer des cartes mentales. En effet, FreeMind 0.9 propose de réaliser des cartes pour organiser votre pensée selon le "mind mapping". Vous verrez comment créer des noeuds avec plusieurs niveaux de hiérarchie. Ensuite, vous apprendrez à mettre en forme et à enrichir votre carte. Vous pouvez même partager votre document et activer le suivi des modifications.</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2012-09-17T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/507/small/FreeMind_120jpeg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/507/medium/FreeMind.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/507/original/FreeMind_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10543/medium/10543.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10533/medium/10533.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10523/medium/10523.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10575/medium/10575.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10563/medium/10563.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>509</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/509</link> + <titre>Access 2007 (UK)</titre> + <duree>4h42</duree> + <description>Ce parcours de formations recouvre l'ensemble des fonctionnalités d'Access 2007, avec une interface en anglais. Access 2007 est le logiciel de gestion de bases de données de la suite Office 2007. Ces formations reprennent à zéro la création d'une base de données. Vous verrez comment créer plusieurs tables, les tableaux dans lesquels sont organisées les données. Pour remplir plus facilement vos tables, Access 2007 vous permet de créer et de personnaliser des formulaires d'enregistrement. Vous pourrez ensuite créer des requêtes, qui permettent de récupérer les données de plusieurs tables, pour les croiser et relier les éléments communs. Les requêtes permettent aussi d'effectuer des calculs et de remplir automatiquement des colonnes. Enfin, apprenez à générer des rapports : des documents complétés automatiquement par le logiciel à partir de vos données.</description> + <nb_formations>58 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-01T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/509/small/Access_2007_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/509/medium/Access_2007_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/509/original/Access_2007_uk_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10675/medium/10675.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10595/medium/10595.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10665/medium/10665.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10587/medium/10587.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10681/medium/10681.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>511</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/511</link> + <titre>Kaspersky Internet Security 2013</titre> + <duree>2h52</duree> + <description>Kaspersky Internet Security est un logiciel antivirus qui protège votre ordinateur en temps réel contre les virus, spyware, chevaux de Troie et autres logiciels malveillants. Cet antivirus lutte également contre le courrier indésirable. Vous verrez comment gérer ce programme afin d'être sûr que vous n'avez aucun virus sur votre ordinateur. Apprenez à garder la base de signatures de virus constamment à jour. Découvrez comment programmer des analyses intelligentes régulièrement. Luttez contre le spam directement dans votre logiciel de messagerie. Établissez même un contrôle parental sur les sessions de vos enfants.</description> + <nb_formations>34 formations</nb_formations> + <language>fr</language> + <publishDate>2012-09-21T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/511/small/kaspersky.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/511/medium/kaspersky.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/511/original/Kaspersky2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10759/medium/10759.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10741/medium/10741.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10753/medium/10753.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10719/medium/10719.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10703/medium/10703.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>513</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/513</link> + <titre>Norton Internet Security 2013</titre> + <duree>2h37</duree> + <description>Norton Internet Security 2013 protège votre ordinateur des virus, des logiciels espions et bien plus encore ! Vous verrez également qu'il est possible d'utiliser un contrôle parental afin de restreindre l'accès à l'ordinateur pour vos enfants. Cet antivirus vous protège également en temps réel contre le spam. Vous pourrez ainsi définir des règles pour bloquer et autoriser des personnes à vous envoyer des emails.</description> + <nb_formations>32 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-01T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/513/small/Norton2013.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/513/medium/norton2013_png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/513/original/Norton2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10791/medium/10791.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10811/medium/10811.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10793/medium/10793.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10773/medium/10773.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/10795/medium/10795.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>517</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/517</link> + <titre>Avast 7</titre> + <duree>1h31</duree> + <description>Avast 7 est un antivirus gratuit qui protège votre ordinateur en temps réel contre les virus, spyware, chevaux de Troie et autres logiciels malveillants. Vous verrez comment gérer ce programme afin d'être sûr que vous n'avez aucun virus sur votre ordinateur. Apprenez à garder la base de données de virus constamment à jour. Découvrez comment programmer des scans automatiques. Vous verrez aussi comment gérer les notifications du logiciel.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-04T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/517/small/avast7_120_jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/517/medium/avast7.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/517/original/avast7_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11177/medium/11177.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11173/medium/11173.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11171/medium/11171.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11179/medium/11179.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11153/medium/11153.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>519</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/519</link> + <titre>BitDefender Total Security 2013</titre> + <duree>2h37</duree> + <description>Bitdefender Total Security 2013 est un antivirus payant mais vous disposez de 30 jours pour l'essayer. Vous pourrez ainsi vous protéger face aux virus et autres logiciels malveillants. Pour cela vous verrez comment configurer les fonctionnalités proposées, que ce soit pour l'antivirus, l'antispam ou encore le pare-feu. Bitdefender Total Security 2013 possède également différents outils permettant d'améliorer l'utilisation de son ordinateur. Ainsi il est possible d'optimiser les performances de son PC, de protéger ses données à l'aide d'un coffre-fort...</description> + <nb_formations>30 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-10T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/519/small/Bitdefender_2013_120jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/519/medium/Bitdefender_2013_120_png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/519/original/BItdefender_2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11227/medium/11227.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11251/medium/11251.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11217/medium/11217.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11205/medium/11205.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11223/medium/11223.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>525</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/525</link> + <titre>Avira AntiVir 2013</titre> + <duree>1h23</duree> + <description>Avira Antivirus 2013 est un antivirus gratuit qui protège votre ordinateur en temps réel contre les virus, spyware, chevaux de Troie et autres logiciels malveillants. Vous verrez comment gérer ce programme afin d'être sûr que vous n'avez aucun virus sur votre ordinateur. Apprenez à garder la base de données de virus constamment à jour. Découvrez comment programmer des scans automatiques. Vous verrez aussi comment gérer les notifications du logiciel.</description> + <nb_formations>15 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-12T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/525/small/avira_120jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/525/medium/avira_120png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/525/original/avira_2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11409/medium/11409.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11415/medium/11415.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11417/medium/11417.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11433/medium/11433.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11423/medium/11423.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>527</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/527</link> + <titre>AVG Anti-Virus 2013</titre> + <duree>1h20</duree> + <description>AVG Anti-Virus 2013 est un antivirus gratuit qui protège votre ordinateur en temps réel contre les virus, spyware, chevaux de Troie et autres logiciels malveillants. Vous verrez comment gérer ce programme afin d'être sûr que vous n'avez aucun virus sur votre ordinateur. Apprenez à garder la base de données de virus constamment à jour. Découvrez comment programmer des analyses automatiques. Vous verrez aussi comment gérer les notifications du logiciel.</description> + <nb_formations>16 formations</nb_formations> + <language>fr</language> + <publishDate>2012-10-15T00:00:00+02:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/527/small/AVG_anti-virus_2013_120jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/527/medium/AVG_120png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/527/original/AVG_anti-virus2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11475/medium/11475.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11461/medium/11461.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11477/medium/11477.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11457/medium/11457.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11483/medium/11483.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>529</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/529</link> + <titre>Internet Explorer 10</titre> + <duree>3h19</duree> + <description>Internet Explorer 10 étant tout simplement le navigateur Internet le plus utilisé au monde, vous allez acquérir, grâce à ce parcours de formation, une maîtrise complète de cette nouvelle version. Depuis les bases de la navigation aux paramétrages plus complexes pour naviguer en toute sécurité, vous allez découvrir toutes les possibilités offertes par Internet Explorer 10. Rapide et plus fluide, celui-ci a été pensé de façon à s'adapter parfaitement au tactile de Windows 8. L'accès à la navigation est bien plus rapide grâce à sa zone de saisie unique, qui regroupe la barre d'adresse et la barre de recherche. Aussi, votre sécurité et votre confidentialité sont renforcées grâce à des outils de fonctionnalités, qui vous permettent de lutter contre le tracking.</description> + <nb_formations>33 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-13T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/529/small/internet_explorer_10_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/529/medium/internet_explorer_10_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/529/original/IE10.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11529/medium/11529.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11523/medium/11523.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11543/medium/11543.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11507/medium/11507.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11521/medium/11521.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>533</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/533</link> + <titre>Mac OS X Mountain Lion</titre> + <duree>11h42</duree> + <description>Mac OS X Mountain Lion est le nouveau système d'Apple. Vous découvrirez dans ce parcours l'intégralité de ses fonctionnalités. Mac Os X Mountain Lion innove sur de nombreux plans, et conserve des fonctionnalités fondamentales qui ont fait le succès des précédents systèmes d'exploitation d'Apple. Mac OS X Mountain Lion développe ainsi de nouvelles applications telles que la prise de notes avec Notes et la création de rappels. De plus, Mac OS X Mountain Lion intègre désormais la reconnaissance vocale pour saisir du texte avec votre voix et la reconnaissance d'écriture pour intégrer des croquis édités à partir de votre tablette graphique. Vous allez découvrirez Launchpad, l'application qui donne accès à toutes les autres applications dans une interface renouvelée. Le Finder est toujours présent, avec des outils très efficaces. Le coup d'oeil permet de consulter rapidement vos documents, mais aussi de créer de véritables diaporamas. Spotlight est totalement paramétrable pour retrouver vos fichiers selon des critères précis et combinés. Vous pourrez aussi être informé sur les événements à venir avec le centre de notification intégré à la barre des menus. Par la suite, vous verrez comment synchroniser vos données sur plusieurs mac avec le service iCloud.</description> + <nb_formations>135 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-05T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/533/small/Mac_OS_X_Mountain_Lion_120jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/533/medium/Mac_OS_X_Mountain_Lion_120png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/533/original/Mac_OS_X_mountain_lion_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6758/medium/6758.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6723/medium/6723.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6791/medium/6791.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6724/medium/6724.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/6735/medium/6735.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>535</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/535</link> + <titre>Safari 6</titre> + <duree>2h30</duree> + <description>Safari 6, est la dernière version du navigateur développé par Apple. Grâce à ses nouvelles fonctionnalités avancées, safari met l'accent sur la navigation. Vos recherches se réalisent désormais de façon plus précises et plus rapides. De même, son interface inédite vous propose maintenant un affichage de vos onglets totalement intuitif grâce à la présence des gestes Multi-Touch. Aussi,vous avez toujours la possibilité de publier des pages web sur Twitter ou Facebook, et les partager avec Mail ou Messages directement depuis Safari. Différentes fonctionnalités telles que la lecture hors ligne et iCloud vous permettent d'accéder encore plus facilement aux pages et articles qui vous intéressent. Ce navigateur a pris du galon, et ce parcours de formation vous aidera à percer tous les secrets de ses nouvelles fonctionnalités.</description> + <nb_formations>32 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-13T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/535/small/Safari_6_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/535/medium/Safari_6_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/535/original/Safari_6_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11811/medium/11811.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11795/medium/11795.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12039/medium/12039.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11797/medium/11797.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11809/medium/11809.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>537</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/537</link> + <titre>OpenOffice Writer 3.4</titre> + <duree>6h17</duree> + <description>Ce parcours de formation présente l'ensemble des fonctionnalités d'Apache OpenOffice Writer 3.4. Vous verrez comment rédiger et mettre en page des documents complexes allant de la lettre de motivation au mémoire de master, en passant par le dossier de presse. Vous apprendrez à insérer des illustrations, à créer des schémas et des graphiques. Vous pourrez aussi générer rapidement et automatiquement des informations bibliographiques, des tables des matières, des enveloppes pour de nombreux destinataires. Vous verrez enfin comment vous approprier au mieux l'interface d'Apache OpenOffice Writer 3.4, qui est entièrement personnalisable.</description> + <nb_formations>87 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-05T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/537/small/open_office_writer_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/537/medium/open_office_writer_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/537/original/OpenOffice_Writer_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8101/medium/8101.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8136/medium/8136.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8090/medium/8090.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8117/medium/8117.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/8104/medium/8104.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>539</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/539</link> + <titre>OpenOffice Base 3.4</titre> + <duree>2h39</duree> + <description>OpenOffice Base 3.5 est le logiciel de gestion de bases de données de la suite LibreOffice 3.5. Ce parcours de formations reprend à zéro la création d'une base de données. Vous verrez comment créer plusieurs tables, les tableaux dans lesquels sont organisées les données. Pour remplir plus facilement vos tables, OpenOffice Base 3.5 vous permet de créer et de personnaliser des formulaires d'enregistrement. Vous pourrez ensuite créer des requêtes, qui permettent de récupérer les données de plusieurs tables, pour les croiser et relier les éléments communs. Les requêtes permettent aussi d'effectuer des calculs et de remplir automatiquement des colonnes. Enfin, apprenez à générer des rapports, c'est à dire des documents complétés automatiquement par le logiciel à partir de vos données.</description> + <nb_formations>31 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-05T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/539/small/Openoffice_Base_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/539/medium/Openoffice_Base_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/539/original/OpenOffice_Base_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9427/medium/9427.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9431/medium/9431.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9423/medium/9423.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11863/medium/11863.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9415/medium/9415.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>541</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/541</link> + <titre>OpenOffice Calc 3.4</titre> + <duree>6h31</duree> + <description>Vous allez retrouver dans ce parcours de formation l'ensemble des fonctionnalités de OpenOffice Calc 3.5. Ce tableur vous permettra de gérer des données chiffrées, monétaires, des pourcentages mais aussi des données textuelles, des dates, et des liens hypertextes. OpenOffice Calc 3.5 est un logiciel gratuit, en constant développement, et compatible avec les autres tableurs, comme Excel par exemple. Vous pourrez créer des tableaux, personnaliser leur apparence, mais trier, filtrer les données, ou encore afficher des sous-totaux. Vous verrez comment créer des graphiques et des tableaux croisés dynamiques, afin de mieux présenter et analyser vos données. Ces outils se mettent à jour en temps réel avec l'évolution des données insérées, ils permettent de réorganiser et de regrouper automatiquement les données. Si vous souhaitez appliquer des calcul sur des plages de données, apprenez à utiliser les formules de OpenOffice Calc 3.5. Vous pourrez ainsi additionner, diviser, convertir automatiquement des plages de données. Mais vous pourrez aller plus loin avec des formules complexes qui permettent d'effectuer des calculs sous condition, des recherches et des remplacements dans plusieurs listes, selon les critères que vous définissez. Apprenez enfin à utiliser OpenOffice Calc 3.5 dans le cadre d'un travail collaboratif. De nombreux outils vous permettront de partager vos document, de les envoyer par e-mail, et de les protéger avec des mots de passe. Vous pourrez gérer les modifications apportées par vos collègues, et communiquer avec eux en laissant des commentaires directement dans le document, mais sans alourdir le contenu des cellules.</description> + <nb_formations>92 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-05T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/541/small/open_office_calc_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/541/medium/open_office_calc_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/541/original/OpenOffice_Calc_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9161/medium/9161.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9149/medium/9149.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9182/medium/9182.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9130/medium/9130.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9167/medium/9167.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>543</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/543</link> + <titre>OpenOffice Impress 3.4</titre> + <duree>5h37</duree> + <description>OpenOffice Impress 3.5 vous permet de réaliser un diaporama pour dynamiser votre présentation orale et la rendre efficace. Apprenez à utiliser les bases de ce logiciel : comment saisir du texte, créer des formes géométriques, animer des objets... Vous verrez également toutes les astuces à connaître pour utiliser au mieux le logiciel.</description> + <nb_formations>75 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-05T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/543/small/open_office_impress_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/543/medium/open_office_impress_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/543/original/OpenOffice_Impress_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9634/medium/9634.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9680/medium/9680.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9671/medium/9671.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9687/medium/9687.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/9695/medium/9695.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>545</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/545</link> + <titre>Outlook 2013</titre> + <duree>6h43</duree> + <description>Outlook 2013 est un client de messagerie. Vous pourrez ainsi rapidement recevoir des e-mails avec plusieurs comptes et répondre à vos correspondants. Si vous gérez de nombreux messages, vous verrez comment les ranger dans des dossiers et les retrouver rapidement avec le moteur de recherche intégré au logiciel. Outlook 2013 vous permet d'automatiser un grand nombre de tâches : vous pourrez ainsi mettre de côté le courrier indésirable. Apprenez à utiliser le carnet d'adresse pour gérer vos contact, les partager, et préparer des groupes de diffusion. Apprenez à organiser vos tâches quotidiennes selon les échéances et les niveaux de priorité. Le calendrier de Outlook 2013 vous permettra de planifier vos événements et d'organiser des réunions.</description> + <nb_formations>86 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-20T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/545/small/outlook_2013_120jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/545/medium/outlook_2013_120png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/545/original/Outlook2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11987/medium/11987.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11989/medium/11989.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/11995/medium/11995.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12005/medium/12005.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12023/medium/12023.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>547</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/547</link> + <titre>Opera 12</titre> + <duree>2h47</duree> + <description>Opera 12 est la dernière version du navigateur développé par OperaSoftware. Dans un premier temps vous pourrez apprendre à naviguer très simplement avec plusieurs pages internet. Mais ce parcours de formation vous propose aussi de faire le tour de ses nouvelles fonctionnalités, que vous allez apprendre à utiliser. Vous pouvez ainsi personnaliser l'interface de votre navigateur grâce aux thèmes disponibles, ou encore installer de nouvelles extensions. La barre d'adresse a été retravaillée, vous proposant plus de suggestions, et vous offrant aussi la possibilité de créer rapidement des adresses courtes. Enfin, Opera 12 met l'accent sur une navigation plus sûre, par exemple avec l'apparition de la fonction Do Not track qui demande aux sites Web de ne plus suivre votre trace sur la toile.</description> + <nb_formations>33 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-19T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/547/small/opera_12_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/547/medium/opera_12_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/547/original/Opera_12_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12063/medium/12063.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12071/medium/12071.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12047/medium/12047.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12055/medium/12055.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12069/medium/12069.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>549</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/549</link> + <titre>Excel 2013</titre> + <duree>13h28</duree> + <description>Vous allez retrouver dans ce parcours de formation l'ensemble des fonctionnalités de Excel 2013, le tableur de la nouvelle suite Office. Vous pourrez ainsi gérer des données chiffrées, monétaires, des pourcentages mais aussi des données textuelles, des dates, et des liens hypertextes. Vous pourrez créer des tableaux, personnaliser leur apparence, mais aussi trier, filtrer les données, ou encore afficher des sous-totaux. Vous verrez comment créer des graphiques et des tableaux croisés dynamiques, afin de mieux présenter et analyser vos données. De nouvelles fonctionnalités de la version 2013 permettent de remplir des tableaux et de générer des graphiques instantanément. Vous verrez comment effectuer des calculs simples et complexes, faisant référence à de nombreuses cellules. Vous verrez aussi comment utiliser des fonctions simples, puis comment rédiger des formules complexes en combinant les fonctions. Vous pourrez ainsi notamment effectuer des calculs sous condition, des recherches et des remplacements dans plusieurs listes, selon les critères que vous définissez. Apprenez enfin à utiliser Excel 2013 dans le cadre d'un travail collaboratif. De nombreux outils vous permettront de partager vos document, de les envoyer par e-mail, et de les protéger avec des mots de passe. Vous pourrez gérer les modifications apportées par vos collègues, et communiquer avec eux en laissant des commentaires directement dans le document, mais sans alourdir le contenu des cellules.</description> + <nb_formations>156 formations</nb_formations> + <language>fr</language> + <publishDate>2012-12-07T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/549/small/Excel_2013_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/549/medium/Excel_2013_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/549/original/Excel_2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12227/medium/12227.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12323/medium/12323.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12417/medium/12417.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12277/medium/12277.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12229/medium/12229.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>551</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/551</link> + <titre>Paint Windows 8</titre> + <duree>1h23</duree> + <description>Paint (Windows 8) est un programme graphique permettant de créer des dessins simples ou plus élaborés. Vous pouvez aussi utiliser Paint pour travailler sur des images. Celui-ci dispose de nombreuses fonctionnalités basiques, que vous allez pouvoir utiliser pour créer des formes, des tracés, de nouvelles couleurs, ou encore des zones de texte. Aussi, ce logiciel pourra vous être très utile pour redimensionner des images ou des dessins, pour les déplacer et les faire pivoter. Enfin, découvrez les différentes possibilités de l'outils de sélection, très utile si vous souhaitez modifier une zone en particulier.</description> + <nb_formations>18 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-26T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/551/small/paint_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/551/medium/paint_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/551/original/Paint_W8_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12539/medium/12539.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12527/medium/12527.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12541/medium/12541.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12523/medium/12523.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12545/medium/12545.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>555</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/555</link> + <titre>OneNote 2013</titre> + <duree>4h14</duree> + <description>OneNote 2013 est un logiciel de prise de notes qui vous permettra d'organiser tous vos projets. Apprenez à utiliser les bases de ce logiciel : comment saisir du texte, dessiner des schémas, annoter des documents... Vous verrez également toutes les astuces à connaître pour utiliser au mieux le logiciel.</description> + <nb_formations>49 formations</nb_formations> + <language>fr</language> + <publishDate>2012-11-30T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/555/small/OneNote-2013.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/555/medium/OneNote-2013.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/555/original/OneNote2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12795/medium/12795.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12723/medium/12723.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12741/medium/12741.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12775/medium/12775.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12811/medium/12811.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>557</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/557</link> + <titre>WordPad (Windows 8)</titre> + <duree>1h46</duree> + <description>WordPad est un logiciel de traitement de texte, présent par défaut dans les versions de Windows à partir de 95. Grâce à ce logiciel vous pourrez mettre en forme vos documents avec des fonctionnalités basiques, afin de modifier le style ou encore la police de votre texte par exemple. La présence d'une barre d'outils rapide personnalisable et du ruban vous offre un accès plus rapide aux différentes fonctionnalités proposées. Aussi, WordPad vous permet d'insérer des images dans vos documents, directement depuis votre PC, votre navigateur, ou même depuis le logiciel Paint. Enfin, une fois votre document terminé, vous avez la possibilité de l'envoyer directement par mail, ou encore de l'imprimer avec avoir paramétré sa mise en page.</description> + <nb_formations>24 formations</nb_formations> + <language>fr</language> + <publishDate>2012-12-03T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/557/small/WordPad_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/557/medium/WordPad_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/557/original/WordPad_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12849/medium/12849.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12859/medium/12859.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12829/medium/12829.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12865/medium/12865.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12867/medium/12867.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>559</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/559</link> + <titre>Toast Titanium 11</titre> + <duree>1h52</duree> + <description>Roxio Toast Titanium, logiciel de gravure de qualité, revient sur Mac dans une version 11 et propose de nouvelles fonctionnalités. Au programme, une nouvelle interface graphique, la synchronisation de vos données, ou encore de nouvelles options de partage sur le Web via Facebook ou Youtube. Apprenez aussi à utiliser d'autres logiciels proposés par Toast 11 Titanium afin de personnaliser vos jaquettes. Simple à utiliser mais très complet à la fois, même les plus exigeants trouveront leur compte dans cette nouvelle version, à l'aise sur une multitude de supports possibles.</description> + <nb_formations>20 formations</nb_formations> + <language>fr</language> + <publishDate>2012-12-10T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/559/small/Toast_11_Titanium_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/559/medium/Toast_11_Titanium_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/559/original/Toast_11_Titanium_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12967/medium/12967.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12995/medium/12995.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12985/medium/12985.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12979/medium/12979.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/12973/medium/12973.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>563</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/563</link> + <titre>Visio 2013</titre> + <duree>5h57</duree> + <description>Microsoft Visio 2013 vous permet de concevoir des diagrammes très variés. Pour cela, il intègre un grand nombre de formes prédéfinies ainsi que différentes fonctionnalités très utiles. Vous pourrez créer un organigramme d'une entreprise, un plan d'aménagement d'une maison ou encore une carte géographique. Vous verrez d'abord comment insérer et organiser des pages. Puis vous apprendrez à créer des éléments plus complexes : zones de texte, image, graphiques, tableaux... Les pages peuvent ensuite être personnalisées avec des thèmes de couleurs.\r\nVisio 2013 vous permet également d'exploiter les données d'un autre document ou encore de créer différents rapports avec vos diagrammes. Ce logiciel favorise aussi le travail collaboratif : vous pourrez facilement envoyer vos présentations par e-mail, partager vos diagrammes en ligne, ajouter des commentaires pour vos collègues, etc.</description> + <nb_formations>63 formations</nb_formations> + <language>fr</language> + <publishDate>2012-12-17T00:00:00+01:00</publishDate> + <publishYear>2012</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/563/small/Visio-2013.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/563/medium/Visio-2013.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/563/original/visio2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13099/medium/13099.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13123/medium/13123.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13073/medium/13073.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13135/medium/13135.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13075/medium/13075.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>565</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/565</link> + <titre>Roxio Creator NXT</titre> + <duree>2h13</duree> + <description>Roxio Creator NXT est une suite multimedia qui revient dans cette nouvelle version avec une amélioration de ses fonctionnalités pour préserver et partager vos souvenirs. Creator inclut de nouvelles fonctionnalités plus performantes, pour vos photos, musiques et données. Capturez, convertissez, montez et partagez vos vidéos sur pratiquement n'importe quel appareil (ordinateur, tablette, smartphone, ...). Apportez votre touche de créativité avec la fonctionnalité de retouche photo, la table de montage de vidéos ou encore les réglages audios pour la musqiue.</description> + <nb_formations>27 formations</nb_formations> + <language>fr</language> + <publishDate>2013-01-07T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/565/small/Roxio_creator_NXT_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/565/medium/Roxio_creator_NXT_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/565/original/Roxio_Creator_NXT_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13217/medium/13217.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13207/medium/13207.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13197/medium/13197.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13201/medium/13201.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13215/medium/13215.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>573</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/573</link> + <titre>ACDSee 15</titre> + <duree>3h35</duree> + <description>ACDSee 15 est un logiciel très complet qui vous permet à la fois d'organiser vos photos et de les afficher, de les modifier puis de les partager. Apprenez à organiser votre collection en fonction du contenu, de la date ou par région géographique, pour mieux vous y retrouver. Éditez les photos et ajoutez-leur des effets spéciaux originaux. Partagez-les ensuite avec qui vous voulez, via des supports originaux tels que des diaporamas, ou directement sur vos réseaux sociaux ou sur le site ACDSeeOnline.com. Facile à utiliser et puissante à la fois, cette version revient avec de nouvelles fonctionnalités de traitement photo, comme le bruit ou les yeux rouges, pour le plaisir de vos yeux!</description> + <nb_formations>37 formations</nb_formations> + <language>fr</language> + <publishDate>2013-01-07T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/573/small/ACDSee_15_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/573/medium/ACDSee_15_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/573/original/ACDSee_15_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13263/medium/13263.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13317/medium/13317.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13307/medium/13307.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13255/medium/13255.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13297/medium/13297.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>577</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/577</link> + <titre>Adobe Photoshop Elements 11</titre> + <duree>6h40</duree> + <description>Adobe Photoshop Elements 11 est un logiciel multimédia qui se divise en deux modes : le mode Organiseur et le mode Editeur. Le mode Organiseur vous permet de créer des albums photos. Grâce aux mots-clés ou encore à la fonctionnalité de reconnaissance des visages, vous pourrez organiser vos clichés rapidement. Le mode Editeur est un logiciel de retouche d'image, divisé en trois niveaux d'expertise, qui vous permettront d'accéder aux outils selon votre degré de maîtrise. Vous pouvez ainsi corriger les yeux rouges, modifier la luminosité et le contraste, ou encore recadrer l'image. Pour aller plus loin, il est aussi possible d'appliquer de nombreux effets à vos photos et d'insérer de nombreux éléments. Une fonctionnalité de partage est accessible dans les deux modes pour publier des photos sur internet.</description> + <nb_formations>76 formations</nb_formations> + <language>fr</language> + <publishDate>2013-01-17T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/577/small/adobe_photoshop_elements_11_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/577/medium/adobe_photoshop_elements_11_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/577/original/Adobe_Photoshop_Elements_11_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13717/medium/13717.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13665/medium/13665.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13671/medium/13671.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13777/medium/13777.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13765/medium/13765.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>579</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/579</link> + <titre>Project 2013</titre> + <duree>7h57</duree> + <description>Microsoft Project 2013 vous permettra de créer et de gérer vos projets personnels ou professionnels. En effet, Project 2013 propose de gérer différentes tâches et ressources afin de savoir rapidement combien de temps sera nécessaire pour la réalisation du projet. Ce programme vous permet, entre autres, de lier des tâches, de les regrouper ou encore de les auditer. De nouvelles fonctionnalités de la version 2013 permettent de créer des rapports sur vos projets directement dans l'application. Vous verrez comment illustrer vos rapports en ajoutant des images et des liens. Vous verrez comment créer des graphiques et des tableaux afin de mieux présenter et analyser vos données dans les rapports de Project 2013. Ce logiciel favorise aussi le travail collaboratif : vous pourrez facilement envoyer vos diagrammes par e-mail, partager vos projets en ligne, etc.</description> + <nb_formations>78 formations</nb_formations> + <language>fr</language> + <publishDate>2013-01-14T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/579/small/Project-2013.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/579/medium/Project-2013.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/579/original/project_2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13825/medium/13825.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13907/medium/13907.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13893/medium/13893.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13795/medium/13795.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13865/medium/13865.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>581</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/581</link> + <titre>Adobe Premiere Elements 11</titre> + <duree>3h44</duree> + <description>Adobe Premiere Elements 11 est un logiciel de montage dans lequel vous allez pouvoir importer différents fichiers multimédias (vidéos, images, musiques,...). L'interface a été totalement repensée avec l'apparition de deux modes: le mode Rapide et le mode Expert, que vous allez utiliser selon votre degré d'expertise.Vous pourrez ensuite monter ces éléments ensemble à l'aide de nombreux outils (transitions, insertion de graphismes,...) et de nouveaux effets disponibles, tel que le remappage temporel. Vous pouvez aussi leur appliquer des corrections. Il est désormais possible de partager vos vidéos sur Vimeo.</description> + <nb_formations>45 formations</nb_formations> + <language>fr</language> + <publishDate>2013-01-29T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/581/small/Adobe_Premiere_Elements_11.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/581/medium/Adobe_Premiere_Elements_11.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/581/original/Adobe_Premiere_Elements_11_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13975/medium/13975.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13989/medium/13989.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13973/medium/13973.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/13977/medium/13977.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14013/medium/14013.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>583</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/583</link> + <titre>Word 2013</titre> + <duree>10h59</duree> + <description>Dans ce parcours de formation, vous verrez toutes les fonctionnalités de Word 2013, le logiciel de traitement de texte de la suite Office 2013. Vous verrez comment créer des documents complexes, et comment les mettre en page. Apprenez à utiliser les styles de paragraphes, les modèles et les thèmes de documents. Des outils automatisés permettent de générer rapidement des tables des matières, des index, des bibliographies. Vous pourrez créer des enveloppes complétées automatiquement avec les contacts que vous aurez sélectionnés dans votre carnet d'adresses. Word 2013 possède aussi de nombreux outils graphiques, qui facilitent la mise en forme des titres, des tableaux, des schémas, avec de nombreux effets spéciaux. Enfin, utilisez les fonctionnalités les plus modernes de Word 2013 en utilisant votre compte SkyDrive ou SharePoint : vos documents seront sauvegardés en ligne, et donc accessibles depuis n'importe quel poste connecté à internet. Vous pourrez les modifier n'importe où, les partager instantanément et travailler dessus à plusieurs.</description> + <nb_formations>134 formations</nb_formations> + <language>fr</language> + <publishDate>2013-02-08T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/583/small/Word_2013_logojpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/583/medium/Word_2013_logopng_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/583/original/Word_2013_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14133/medium/14133.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14069/medium/14069.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14039/medium/14039.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14063/medium/14063.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14299/medium/14299.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>585</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/585</link> + <titre>PowerPoint 2013</titre> + <duree>11h04</duree> + <description>PowerPoint 2013 vous permettra de créer des présentations : des diaporamas qui peuvent servir de support à un exposé oral ou à une présentation client. Vous verrez d'abord comment insérer et organiser des diapositives. Puis vous apprendrez à créer des éléments plus complexes : zones de texte, image, graphiques, tableaux... Les diapositives peuvent ensuite être personnalisées avec des thèmes de couleurs, des effets d'animation, de transition, et des fichiers multimédias. PowerPoint 2013 favorise aussi le travail collaboratif : vous pourrez facilement envoyer vos présentations par e-mail, partager en ligne vos présentations, etc.</description> + <nb_formations>103 formations</nb_formations> + <language>fr</language> + <publishDate>2013-02-06T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/585/small/Powerpoint-2013.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/585/medium/Powerpoint-2013.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/585/original/PowerPoint_2013_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14315/medium/14315.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14447/medium/14447.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14419/medium/14419.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14505/medium/14505.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14425/medium/14425.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>587</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/587</link> + <titre>Word 2007 (UK)</titre> + <duree>7h29</duree> + <description>Dans ce parcours de formation, vous verrez toutes les fonctionnalités de la version anglaise de Word 2007. Ce logiciel de traitement de texte permet de créer des documents complexes, et de les mettre en page. Vous verrez ainsi comment utiliser les styles de paragraphes, les modèles et les thèmes de document. Des outils automatisés permettent de générer rapidement des tables des matières, des index et des bibliographies. Vous pouvez aussi créer rapidement des enveloppes pour effectuer un publipostage. Word 2007 possède aussi de nombreux outils graphiques, qui facilitent la mise en forme des titres, des tableaux, des graphiques, avec de nombreux effets spéciaux. Enfin, vous apprendrez à partager vos documents en les envoyant par e-mail directement depuis Word 2007.</description> + <nb_formations>83 formations</nb_formations> + <language>fr</language> + <publishDate>2013-02-21T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/587/small/word_2007.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/587/medium/word_2007.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/587/original/Word_2007_uk_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15043/medium/15043.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15003/medium/15003.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14993/medium/14993.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15013/medium/15013.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15051/medium/15051.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>589</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/589</link> + <titre>Linkedin</titre> + <duree>3h22</duree> + <description>LinkedIn est un réseau social qui va vous permettre d'accroître votre réseau professionnel. Grâce à sa puissante fonctionnalité de recherche vous pouvez facilement trouver des relations, en leur envoyant des invitations à faire partie de votre réseau. Consultez les offres d'emplois ou cerner différents profils de candidats, vous pouvez les sauvegarder à l'aide de l'Organisateur de profils, et le contacter par la suite. Ce réseau permet aussi de présenter votre profil professionnel et le profil de votre entreprise, ou de lancer une campagne publicitaire, pour une meilleure visibilité sur le Web. Vous pouvez aussi rejoindre de nombreux groupes de discussions, afin de trouver une réponse à un sujet bien précis. Enfin, différentes possibilités de partage vont vous permettre de mettre en avant votre profil.</description> + <nb_formations>34 formations</nb_formations> + <language>fr</language> + <publishDate>2013-02-25T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/589/small/Linkedin_jpg_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/589/medium/Linkedin_png_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/589/original/LinkedIn_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14585/medium/14585.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14591/medium/14591.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14577/medium/14577.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14623/medium/14623.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14589/medium/14589.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>591</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/591</link> + <titre>Viadeo</titre> + <duree>3h33</duree> + <description>Viadeo est un réseau social professionnel, qui s'adresse à tous ceux qui souhaitent accroître leur perspective de carrière. Vous pouvez en effet présenter vos expériences professionnelles et votre parcours scolaire, utiliser les recommandations, ou encore spécifier vos compétences. Par la suite vous pourrez facilement rechercher et ajouter des contacts à votre réseau, afin d'échanger avec eux à l'aide de la messagerie par exemple. Vous pouvez aussi créer ou rejoindre des groupes, afin d'accroître la visibilité de votre entreprise. Enfin, apprenez à gérer les paramètres de configuration de votre profil, afin de décider de ce que vous souhaitez rendre visible ou non sur Viadeo.</description> + <nb_formations>35 formations</nb_formations> + <language>fr</language> + <publishDate>2013-02-15T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/591/small/Viadeo.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/591/medium/Viadeo.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/591/original/Viadeo_Vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14665/medium/14665.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14651/medium/14651.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14663/medium/14663.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14707/medium/14707.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/14715/medium/14715.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>595</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/595</link> + <titre>PowerPoint 2007 (UK)</titre> + <duree>6h06</duree> + <description>Ce parcours de formation vous présente la totalité des usages de PowerPoint 2007 version anglaise. Ce logiciel vous permettra de créer des présentations : des diaporamas qui peuvent servir de support à un exposé oral. Vous verrez d'abord comment insérer et organiser des diapositives. Puis vous apprendrez à créer des éléments plus complexes : zones de texte, image, graphiques, tableaux... Les diapositives peuvent ensuite être personnalisées avec des thèmes de couleurs, des effets d'animation, de transition, et des fichiers multimédias. PowerPoint 20007 favorise aussi le travail collaboratif : vous pourrez facilement envoyer vos présentations par e-mail, valider les modifications de vos collègues, etc.</description> + <nb_formations>63 formations</nb_formations> + <language>fr</language> + <publishDate>2013-03-01T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/595/small/powerpoint_2007.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/595/medium/powerpoint_2007.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/595/original/PowerPoint_2007_UK_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15181/medium/15181.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15235/medium/15235.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15175/medium/15175.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15243/medium/15243.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15199/medium/15199.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>597</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/597</link> + <titre>Yammer</titre> + <duree>2h42</duree> + <description>Yammer est un réseau social interne d'entreprise qui offre à chaque employé des options collaboratives au sein de son propre réseau. Vous pouvez recevoir et partager des informations très rapidement à l'aide des fonctionnalités de publication ou encore en utlisant le chat. Apprenez aussi à utiliser des sondages, à poser des questions dans votre réseau, ou encore à intégrer des groupes traitant d'un thème bien précis. Mais le plus grand atout de Yammer se base sur ses grandes possibilités de partage de documents, qui invitent à la collaboration interservices: créez des évènements, rédigez des compte-rendus et travaillez à plusieurs sur des documents, sans quitter votre fauteuil.</description> + <nb_formations>28 formations</nb_formations> + <language>fr</language> + <publishDate>2013-03-05T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/597/small/Yammer.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/597/medium/Yammer.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/597/original/Yammer_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15331/medium/15331.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15307/medium/15307.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15305/medium/15305.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15335/medium/15335.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15317/medium/15317.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + <formation> + <vodeclic_id>599</vodeclic_id> + <link>http://biblio.vodeclic.com/formation/599</link> + <titre>Access 2013</titre> + <duree>4h15</duree> + <description>Ce parcours de formations recouvre l'ensemble des fonctionnalités d'Access 2013. Il s'agit du logiciel de gestion de bases de données de la suite Office 2013. Vous verrez dans ce parcours de formations comment créer plusieurs tables, les tableaux dans lesquels sont organisées les données. Pour remplir plus facilement vos tables, Access 2013 vous permet de créer et de personnaliser des formulaires d'enregistrement. Vous pourrez ensuite créer des requêtes, qui permettent de récupérer les données de plusieurs tables, pour les croiser et relier les éléments communs. Les requêtes permettent aussi d'effectuer des calculs et de remplir automatiquement des colonnes. Enfin, apprenez à générer des rapports : des documents complétés automatiquement par le logiciel à partir de vos données.</description> + <nb_formations>55 formations</nb_formations> + <language>fr</language> + <publishDate>2013-03-06T00:00:00+01:00</publishDate> + <publishYear>2013</publishYear> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefiles/599/small/Access_2013_logo_.jpg</image_logo_url> + + + <image_logo_url>http://biblio.vodeclic.com/system/data_db/metasujet/imagefile_pngs/599/medium/Access_2013_logo_.png</image_logo_url> + + + + <image_jacket_url>http://biblio.vodeclic.com/system/data_db/metasujet/imageproduits/599/original/Access_2013_vignette_.jpg</image_jacket_url> + + + <screenshots> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15397/medium/15397.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15359/medium/15359.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15429/medium/15429.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15437/medium/15437.jpg</url> + </screenshot> + + <screenshot> + <url>http://biblio.vodeclic.com/system/data_db/video/imagefiles/15355/medium/15355.jpg</url> + </screenshot> + + </screenshots> + + </formation> + + </formations> +</data> + +<!-- + Local Variables: + nxml-section-element-name-regexp:"formation" + nxml-heading-element-name-regexp:"titre" + End: +--> diff --git a/tests/library/Class/WebService/VodeclicTest.php b/tests/library/Class/WebService/VodeclicTest.php new file mode 100644 index 00000000000..3a377dbd589 --- /dev/null +++ b/tests/library/Class/WebService/VodeclicTest.php @@ -0,0 +1,96 @@ +<?php +/** + * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved. + * + * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * AFI-OPAC 2.0 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with AFI-OPAC 2.0; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +class VodeclicTest extends Storm_Test_ModelTestCase{ + + public function setUp() { + parent::setUp(); + +/* Class_AdminVar::newInstanceWithId('VODECLIC_ID', ['valeur' => 'zork-sa']); + Class_AdminVar::newInstanceWithId('VODECLIC_KEY', ['valeur' => '12345']); + Class_AdminVar::newInstanceWithId('VODECLIC_BIB_ID', ['valeur' => '12']); */ + + $catalogue_xml = file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/vodeclic_catalogue.xml'); +/* $this->_http_client = Storm_Test_ObjectWrapper::mock(); + $this->_http_client + ->whenCalled('https://lms.vodeclic.com/api/catalogue.xml') + ->answers($catalogue_xml);*/ + + $this->_vodeclic = new Class_WebService_Vodeclic(); + $this->_vodeclic->parseXML($catalogue_xml); + $this->_first_album = $this->_vodeclic->getAlbums()[0]; + } + + + /** + * [[file:~/www/afi-opac/tests/fixtures/vodeclic_catalogue.xml::<titre>Safari%202</titre][formation Safari2]] + * @test + */ + public function firstAlbumTitreShouldBeSafari2() { + //$first_album = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals('Safari 2', $this->_first_album->getTitre()); + } + + + /** @test */ + public function numberOfAlbumsShouldBe269() { + $this->assertEquals(269, count($this->_vodeclic->getAlbums())); + } + + /** @test */ + public function firstAlbumSafari2IdOrigineShouldBe1() { + //$first_album = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals('1', $this->_first_album->getIdOrigine()); + } + +/** @test */ + public function firstAlbumSafari2LinkShouldBeSet() { + //$first_Album = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals('http://biblio.vodeclic.com/formation/1',$this->_first_album->getUrlOrigine()); + } + + /** @test */ + public function firstAlbumSafari2DesciptionShouldBeSet() { + //$first_ALbum = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals("Le parcours pédagogiques Safari 2 de A à Z va vous permettre de prendre complètement en main ce navigateur internet installé par défaut sur tous les ordinateurs Apple. Vous y découvrirez une navigation sur Internet simplifiée à l'aide de la barre d'adresse, du champs de recherche Google, des onglets de Safari 2… Nos vidéos-formations vous apprendront également des astuces pour mieux vivre internet au quotidien avec Safari 2. Ainsi vous apprendrez à maîtriser l'historique, vos signets, les formulaires de remplissage automatique et plein d'autres choses !",$this->_first_album->getDescription()); + } + + /** @test */ + public function firstAlbumSafari2IdLangueShouldBeFre() { + //$first_Album = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals('fre',$this->_first_album->getIdLangue()); + } + + /** @test */ + public function firstAlbumSafari2DateMajShouldBeSet (){ + //$first_Album = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals('2007-08-01T00:00:00+02:00',$this->_first_album->getDateMaj()); + } + + /** @test */ + public function firstAlbumSafari2AnneeShouldBe2007 (){ + //$first_Album = $this->_vodeclic->getAlbums()[0]; + $this->assertEquals('2007',$this->_first_album->getAnnee()); + } + +} + +?> \ No newline at end of file -- GitLab