What happened to the Video Workshop tutorials?

I have Illustrator CS3. I don't use it often so I rely on the video tutorials. The link inside the program help that used to point to the tutorials now points to "Adobe Inspire Magazine" which offers no help at all.
Oddly enough, the tutorials I'm looking for still exist in Italian. http://www.adobe.com/it/designcenter/video_workshop/ How is this fair?
I paid for all the features in CS3, one of which is access to the video tutorials. So Itialian speaking people still get help with CS3 and English speakers are bent over the barrel to cough up more money to upgrade? Not FAIR!
From inside my CS3 program help file:
To access Adobe Creative Suite 3 video tutorials, visit Adobe Video Workshop at www.adobe.com/go/learn_videotutorials. Doesn't work anymore.
Even in the CURRENT online pdf: http://help.adobe.com/archive/en_US/illustrator/cs3/illustrator_cs3_help.pdf you'll see references (including screen shots) to the video tutorials and links. (SEE PAGES 5-7 of the pdf) But they are LIES!!! As mentioned above, links now direct to a useless magazine.
Where are the 200+ videos I am supposed to have access to?
Had I purchased the DVD version of the software I'd have the tutorials on disk. I chose the download version as it was PROMISED to have all the same features. If they don't have them online anymore, I should be able to get a copy of the videos on disk shouldn't I?
I need these tutorials.
HELP!
Update to above:
Spanish version exists: http://www.adobe.com/es/designcenter/video_workshop/
Dutch version exists: http://www.adobe.com/nl/designcenter/video_workshop/
Sweedish version exists: http://www.adobe.com/se/designcenter/video_workshop/
Come on Adobe. Do the right thing here. Please provide the link to the english video workshop tutorials I paid for.

No "effects" in iMovie 7.
You can always add them using iMovie 6 and export that file to version 7.

