Movies in the right format and closed caption

As you know, movies in iTunes are not formatted to be watched using a regular TV Screen, but rather to be watched using ipod. As a result, the quality of the picture of movies purchased in iTunes but watched on AppleTV in a regular TV is very poor, rather awful indeed. Can you tell me when are you planning to sell High definition Movies, or at least a higher picture quality format, in iTunes?
Also, isn't it a federal requirement to have closed captions in movies that are presented on TV for the hearing impaired? When are you planning to closed captioned your movies? Thank you
Mac Pro   Mac OS X (10.4.9)  

As you know, movies in iTunes are not formatted to be watched using a regular TV Screen, but rather to be watched using ipod. As a result, the quality of the picture of movies purchased in iTunes but watched on AppleTV in a regular TV is very poor, rather awful indeed.Strange. I have no problem watching them on a 42" plasma screen. My only complaint is with my oldest "Baseline" rofile (320 x 240) files which I created at half the recommended dvideo data rate to save storage space on my iPod. Even then, these files are "viewable" if not up to the minimum standards demanded by some users. In this case the answer is obvisou -- don't buy or use the product if it doesn't measure up to your espectations.
Can you tell me when are you planning to sell High definition Movies, or at least a higher picture quality format, in iTunes?The manner of your question seems to imply that you consided this forum to be an Apple Corporate area for direct communication between employees and the general public -- it isn't. We, like you, are just fellow users. While it is true that Apple owns and maintains the boards, they are for the purpose of peer-to-peer self-help.
Also, isn't it a federal requirement to have closed captions in movies that are presented on TV for the hearing impaired? When are you planning to closed captioned your movies?The best place to answer this question would be by reading the ADA regulations which are available on-line. Even if specifically covered, it would then behoove you to address your question to the party or parties resposible for creating the media in question and not the the store that sells them. While Apple may distribute the files, it does not own the copyrights for them nor have a creative say in their production. While I believe Apple is working on a hardware/software means of delivering CC when/if the studios choose to emplement such for on-line delivery. In fact, I doubt studios would actually object to such if the means were already in place to do so. Unfortunately, at this time "Open Captioning" (AKA Subtitling) is about the only means available at this time and means that all viewers would be required to watch subtitles (unless the studios should offer CC/non-CC versions). Same answer could apply to your format problem -- merely point out to the major movie studios that they should sell their products in multiple formats with and without captioning.

