Dynamic Video Playlist

Hi, I am new to Actionscript 3 and I have followed the
tutorial regarding creating a dynamic video playlist with
thumbnails. I created as the tutorial said and it worked fine.
Instead of their just being a title for a video, I have also tried
to add a description to each tileitem, but instead the title
repeats twice. Can anyone see where i'm going wrong? You can view
my playlist here - www.coolmustard.co.uk/VideoPlaylist.html
Thumb actionscript file:
package {
import fl.controls.listClasses.ICellRenderer;
import fl.controls.listClasses.ImageCell;
import fl.controls.TileList;
import flash.text.*;
public class Thumb extends ImageCell implements
ICellRenderer {
private var desc:TextField;
private var info:TextField;
private var textStyle:TextFormat;
public function Thumb() {
super();
loader.scaleContent = false;
useHandCursor = true;
// set skins
setStyle("upSkin", ThumbCellBg);
setStyle("downSkin", ThumbCellBg);
setStyle("overSkin", ThumbCellBgOver);
setStyle("selectedUpSkin", ThumbCellBgOver);
setStyle("selectedDownSkin", ThumbCellBgOver);
setStyle("selectedOverSkin", ThumbCellBgOver);
// Create and format desc
desc = new TextField();
desc.autoSize = TextFieldAutoSize.LEFT;
desc.x = 80;
desc.y = 4;
desc.width = 500;
desc.multiline = true;
desc.wordWrap = true;
addChild(desc);
textStyle = new TextFormat();
textStyle.font = "Arial";
textStyle.color = 0xffffff;
textStyle.size = 11;
textStyle.bold = true;
info = new TextField();
info.autoSize = TextFieldAutoSize.LEFT;
info.x = 80;
info.y = 15;
info.width = 500;
info.multiline = true;
info.wordWrap = true;
addChild(info);
override protected function drawLayout():void {
// Position cell elements; tweak these for your thumbs if
needed
var imagePadding:Number = getStyleValue("imagePadding") as
Number;
loader.move(11, 8);
var w:Number = width-(imagePadding*2);
var h:Number = height-(imagePadding*2);
if (loader.width != w && loader.height != h) {
loader.setSize(w,h);
loader.drawNow();
desc.text = data.label;
desc.setTextFormat(textStyle);
info.text = data.label;
info.setTextFormat(textStyle);
background.width = width+5;
background.height = height+2;
textField.visible = false;
Videoplaylist actionscript code:
package {
import flash.display.MovieClip;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.events.Event;
import fl.controls.listClasses.CellRenderer;
import fl.controls.ScrollBarDirection;
public class VideoPlaylist extends MovieClip {
private var xmlLoader:URLLoader;
public function VideoPlaylist():void {
// Load the playlist file, then initialize the media player.
xmlLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, initMediaPlayer);
xmlLoader.load(new URLRequest("playlist.xml"));
// Format the tileList, specify its cellRenderer class.
tileList.setSize(600, 240);
tileList.columnWidth = 580;
tileList.rowHeight = 60;
tileList.direction = ScrollBarDirection.VERTICAL;
tileList.setStyle("cellRenderer", Thumb);
public function initMediaPlayer(event:Event):void {
var myXML:XML = new XML(xmlLoader.data);
var item:XML;
for each(item in myXML.vid) { // populate playlist.
// Get thumbnail value and assign to cellrenderer.
var thumb:String;
if(item.hasOwnProperty("@thumb")>0) thumb = item.@thumb;
// Send data to tileList.
tileList.addItem({label:item.attribute("desc").toXMLString(),
label:item.attribute("info").toXMLString(),
data:item.attribute("src").toXMLString(),
source:thumb});;
// Select the first video.
tileList.selectedIndex = 0;
// Listen for item selection.
tileList.addEventListener(Event.CHANGE, listListener);
// And automatically load it into myVid.
myVid.source = tileList.selectedItem.data;
// Pause video until selected or played.
myVid.play();
// Detect when new video is selected, and play it
function listListener(event:Event):void {
myVid.play(event.target.selectedItem.data);
XML Playlist:
<?xml version="1.0" encoding="UTF-8"?>
<playlist id="Adobe Developer Center - Dynamic Video
Playlist in AS3" >
<vid desc="Champneys Spa's and Resorts"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysIntro.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysIntro.jpg"
/>
<vid desc="Accommodation at Champneys"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysAccom.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysAccom.jpg"
/>
<vid desc="The Henlow Spa and Resort"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysHenlow.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysHenlow.jpg"
/>
<vid desc="The Forest Mere Spa and Resort"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysMere.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysMere.jpg"
/>
<vid desc="The Springs Spa and Resort"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysSpings.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysSprings.jpg"
/>
<vid desc="The Tring Spa and Resort"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysTring.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysTring.jpg"
/>
<vid desc="Spa Treatments at Champneys"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysSpaTreat.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysSpaTreat.jpg"
/>
<vid desc="Fitness and Well-Being at Champneys"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysFitness.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysFitness.jpg"
/>
<vid desc="Aqua Therapy at Champneys"
info="Enter a short description here"
src="
http://www.coolmustard.co.uk/videos/ChampneysAquaTherapy.flv"
thumb="
http://www.coolmustard.co.uk/thumbs/ChampneysAquaTherapy.jpg"
/>
</playlist>
If anyone can help that would be brilliant.

I can't pinpoint where data.label derives from, but at first
glance I'd say the problem might be between the following sets of
lines...
desc.text = data.label;
desc.setTextFormat(textStyle);
info.text = data.label;
info.setTextFormat(textStyle);

Similar Messages

  • Customize dynamic video playlist template

    Hi,
    I downloaded a dynamic video playlist template for streaming delivery of video from -http://www.adobe.com/devnet/flash/articles/video_playlist.html I have customized the playlist to play and display my own videos and thumbs. I would like to customize the position of the TileList component and the position and size of the thumbs and text contained within, so that it matches the position and size of the thumbs and text on my website. Here is a link to the template folder- http://dl.dropbox.com/u/8730678/video_playlist_sequence.zip and my website (got to movie page) - http://jamanimations.com/
    Thank you!

    thanks for your reply but I have managed to fix it by move=ing the content of the constructor of the class 'VideoPlaylist' into a new  function called activate and then calling that on frame 2

  • Dynamic Flash video playlist

    Hi, got overly ambitious late last night and tried to make a
    video playlist based on Lisa Larson Kelley's tutorial
    http://www.adobe.com/devnet/flash/articles/video_playlist.html.
    I managed to get the tile list set up and functioning, but, the
    video player doesn't seem to "see" the video files, just the
    thumbnails in the tile list. The URL for the test page is at
    http://www.vegascanine.com/VideoPlaylist.html.
    I've been comparing my files to her tutorial files and I wonder if
    there's something absurdly simple that I'm missing due to lack of
    sleep! I would appreciate any feedback. Thanks so much!

    I worked on the same project and it is working alright and
    still interested in adding more features like play pause etc ....
    but for now I'm more interested in adding the buffering bar and
    progress bar.
    Any help is welcome.

  • How to create a drag and drop video playlist Help please

    I would like to learn how to create a drag and drop video playlist.
    I think the most common example is youtube.
    I already have partial of the work but I am stuck with my preliminary knowledge of Flash.
    What I am saying is:
    I have a *.fla project that have the galleries for video and pictures.
    But this process is done from the back end.
    I would like to make it more dynamic for the visitors.
    For example:
    1. Create a visitor video (pictures) playlist
    2. Drag and drop into the playlist
    3. To be able to create different playlists (Playlist 1, "My favorite playlist", "Watch later", etc)
    If someone knows or want to guide me where or how to find this request, I'd appreciate it so much.
    If the forum think that this need to be address to a expertise ($). I am also welling to hear that and where to go.
    If someone is interesting in this project please send me a note to show the prelimary project.
    Thanks

    Yeah that is the general idea but that is more of a "lift and drop", i want to add the same thing as when you:
    Right click this window in the taskbar (assuming your using windows) when the window is not maximized and click "move" then it changes the cursor icon and allows u to move the window around and while you move it around it shows the window moving, not a click and release feature.
    So i want that ability without having to click on the title bar, if you know what i mean.

  • Videos don't show up on iPod video playlist

    Maybe I'm not understanding something, but I subscribe to a coupld of video podcasts. They update fine off iTunes and they synch over to my iPod. The problem is, they don't show up in any of the video playlists. They show up under the 'recently added' list of both music and video files.
    How can I get these things to list in the Video Podcast playlist?? Thanks for your help and thoughts!

    Julia,
    Do you have a Fifth Generation iPod, or not?
    Only Fifth Generation iPods are compatible with any videos, which include video podcasts that you try to download onto it.
    So, if you have a Nano, for example, it isn't won't be capable of playing any video files, sorry.
    If you're unsure what model of iPod you have, check out this article which has info about different iPods here: Identifying different iPod models
    -Kylene

  • Hopefully someone can help.... I have an Iphone 5 and want to create a music video playlist on my phone so then i can play through my apple tv... but when i make a playlist in itunes and try to add it over to my iphone it wont let me sync the playlist...?

    Hopefully someone can help.... I have an Iphone 5 and want to create a music video playlist on my phone so then i can play through my apple tv... but when i make a playlist in itunes and try to add it over to my iphone it wont let me sync the playlist...? I have already added the music videos to my iphone so that is not the problem.... i cant seem to figure out how to make a playlist for them... IE: to make the videos play consecutively in the order i want without stopping after each video and gong back to the list.... this is what i have had to resort to make it work....what i want to do....is be able to make a playlist of videos on my iphone 5....take my apple tv to friends houses and with wifi....set up apple tv and play videos at the party and not have to stand by with the remote and find a new video to play stopping the music between the songs/videos....very annoying....and have spent over 4 hours one day and an hour and a half today on the phone today with a sr. advisor with apple and they have no clue.... this seems sooooo simple.... please somebody that really knows how to do this....i will be indebted forever...............
    Mike

    Thank you for replying.    Yes I deleted the old email address..   

  • Hi. Downloaded iphone 6.0 and my video playlists in "Music" are now gone, but their names are still there. The videos are still in "Videos" and play from there 1 at a time manually.

    Hi. Downloaded iphone 6.0 and my video playlists in "Music" are now gone, but their names are still there. The videos are still in "Videos" and play from there 1 at a time manually.  It gets weirder:
    When looking at the empty screen with the name of my former playlist on top,  if I tap the edit button on the phone, tap the + button to add a 'song' to the playlist, and then tap 'Done' without adding anything, I can see all my videos in the playlist with the red minus symbol next to each of them. But as soon as I tap 'Done' again they all disappear!
    I saw on another forum that someone has had the same problem but fixed it by, and I quote
    "If you go to Get Info and change the Media Kind from Movie to Music Video under the Options tab, they all now appear in the playlists!"
    I'm happy this worked for him, but when I tap "File" in itunes, the "Get info" field is greyed out, so I can't test the solution proposed.
    Any ideas?
    Thanks

    Same problem on my ipad 2...but it works well on my iphone 4s.
    Can somebody help me?
    Thank you

  • On my iPad3, in the Music app, I can find my video playlists in my iTunes library, but they are all empty.  This works fine on my iPhone4.  Does anybody know what the problem is?

    BACKGROUND:  When I'm home, using my iPhone4 and MacPro/iTunes library, I've been watching video on my iPhone via the Home Sharing feature of the said devices.  I have lots of videos in my iTunes library, so I've set up lots of video playlists to help organize stuff, and also to more quickly zone in on the video I want to watch from my iPhone and AppleTV.   So here's the process I go through when I want to watch a video on my iPhone:  go into the Music app, then hit the "More..." selection (along the bottom right of screen), then hit the "Shared" selection, then hit the "Bob's iTunes Library" selection, then hit the "Playlists" selection (along the bottom left of screen), then find/select the video playlist of choice, then find/select the video of choice, then start watching.  Aside from the occasional spontaneous disconnect issue I've been having lately, it all works like a charm.
    (NOTE:  I tried the same procedure using the Videos app on my iPhone, but there doesn't seem to be a way to see the video playlists in this app.)
    TO THE PRESENT:  So when I got my shiny new iPad3 this Monday, the very first thing I did was try to replicate this process on the iPad3. Because both the Videos app and the Music app look very different on the iPad vs their iPhone counterparts, I tried this using the Videos app first, but ran into the same problem as on the iPhone - there's no way (as far as I can tell) to view/access the video playlists in this app – all I see are icons, one for each video.   I then tried the Music app, and steps are identical to the iPhone version.    I got as far as getting to see my playlists, and then selecting the video playlist of interest, but once there, no videos are in the playlist, only a single song(??).   In fact, none of the video playlists have any video files in them (some have song tracks??).

    Same problem on my ipad 2...but it works well on my iphone 4s.
    Can somebody help me?
    Thank you

  • How do I prevent the video file name from showing up on apple tv looping video playlist?

    Ok so here is my dilemma.  I use my apple tv as a way to loop a video playlist on my tv for guests.  I usually only have 2 videos that play and they loop continuously all day just fine.  However, when one video ends and the other begins, the file name appears (I'm assuming it's the file name) at the bottom left corner as the video is starting.  Is there a way to get rid of that?  I want a streamlined experience and it takes away from the video.  So, all in all I have an apple tv.  I use it to loop a video playlist on a tv for people to watch in the background.  When a video begins, the file name appears and I want to know if I can get rid of that through the apple tv.  Also note both videos were edited in iMovie.  Thank you.

    Welcome to the Apple Community.
    Is there a way to get rid of that?
    Unfortunately not.

  • How can I create a Music Video playlist (for Universal Dock)?

    Ok, I created a smart playlist of all my Music Videos but this is a music playlist.
    I want a *Music Video* playlist so that all my music videos will play one after the other without user interaction (when playing in the Universal Dock with it's useless remote control).
    Is this even possible?

    MVP video playlist app is the one you want download

  • Can no longer sync movie video playlist after update?

    I recently performed the 3.0 update to my iPhone 3g with no apparent issues. However, I went to play a movie video last night and discovered that only my music videos had synced (all were previously on the iPhone with no problems). Checking the iPhone settings under video I noticed that the tab lists a section for movie rentals and TV shows but does not specifically call out movies that you own. Under tv shows is where I normally expect to select which video playlist to sync for which none were available (even though I have one with 3 movie videos in it). It looks like it handles tv show video playlists only which I have not tested.
    This is different from before the update where I could sync any video playlist I wanted. The videos were all downloaded from iTunes so there should be no issues or questions about format and source. Am I missing something? Thanks.

    after you connect your iPhone and go to the 'video' tab, if you scroll down, you should see your 'movies' section which should list the 'movie' files you have in the 'movies' section of iTunes. if you select the videos you want to sync, hit save/apply and sync, you should get the videos on your iPhone.
    video playlists will only sync files in the 'tv shows' category, not files in the 'movies' category of iTunes. i'm not sure why they did it like this, but they did, and it highly annoys me. my work around is to make all of my 'movies' go into the 'tv shows' category, which i can then add to a playlist and have it synced. more work, but it works...

  • Video playlists no longer auto-playing (4.3)

    I've noticed that my music video playlists no longer auto-play from one song to the the next with the latest OS update (iPhone 4.3, Apple TV 4.2). Basically, a music video stops and the next one doesn't start until I press play again.
    Any solutions?

    I have the same problem.
    I am using an iPhone 4 (iOS 4.3) and various Apple TVs (4.2).
    When i start a playlist with music videos from the iTunes store, the first video will be played on the Apple TV and then Apple TV plays this Video again but "repeat" is not selected. Actually the next clip in the list shut be played. Seems to be a bug :-(

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Any way to get Front Row to show video playlists such as TV shows?

    I can get AppleTV now to show the TV show playlists in iTunes as their own menu items. However, I can't seem to get Front Row in 10.6 to do the same thing.
    I currently have iTunes 8.2.1 in 10.6.0. Is this something either upgrading to 10.6.1 or iTunes 9 will enable?

    Front Row users have been waiting for this option since video playlists first appeared in iTunes quite some time ago. Unfortunately, I've never been able to make it work. Why Apple can't enable what seems like a simple options is beyond me. My iPod nano can do it but Front Row on my Mac can't. I'd advise you to send Apple some Mac OS X feedback since there's no specific form for Front Row itself:
    http://www.apple.com/feedback/macosx.html
    -Doug

  • Video playlists won't play automatically?

    I have kid's videos that are less than 4 minutes apiece, so that I have to automatically click every time it goes to the next video. Without consolidating all the videos into one file, how can I make a video playlist that will go to the next video automatically? I have a video playlist, but it still stops after every video is done and I still have to manually click through to the next one.

    thanks

Maybe you are looking for

  • PDF in Safari: Fonts not displaying correctly: Has this bug been fixed?

    Last year I was trying to view a PDF on the iPad with Safari, and there was a font corruption problem: On zooming in, the type would become garbled. Now granted, I was using a non-standard font (Univers Type 1). I also noticed this problem with certa

  • Acrobat 8 "stopped working". Activation issue?

    I am using (ahem, trying to use) Acrobat 8.1 Professional on Windows Vista. I never had any problems with it, but starting a few days ago, whenever I'd start my computer, I'd get a message saying that AcroTray had stopped working and needed to close.

  • IPod function fails and music stops

    I was coming home from work tonight. When I was listening to music, not doing anything else, music would stop, phone would go back to main screen. This happened at least a dozen times...in my pocket...in my hand...it would just stop...much like when

  • Can Safari title page be colorful?

    I'm on my iPad with the latest update.  I was doing some comparison shopping online tonight and went to the Target site.  I couldn't believe what that did to my iPad's Safari Title bar...it was truly beautiful.  Too pretty to describe really.  Is the

  • VIF link state down

    Hi When I configured service profile to a blade then deploy ESXi, It works correctly for a time then I found the following error " VIF 716 link state is down" as in the attached and the server management IP is pingable also the ESXi IP is pingable du