Similar Messages

  • What happen to the video effet's?

    well i love that u are able to turn ur video from black and white but on i movie o8 does not have the effet what happen

    This was Apple's response to my inquiry about this...
    Thank you for holding. I was able to research this issue for you and was able to verify that this is expected behavior for the Videos Application. At this time, iOS 7 does not allow devices to view the entire season of shows without pauses. We definitely want to hear your feedback about our software and would like to invite you to to submit your concerns via our site at  www.apple.com/feedback . I do apologize about the change.
    My reply:
    Wow, you took a perfectly awesome feature away from your users. That's just unacceptable!
    I think we, the users and people who have paid for these products, need to step up and raise **** about this. Because it's absolute BS.

  • What happened to the video filter in Photoshop Elements 13?

    So disappointed in Photoshop Elements 13. Just upgraded from Elements 8 with great expectations that 13 would be better and more powerful. All they did was dumb it down. Wish I could get my money back.

    The Extract filter was eliminated as it has been made utterly obsolete by the new selection techniques in CS5.
    Watch this video, for instance:
    http://photoshopnews.com/2010/04/30/refine-edge-hair-masking-in-photos hop-cs5/
    Wo Tai Lao Le
    我太老了

  • HT201412 What happens when the video app quits working?

    How can I fix my iPad 2 video app when it quits working properly?

    Try the following:
    - A reset. Nothing is lost
    Reset: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPad.
    If you still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order

  • DW CS3  with Spry Video Workshop Tutorials

    Hi
    Has anyone else has attempted to go thru the Video Workshop
    tutorials for using Spry with DW CS3 Trial version?
    I am trying to learn how to use Spry and have gone thru the
    Using Spry Framework for Ajax by Joseph Lowery. The problem I have
    is that the example demonstrated in the tutorial simply does not
    work as advertised in the video presentation (at least not using my
    copy of DW CS3 Trial download). Getting exasperated I decided to
    follow step by step the process in the accompanying HTML version of
    the exersize only to discover glaring errors in the text of the
    exersize - (Steps 9 and 10 have NOTHING to do with the example -
    but thats beside to point here).
    Here is what I have done so far:
    1. I downloaded the zip file with the code for the tutorials,
    created a DW local development copy and uploaded the files to the
    testing server. The "testing server" is Apache on my XP Pro SP2
    system.
    2. In the root directory of the sample site used ion the
    tutorial has a number of files which can be used as a starting
    point for the tutorials. I have selected a file called
    05_ajax_spry.htm and followed the steps in the tutorial to create
    the Master / Detail regions and the Master data table.
    3. At the completion of the exersize I should be able to
    perform the following:
    Sort either of the two columns in the
    Master Region's Table
    click on a data row in the master
    table and observe the correct image and description forthat row in
    the Detail Region.
    3. Neither of these work - The only thing that does work is:
    - The Master Region Table gets created OK as does the Detail
    Region
    - When I browse over the data in the Master Region each
    separate row gets highlighted
    - Onlky the first detail image and detail description are
    displayed in the Detail Region and they never change when I click
    on a row in the Master Region.
    4. Now, I have gone thru the process several times in the
    belief that I must have missed something - but so far I cant
    pinpoint what that could be.
    So, I decided to have a look at the next example which
    applies an Accordian Widget to the page. This example is based on
    another file in the root of the tutorial site called
    http://beta/dwcs3spry/06_spry_widgets.htm.
    This file essentially starts off where the previously worked on
    exersize finishes. Upon examining the code of this file I noted a
    difference in the Spry code applied to the table rows in the Master
    Region. The code for the Master table in each example is:
    05_ajax_spry.htm after completion of the exersize:
    <table id="events">
    <tr>
    <th spry:sort="name">Name</th>
    <th spry:sort="location">Location</th>
    </tr>
    <tr spry:repeat="dsEvents" spry:setrow="dsEvents"
    spry:hover="rowHover" spry:select="rowSelected">
    <td>{name}<br />
    {date}</td>
    <td valign="top">{location}</td>
    </tr>
    </table>
    06_spry_widgets.htm - untouched or edited in the associated
    exersize:
    <table id="events">
    <tr>
    <th
    onclick="dsEvents.sort('name','toggle')">Name</th>
    <th
    onclick="dsEvents.sort('location','toggle')">Location</th>
    </tr>
    <tr spry:repeat="dsEvents"
    onclick="dsEvents.setCurrentRow('{ds_RowID}');"
    spry:hover="rowHover" spry:select="rowSelected">
    <td class="eventNameTD">{name}<br />
    {date}</td>
    <td class="locationTD">{location}</td>
    </tr>
    </table>
    Note the onclick events in the latter version.
    I guess my question is "How do I get these onclicks in place
    using DWCS3's" wizards ?" - I am using the Trial version of DW CS3.
    And, I note when I checked the code for the SpryData.js that it is
    Version 1.3. This i is the SpryData.js file that is included in the
    downloaded zip file for the DW CS3 Video Workshop Spry tutorials.
    Many thanks.

    OK - I got it sorted. I created a new site which is a copy of
    the tutorial except that I included a new folder for the Spry
    Assets so that when I added the Spry stuff DW CS3 loaded the v1.4
    files into the new folder for the Spry files instead of using the
    pre-existing files supplied in the tutorial - and it works as
    advertised.
    This may help someone else who comes across a similar problem
    when using the Video Workshop files.
    Although the video tutorials provide an intro into using DW
    CS3 it is a pity that the tradition estalished by Macromedia of
    including excellent tutorials WITH Dreamweaver have been dropped
    now that Adobe has control. Those examples provided in the supplied
    tutorials were excellent and would be nice to have back. They
    certainly covered more ground than the pityful Help now included
    with DW CS3 and the current poor examples in the Video Workshops.
    Perhaps Adobe could improve the level of Quality Control on the
    Video Workshops and expand the scope of the tutorials it could
    improve things. This release of DW is a poor showing for Adobe
    after the take-over. I just hope it gets better with the next
    release - soon.

  • HT5127 I have the trial version- love it. I want to buy the real version. But I've been making a video on the trial version. What happens to my video I'm making once I download the real version. I cannot lose it.

    Transitioning from the trial version to the final cut version. Does the trial just turn into the final cut pro real version? I want to download it before the 30 days are up but I dont want to lsoe my video? HELP!
    I have the trial version- love it. I want to buy the real version. But I've been making a video on the trial version. What happens to my video I'm making once I download the real version. I cannot lose it.

    Yes! As long as you don't delete your project files/library, you'll be fine.  When you install the full version, it might create a new library, go to your movies folder or wherever your current library is and just double click it to open it.

  • I have the trial version- love it. I want to buy the real version. But I've been making a video on the trial version. What happens to my video I'm making once I download the real version. I cannot lose it.

    I have the trial version- love it. I want to buy the real version. But I've been making a video on the trial version. What happens to my video I'm making once I download the real version. I cannot lose it.

    The current version being sold is 10.1. It is substantially different from your trial version. Read here to get started with the new version
    http://www.fcpxbook.com/updates/101/

  • HT2515 What happens if our video chat is not connecting with the other person?

    What happens if our video chat is not connecting with the other person?

    Hi,
    Not really enough info to help constructively.
    Which Version of iChat ?
    Is it iChat to iChat or iChat to Messages  (i.e Mac to Mac) or AIM (iChat) to PC AIM  (needs to be a compatible version)
    Is this AIM to AIM (Includes AIM valid Screen Names from certain Apple IDs) ?
    Is it Jabber to Jabber (this can only be done Mac to Mac in Messages and/or iChat) ?
    Do you get any failure  message ?
    In the Video Menu > Connection Doctor > Errors tab do you get any info ?
    NOTES
    As mentioned it is iChat to iChat or iChat to AIM on a PC if the PC has a compatible version (which is not the latest)  (where it lists iChat it also means Messages in Mountain Lion)
    It has to be either AIM to AIM IDs or Jabber to Jabber IDs
    It cannot be Jabber to some GoogleTalk Web Browser Login (or Facebook)
    It cannot be Jabber/Google Talk to the PC app called GoogleTalk
    Google released an PC only App that will use Jabber protocols for Video (Called Jingle)
    Their web Browser Plug-in also uses Jingle for Video and Audio chat but iChat and Messages use SIP (Session Initiation Protocol) to connect.  The two are not compatible.
    Facebook also run a  Jabber server and have apparently released their Own Plug-in  which can cause problems of it's own on a Mac.
    However you also cannot video to a Web Browser Login on Mac or PC
    If this is iChat 6 it does not Video on the Yahoo Accounts  (that is Text Only)
    This means it cannot Video to any version of Yahoo on Mac or PC or any Web Browser method.
    10:27 PM      Tuesday; February 19, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • When scrolling vertically there is an horizontal line which causes distorsion of the screen. I do not have noticed such concern on my iMac or on my macbook. What happen with the macpro ?

    When scrolling vertically there is an horizontal line which causes distorsion of the screen. I do not have noticed such concern on my iMac or on my macbook. What happen with the macpro ?

    MacPro bought in 2010
    MacBook Pro
    MacBookPro7,1
    Intel Core 2 Duo
    2,4 GHz
      Nombre de processeurs :          1
      Nombre total de cœurs :          2
      Cache de niveau 2 :          3 Mo
      Mémoire :          4 Go
      Vitesse du bus :          1,07 GHz
      Version de la ROM de démarrage :          MBP71.0039.B0B
      Version SMC (système) :          1.62f6
      Numéro de série (système) :          W804853GATP
      UUID du matériel :          716CB476-983B-5C43-B363-988FB608C01C
      Capteur de mouvement brusque
    État :          Activé
    System:
    Mac OS X 10.6.7 (10J869)
    Darwin 10.7.0
    Video DIsplay Card
    NVIDIA GeForce 320M :
      Jeu de composants :          NVIDIA GeForce 320M
      Type :          Processeur graphique (GPU)
      Bus :          PCI
      VRAM (totale) :          256 Mo
      Fournisseur :          NVIDIA (0x10de)
      Identifiant du périphérique :          0x08a0
      Identifiant de révision :          0x00a2
      Révision de la ROM :          3533
      Moniteurs :
    LCD couleur :
      Résolution :          1280 x 800
      Profondeur de pixels :          Couleurs 32 bits (ARGB8888)
      Miroir :          Activé
      État du miroir :          Miroir matériel
      Connecté :          Oui
      Intégré :          Oui
    Is that what you asked ?  Do you need other data ?
    Note that I have also strong distorison when running slides show with iphoto.
    Thanks

  • What happened to the Giant DSR-11 Timecode out thread

    What happened to the Giant DSR-11 Timecode out thread? The one about using simple video out to stripe the tape.
    people keep asking me how to do it, and I'd love to just send them a link to that thread, but can't find it when I search for it. Anyone have the link?
    thanks, tim

    Naa, props like the kind that hold me up when I've had too much to drink.
    Or maybe the props that make the plane go.
    Or maybe I should have said "mad props."
    http://www.randomhouse.com/wotd/index.pperl?date=20010213

  • What happened to the Adobe Help Viewer or Center for CS4?

    What happened to the great help program that CS2 and then CS3 had? I don't seen any such program for CS4!!!!
    Thanks, --bill

    The help system has been changed again. If you are online the Help menu takes you to the Adobe Community Help Center (link to help is on the right), otherwise it loads a local copy from your computer.
    You can use the PDF copy of the manual on your installation discs or download it from the Community Help Center.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • What happened to the controls in QuickTime?

    I like the new look of QuickTime, but what happened to the controls for editing video? I used to be able to hit the "I" key for inpoint, and the "O" key for endpoint, and then hit delete to remove that section. Now, I have to drag the selection tool around to do the cut. This is very awkward, especially when I need to fine-tune the areas where the cut is to be made.
    Are there any tips on doing some more fine-tuned edits in QuickTime?

    I second SwagMeyer's request. He's not asking for any advanced trimming feature that would make things more difficult for the simple user: the IN and OUT shortcuts were presents and "invisible" also in QuickTimePro 7 and they would not affect that easiness of the application.

  • What happens when the computer get too full of e-mails?  Will it automatically start deleting ... or give you some kind of warning??  I never delete personal mail right away since I might want to refer back to it, and then the first thing I know, I've got

    What happens when the computer get too full of e-mails?  Will it automatically start deleting ... or give you some kind of warning??  I never delete personal mail right away since I might want to refer back to it, and then the first thing I know, I've got a big backlog. 

    It will not automatically delete any emails; you will need to do that. You may suffer performance  issues in Mail  if you let your mailboxes become too bloated. And, aside from Mail, the files take up a lot of room are photos, videos, and music, so you might want to watch those - every once in a while, check how much hard drive space you have and make sure you empty the trash regularly. Checking your hard drive space: highlight your Macintosh HD icon on the desktop; hit Command  + I and check the total capacity, and how much is left.

  • What happened to the youtube app and why does my ipod keep crashing?

    I updated my ipod touch 4g to iOS 6.0 and what happened to the youtube app? And why does my ipod keep on crashing when ever I go to the app store? Now i can never buy anything!!! or watch youtube videos and I'm always on youtube!!!!!!!!

    As has been very well publicized in the news and all over the internet and forums, youtube is not part of ios 6.  Google it.
    You can get the app from the app store if you like.
    Have you tried the basics from the manual to stop the crashing?
    Restart, reset, restore.