Similar Messages

  • The book who I selected doesn't move to the right in CheckedListBox and the reason is that I can't make an return.his code is good just for first user who I selected

    Imprumut = loan
    I have 6 tables: 
    I have one combobox(from where I select utilizatori(users)) and 2 CheckedListBox(Between first box and second box I have 2 buttons:imprumuta(loan) and restituie(return))
    This c# code works just for first user: Utilizator, but something's not good. When I add new utilizator(user) and select it,  the loan will be add in my SQL DataBase, but... the book who I selected doesn't move to the right in CheckedListBox and the reason
    is that I can't make an return
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using MySql.Data.MySqlClient;
    namespace proiect
        public partial class Imprumut : Form
            MySqlConnection con = new MySqlConnection("DataSource=localhost;UserID=root;database=biblio1");
            //stabilim conexiunea
            MySqlCommand comUser;//interogarea pe baza careia umplem comboBox
            MySqlDataAdapter adaptu;
            DataTable userT = new DataTable();
            MySqlCommand cmdCarti;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCarti;
            DataTable CartiTabel = new DataTable();
            MySqlCommand cmdCartiImprumutate;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCartiImprumutate;
            DataTable CartiImprumutateTabel = new DataTable();
            public int UserId
                get
                    return Convert.ToInt32(user.SelectedValue.ToString());
            void Completez_Combo_User()
                try
                    comUser = new MySqlCommand("SELECT n.userid, CONCAT(n.UserName) as UserN FROM users n left join userroles us on n.userid=us.userid left join roles r on r.roleid=us.roleid WHERE r.roleid='3'",
    con);
                    adaptu = new MySqlDataAdapter(comUser);
                    adaptu.Fill(userT);
                    user.Items.Clear();
                    user.DataSource = userT;
                    //DataTable din care sunt preluate datele pentru ComboBox user
                    user.ValueMember = "UserID";
                    //Valoarea din coloana UserID nu se afiseaza in combobox
                    user.DisplayMember = "UserN";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Completez_CheckList_Carti()
                try
                    cmdCarti = new MySqlCommand("SELECT BookID, CONCAT(title, ' ', ISBN,' ',author)as date_carte FROM books WHERE NumberLeft > 0 ORDER BY BookID", con);
                    adaptCarti = new MySqlDataAdapter(cmdCarti);
                    adaptCarti.Fill(CartiTabel);
                    imp.Items.Clear();
                    //carti.DataSource=null;
                    imp.DataSource = CartiTabel;
                    //DataTable din care sunt preluate datele pentru ComboBox carte
                    imp.ValueMember = "BookID";
                    //Valoarea din coloana BookID nu se afiseaza in combobox
                    imp.DisplayMember = "date_carte";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                void Completez_CheckList_Cartires()
                    try
                        cmdCartiImprumutate = new MySqlCommand(string.Format("SELECT b.BookID, CONCAT(title, ' ', ISBN,' ',author) as date_carte FROM books b inner join userbooks ub on ub.bookid = b.bookid
    WHERE ub.userid = {0} ORDER BY BookID", UserId), con);
                        adaptCartiImprumutate = new MySqlDataAdapter(cmdCartiImprumutate);
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                        res.Items.Clear();
                        //carti.DataSource=null;
                        res.DataSource = CartiImprumutateTabel;
                        //DataTable din care sunt preluate datele pentru ComboBox carte
                        res.ValueMember = "BookID";
                        //Valoarea din coloana BookID nu se afiseaza in combobox
                        res.DisplayMember = "date_carte";
                        //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
            void Inregistrez_imprumut_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand adaugImpr = new MySqlCommand("INSERT INTO bookshistory(UserID, BookID,BorrowDate) VALUES(@UserID, @BookID, CAST(@BorrowDate as datetime))", con);
                    MySqlCommand scadCarti = new MySqlCommand("UPDATE books SET numberleft=numberleft-1 WHERE bookid=@bookid", con);
                    MySqlCommand adauga_userbooks = new MySqlCommand("INSERT INTO userbooks(userId,bookID)VALUES(@userID,@bookID)", con);
                    adauga_userbooks.Transaction = tranzactie;
                    adaugImpr.Transaction = tranzactie;
                    scadCarti.Transaction = tranzactie;
                    try
                        foreach (int i in imp.CheckedIndices)
                            imp.SelectedIndex = i;
                            bookidi = Convert.ToInt32(imp.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                                     //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                                     //Inregistrez in tabela imprumut
                            adaugImpr.Parameters.AddWithValue("@UserID", useridu);
                            adaugImpr.Parameters.AddWithValue("@BookID", bookidi);
                            adaugImpr.Parameters.AddWithValue("@BorrowDate", azi);
                            adaugImpr.ExecuteNonQuery();
                            adaugImpr.Parameters.Clear();
                            adauga_userbooks.Parameters.AddWithValue("@userID", useridu);
                            adauga_userbooks.Parameters.AddWithValue("@bookID", bookidi);
                            adauga_userbooks.ExecuteNonQuery();
                            adauga_userbooks.Parameters.Clear();
                                    //Scad numarl de carti disponibile pentru cartea imprumutat
                            scadCarti.Parameters.AddWithValue("@bookid", bookidi);
                            scadCarti.ExecuteNonQuery();
                            scadCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        string message = ex.Message;
                        if (ex.Message.ToLower().Contains("duplicate entry"))
                            message = "Una dintre carti mai exista deja";
                        MessageBox.Show(message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Inregistrez_restituire_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand modificIstoric = new MySqlCommand("UPDATE bookshistory SET returndate = @returnDate WHERE userID = @userID AND bookID = @bookID", con);
                    MySqlCommand adaugCarti = new MySqlCommand("UPDATE books SET numberleft = numberleft + 1 WHERE bookID = @bookID", con);
                    MySqlCommand sterge_userbooks = new MySqlCommand("DELETE  FROM userbooks WHERE userID = @userID AND bookID = @bookID", con);
                    sterge_userbooks.Transaction = tranzactie;
                    modificIstoric.Transaction = tranzactie;
                    adaugCarti.Transaction = tranzactie;
                    try
                        foreach (int i in res.CheckedIndices)
                            res.SelectedIndex = i;
                            bookidi = Convert.ToInt32(res.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                            //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                            //Inregistrez in tabela imprumut
                            modificIstoric.Parameters.AddWithValue("@UserID", useridu);
                            modificIstoric.Parameters.AddWithValue("@BookID", bookidi);
                            modificIstoric.Parameters.AddWithValue("@returnDate", termenul.Value);
                            modificIstoric.ExecuteNonQuery();
                            modificIstoric.Parameters.Clear();
                            sterge_userbooks.Parameters.AddWithValue("@UserID", useridu);
                            sterge_userbooks.Parameters.AddWithValue("@BookID", bookidi);
                            sterge_userbooks.ExecuteNonQuery();
                            sterge_userbooks.Parameters.Clear();
                            //Scad numarl de carti disponibile pentru cartea imprumutat
                            //adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.ExecuteNonQuery();
                            adaugCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        MessageBox.Show(ex.Message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            public Imprumut()
                InitializeComponent();
                try
                    con.Open();
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                Completez_Combo_User();
                Completez_CheckList_Carti();
                Completez_CheckList_Cartires();
                //selecteaza_carti_utilizator();
                //  Initializez termenul din dateTimePicker la data de peste 15 zile fata de data sistemului
                termenul.Value = System.DateTime.Now.AddDays(15);
            private void imprumuta_Click(object sender, EventArgs e)
                Confirmare c = new Confirmare("Confirmati imprumutul?");
                DialogResult dr = c.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_imprumut_in_BD();
                        MessageBox.Show("Imprumutul a fost inregistrat");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Imprumutul NU a fost inregistrat");
                    imp.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        imp.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                //if (imp.CheckedItems.Count > 0)
                //    //res.Items.Clear();
                //    foreach (string str in imp.CheckedItems)
                //        res.Items.Add(str);//adauga in partea cealalta, imprumuta
                //    while (imp.CheckedItems.Count > 0)
                //        imp.Items.Remove(imp.CheckedItems[0]);
            private void restituie_Click(object sender, EventArgs e)
                Confirmare r = new Confirmare("Confirmati restituirea?");
                DialogResult dr = r.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_restituire_in_BD();
                        MessageBox.Show("Restituirea a fost inregistrata");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Restituirea NU a fost inregistrata");
                    res.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        res.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                if (res.CheckedItems.Count > 0)
                    foreach (string str in res.CheckedItems)
                        imp.Items.Add(str);
                    while (res.CheckedItems.Count > 0)
                        res.Items.Remove(res.CheckedItems[0]);
            private void button2_Click(object sender, EventArgs e)
                con.Close();
                this.Close();
            //private void selecteaza_carti_utilizator()
            //    res.Items.Clear();
            //    MySqlCommand selectcart = new MySqlCommand("select title from books,userbooks where userbooks.userid='" + user.SelectedValue.ToString() + "' and userbooks.bookid=books.bookid", con);
            //    MySqlDataReader reader = selectcart.ExecuteReader();
            //    try
            //        while(reader.Read())
            //            res.Items.Add(reader["title"]);
            //    catch(Exception ex)
            //        MessageBox.Show(ex.Message);
            //    finally
            //        reader.Close();

    Hello Vincenzzo,
    This issue seems to be a window form UI implemented related issue, for this i suggest that you could ask it to the windows form forum:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?forum=winforms
    The current forum you posted to is used to discuss and ask questions about .NET Framework Base Classes (BCL) such as Collections, I/O, Regigistry, Globalization, Reflection.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have no share tab to share videos and get them in the right format for posting on youtube, is this because i have got the trial version, someone please help.

    I cant export my movie, as there is no share tab and when i go file>share it isn't in the right format what should i do?

    The trial version of FCP X is the same as the paid version - it just stops working after 30 days, so that's not your problem.
    What version of FCP X is it, and what is the spec of the footage you're editing?
    (Open it in QuickTime and press Cmd+I to show the spec in the Inspector, then post back with the full details or a screen grab).
    Andy

  • HT1657 I am a teacher and accidentally rented a movie twice. Once in HD and it told me I could not project it over my promethean board. So I rented it in the regular format and I had problems downloading it. Could I get a refund or at least a credit?

    I am a teacher and accidentally rented a movie twice. Once in HD and it told me I could not project it over my promethean board. So I rented it in the regular format and I had problems downloading it. Could I get a refund or at least a credit?

    You can try contacting iTunes support and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Horizontal menu looks fine but sub menus drop down one and move to the right over the top of one another

    Help, My horizontal menus look great but when I add sub menus to them they drop down one place and move to the right side where they be over lapping each other. What can I do? I'm working with adobe muse.

    It might be faster to start over.  File > New > HTML page.  Insert Spry Menu.
    Customize Spry Menus by David Powers
    http://foundationphp.com/tutorials/sprymenu/customize1.php
    When making code changes, use /**CSS Comments**/ to remind yourself what you did in case things go wrong. ;-)
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • At times I'm working on some thing and the page I'm working moves to the right and goes away

    at times I'm working on some thing and the page I'm working moves to the right and goes away

    Hello Carlos,
    It sounds as though you may have 'Swipe between full-screen apps' enabled in the Trackpad pane of System Preferences. This can be accidentally triggered, and appear to move an open window off of the screen. You might try disabling this feature, or just reversing the direction to get back to the desired space.
    Mac Basics: Multi-Touch gestures
    http://support.apple.com/kb/HT4721
    Cheers,
    Allen

  • TS1359 recently purchased the dark knight and it will not play on my 1st gen apple tv what can I do it says it's not the right format

    How can I get the new batman movie to play on my apple tv 1st gen it says it's the wrong format and I don't understand that the batman movies are the only movies I've purchased that will not play. I cannot sync them or stream them.

    If you delete the 1080p version from iTunes (but rescue the file from the trash in case you need it in the future), then go to iTunes Preferences and change download option to SD or 720p HD you should be able to redownload from the cloud under the Store's Purchased section.
    I used to download SD and both HD formats but of late I use the AppleTV 1 less and only get the 1080p HD, though should probably getthe other versions in case I need them one day as they may not be there forever.  It's fiddly to download all 3 formats as you have to mess around with settings but can be done.
    I like to have a copy as there is no guarantee the files will be in iTunes cloud forever.
    AC

  • Text caption in hidden not exported (export /project captions and closed captions)

    If you have in your demonstration text caption (ballooons) in
    hidden , if you export the project caption to word it's not in
    there...
    I use to set some text captions to hidden to ease my life on
    slides that contain lots of ballons (and some over other ones) ,
    when I export the flash animation, everything is fine , all is in
    there (including the "hidden text") .
    The trouble is that if i export the "project caption and
    closed caption" to Word , the text of captions in hidden is not in
    there . (I'm not talking about exporting handsout where you have an
    option to export as well hidden slides.)
    Exept if I'm wrong, I have not founded any option to manage
    the fact to export hidden caption as well (or set all hidden
    caption of the demonstration to "not hidden") .
    It is really a problem , especially if you have done lots of
    movie that needs translation, you have sent the "exported caption"
    to the translation service and now you realise that some parts are
    missing .... ;(

    Hi There,
    When you export the doc file as Project Caption and Closed Caption. if you change the fonts and style in Doc file and the reimported it in Captivate. It will accept those changes and you can see those changes in Captivate with the same fonts settings.
    Thanks
    Priyank

  • Error by exporting Captivate to Word: "Project Captions and Closed Captions"

    Hello everybody,
    I'm from Germany, working in Heidelberg and I've got a problem! I would so much appreciate if somebody would have a solution for it.
    Nobody could help me yet - no Adobe support via chat, no Adobe support via phone. They said the forum is my last chance. I'm frustrated. But a solution is important for my ongoing project...
    Description of the problem situation:
    I've created an e-learning project in German language. This e-learning shall be translated into other languages, so I want to export a word document with the captions inside. I'm doing this way:
    File > Export > Project Captions and Closed Captions, and save it as word doc.
    But then, after I typed in a name for the word document, another "Save as"-window appears in the background (I discovered it by coincidence) and wants me to save a word template before the export process starts. Here's a screenshot:
    I don't know the reason for this second "Save as" window, so I try to save a word template (I saved it on my desktop, because I don't know where else).
    After klicking on "Save" the following error message appears:
    (in English: Error by exporting of captions. Try the following things: if Microsoft Word is installed, if Word is open, if the exported file is open etc.)
    It's not depending on the captivate file as such, I tried it with other ones (which have only one slide) - the same problem.
    It's not depending on my computer, I tried it with another one in my office - there was the same thing, same error message (but without the step of saving a word template!).
    Maybe important: My hardware and versions I'm working with...
    Windows 7 Professional (Service Pack 1), 64bit
    Adobe Captivate 8
    Microsoft Word 2010
    Does anyone has the same problem or does anyone know the answer for this problem?
    I would really really appreciate your answers!! Thank you in advance!
    Chris

    Dear Mayank, dear Lilybiri,
    thank you both soooo much, I couldn't belive what I saw as the export of captions worked!!! It was really surprising!
    I guess your both solutions helped me out - Mayank's hint of the admin's rights was the necessary information! But it first worked because Lilybiri told me to insist and to try it after I restarted the PC - and to do it several times! So it worked!! Otherwise I would probably still be confused.
    Thank you so much!
    Here's the proof
    Chris
    PS: Does anyone know, why I still have to decide if I want to save the "Adobe Captivate" Template thing?
    Every time I'm doing an export it asks me every time if I want to save or not save the "Adobe Captivate"-file...

  • CP5 and Closed Captioning

    How can I adjust the timing of the CC?  I would like to move some to match the audio better.
    I had hoped I could change the timing on the slide audio window but can't see how.
    Thank you,
    Susuan

    Hi,
    After you have added closed captions to slides, go to 'closed caption dialog'. You can reach here by following shortcut "ctrl-alt-c" or by using menu item Audio > Edit > Slide" and select tab "closed captioning"
    On top of the waveform, you will see black colored markers. Click and drag these markers to adjust the timings of every closed caption created on that slide. Changes in timing by dragging of marker is reflected in the timings mentioned below for every closed captions.
    Hope this helps.
    regards,
    Mukul

  • HDS and closed captioning

    Hey there,
    Does anyone know if CC is supported in a standardized form?
    From what I gathered, there seems to be support for a text track in the fragments sent over HTTP, but there is no mention of the correct format and usage of the text data,. Is the text track used for closed captioning (by standard, using a TTML or simialr format) or is it a 'free text' track, which can be interpreted by the HDS player at any way?
    If CC is not supported by the official standard, are there any players (e.g. OSMF, Strobe)  which support it, even by using plaugins?
    Thanks.

    There is support for both inline and external CC. Look at the ClosedCaptioning plugin for OSMF to enable CC through external TTML files. That's in the OSMF repo. Look for the OSMFCCDecoder for inline CC. It's included in AMS installs. But it is much harder to set up to test.

  • What determines whether the Label name and/or Caption appears in the context help window but in other cases, both the label and caption appear in the context help window?

    I am trying to polish an application, and find that I cannot seem to reliably control which of the label or caption text appears in the context help window because I don't understand what rules are in place to determine which should appear. It seems like if I reate a named constant, then use it's right click menu command "Create Indicator" I get a control with only a Label (as long as I don't add a caption). This then appears in the context help window as the label name followed by the description text (after entering some description text). But if I add a caption, the label name is shown in bracket
    s which is a 'feature' I would like to avoid, because I have certain controls where I would like to use a descriptive variable name on the block diagram side without using so much space on the front panel. It seems like there is no way to avoid showing the Label name in the context help for a control/indicator. Is this true?
    I thought the purpose of having a seperate caption was to make the text that appears with a control programmatically controllable, but if that control is not extended to what appears in the context help window, it limits the usefulness of the caption and forces me to re-consider some Label names. However, the problem goes deeper than that because then even when I make the label and caption exactly the same, or if I delete (via a select caption text-backspace or select caption text- delete key .. sequence) the caption for a control, the label name in the context help window still appears in square brackets!
    Can I have complete control over the context help fo
    r a particular control (or has anyone found a third-party context help solution that functions compatibly with LabVIEW 7 in a built application that they will be so kind as to recommend?)
    I have used LabVIEW for three years, and I am now using LabVIEW 7.0.

    Sorry for that.. I was changing the text of my question and didn't read carefully enough in the preview stage. I wanted it to read "What determines whether the Label name and/or Caption appears in the context help window?"

  • CP8 Interactions and slides with audio and closed captions - not working well - please help

    Okay, I am using cp8 on a windows 8 64 bit machine. I have placed an interaction on a slide. I also have audio on that slide and closed captions.
    When I get to the slide, the audio does not play because the mere fact that the interaction is on there makes the slide pause upon enter. I could have the student click play on the playbar to go, but that is not required on slides without interactions, so I don't like that solution. I also could do an On Enter slide Play Audio and pick the wav file, but then the closed captions don't show up.
    So, the question is, how do I have the slide automatically play the audio at the slide level without the student having to click the play button to go?? Slides with interactions should behave just like other slides with objects/widgets on them. This auto pausing thing is driving me nuts!
    Thanks,
      Lori

    Lori, this is puzzling! Are you talking about one of the learning interactions included with Captivate? If yes, which one? My puzzlement is due to the fact that what you described is what happened in CP6: interaction paused slide at first frame (I had a workaround for audio). But since CP7 interactions do not pause any slide, you'll have to provide the pause yourself. There are some exceptions (games).
    Lilybiri

  • Language selection and closed captioning

    hi! i'm using adobe captivate 5 and i'm wondering if i can implement language selection for the narration in my presentation and at the same time have closed caption with it.
    like, i could choose english for the audio and caption then later choose i.e. german.
    thanks!

    I don't think you could do this in the same lesson without a lot of fancy AS3 widgetry underneath the hood.  It would not be easy.
    Your quickest and easiest way to implement such an idea is simply to have two versions of your course, one with English and the other in German,  Then you have a landing page that offers the learner the option (clickbox or button) to select their preferred language.  Clicking one or the other will branch them to open the relevant lesson.
    Where you may encounter problems with this is when you are using an LMS.  If you have both English and German lessons packaged together in the same course, the LMS will think the learner has only completed half of the total lessons.  In that case, you are forced to have two entirely different courses packaged as an English SCORM and a German SCORM.  The user would then be selecting their preferred language in the LMS, not in the Captivate lesson.

  • HT1689 I purchased TV shows, I was billed for them, but they won't play on my Macbook because it says they are a certain HD that doesn't work - I am trying to find a way to return the shows or buy them in the right format

    I purchased TV shows, I was billed for them, but they won't play on my Macbook because it says they are a certain HD that doesn't work - I am trying to find a way to return the shows or buy them in the right format

    I am using MAC OSx 10.5.8 (9L31a) as my operation system.  The TV says "No signal.  Check connected device's power, cable connection and source selection."  Seems to me that that goes in hand with what the Samsung tech said about the Mac needing to be forces to use the external display.  But how do I do that?

Maybe you are looking for

  • Problems with a recursive stack

    Hello! I?ve got problems with a recursive stack. I?ve got a stack overflow error. Here is my push method. public void push(Object o)     StackRekursiv stack = new StackRekursiv();     stack.top = top;     stack.rest = rest;     if(top==null && rest==

  • Constructing Jtree with data from Database

    Hi I am new to JTree and I need some help. My problem goes like this. I have a table in the data base which has data like Folder_Nr, Folder_Name, Folder_Prev_Nr, Folder_Typ_Nr, Folder_Access. If the Folder_Nr is 1 and folder_prev_nr =0, then it is a

  • When trying to burn a DVD, my burner is not recognized

    I am running WinXP. I recently used Adobe Premiere4, for about a year had no issues with   burning. just recently, after creating the show from video shot with a JVC GZ-MG630 camcorder, then to share and burn, the rendering began and roughly 70% in,

  • Installing Photoshop CS6 to second PC

    I have the student and teacher version of Photoshop CS6 extended.  When I try to install on my second PC it has an error message to teh effect that the software is a pirate copy. Is it not possible to have this version on 2 PC's simultaneously?  How

  • To find the implementing classes of an interface

    Hi, Does anyone know a function module or class using which I can find all implementing classes of an interface? Regards, Sukru