Maybe you are looking for

  • ADF Mobile: Deployment Error: MessageDigest SHA-1 implementation not found

    Hi, I was trying to create and deploy a test application as outlined in the online tutorial for ADF Mobile:Android http://docs.oracle.com/cd/E18941_01/tutorials/MobileTutorial/jdtut_11r2_54_2.html After I hit Deploy to emulator, it fails with the fol

  • Datagrid and multiple ItemRenderer

    What I would like to do and haven't been successful is add a column to a Datagrid at runtime.  Each cell in that column is going to be different based upon user data. The first column is populated based upon a user query then another query (i.e. REST

  • UCCX Record Forwarded Calls

    Hi CCX Script Experts,  CCX 9.0(2) Cisco QM 9.0   I want to just make sure there is a way on CCX scripting a step to record calls somehow.   Basically I want the IVR port to initiate a conference between Caller A (Original calling phone) and Caller B

  • Secondary Domain Controller Not Authenticating Domain Users

    Hi. I have a primary domain controller running Win Srv 2012 in USA and i added a secondary domain controller 2012 in the same domain from a different location India, through VPN.so that India user accounts can authenticate by the secondary DC instead

  • STO PGI happening with out stock checking

    Dear All, My base unit of EA. Order unit CV - Case. Conversion rate is 1 CV = 144 EA. While I stock in MMBE if found 143.998 EA. I raised STO for 1CV and created deliery (VL10B) and done PGI (VL02N) for 1 CV, system allowed me to proceed all these ac