MORE photoshop questions

I have a hundred 3000x2000 jpegs to take into FCP.
I have read a tutorial or two about formatting these in Photoshop (I have the CS version). They all confuse me.
I am working in NTSC.
Can someone make this a simple explanation?
What size do I resize them to? How many dpi? Square pixels? Duh?

If possible, try not to use JPEG images as it is a lossey format. Use PICT, PNG, TIF or PSD format instead.
DPI is meaningless in video. Video goes by pixel dimensions and you already know those. As for prep in Photoshop, if the images are photographs**, chances are that none of them were taken at the same aspect ratio of NTSC video so Photoshop may not be needed prior to importing into FCP. Here's what I do and it's been working fine for years:
1. Set the still frame duration in FCP's preferences
2. Import the entire folder of images into FCP (File->Import->Folder)
3. If you want to place them end to end on the Timeline, drag the entire folder from the Browser to the Timeline. If you want to include a transition, set the transition you need as the default and drag the entire folder of images from the Browser to the right side of the Canvas window. You'll see the hidden menu pop up. Drop the folder on "Overwrite with Transition."
4. Once in the Timeline, FCP automatically scales the images to fit the sequence settings. If needed, you can change the scale, centering, rotation and aspect ratio in the Motion tab of the Viewer window. If you want to animated the images, use keyframes to adjust the parameters needed over the duration of the image.
5. If you’ve set Photoshop as the External Editor in FCP’s preferences, you can right-click on any image in FCP’s Timeline to launch Photoshop and work on the image. Once any changes are saved in Photoshop, click back to FCP and the changes should be updated in the Timeline. Typically I’ll use the 3-Way Color Corrector in FCP for brightness, contrast and color adjustments, but use Photoshop for most other corrections or filtering.
*Note: since some of your images might be vertically composed, there will be black on the left and right sides of the image. Likewise, horizontal images may have black below and above the image. If none of the images will be animated, you could probably go ahead and batch resize them in Photoshop closer to FCP’s sequence resolution.
ALWAYS view your work on an external TV monitor (unless you're editing content solely for web or CD-ROM delivery).
-DH

Similar Messages

  • I need some more interview question with answer on modeling,reporting.

    i need some more interview question with answer on modeling,reporting.

    Hi,
    You may find tons of topic about interview question. Please try to search forums before opening a post next time.Take a look at the link below.
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=bwinterviewquestions&adv=true&adv_sdn_all_sdn_author_name=
    Regards,
    ®

  • Every time I try to get on the ipod, it says I have to add more security questions, but none are listed, just two buttons that say submit.

    Every time I try to get on the Ipod games, it says I have to add more security questions, but no questions are listed, just two buttons that say "Submit" and places to put the answers to the unstated questions.  It also asks for a second email address.  It then proceeds to lock up.  Is this a scam of some sort.  There is nothing on the apple website about having additional security questions other than the one, or having a second email to operate the ipod.

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    Whichever method you use, you probably won't get a response until the 26th. If you absolutely must make a purchase before then, create a new Apple ID; you won't be able to transfer previous purchases or iTunes Store credit to it.
    (95471)

  • I have an Adobe Indesign to Photoshop question - Smart Objects

    I have an Adobe Indesign to Photoshop question - Smart Objects
    I am copying and placing InDesign photo silhouettes and placing them into a Photoshop document for an online graphic.
    I believe that the color holds up very well. It's when the JPG goes through a CMS ingest that the colors warp. A photo technician is able to correct the color.
    I just need to get some insight on my process that (I think) I invented - since I don't see any discussions or videos online that back me up.
    Any thoughts - or who could I access that might have an answer for me.
    Thanks!

    You haven't invented anything. Your server-side processing (based on something involving ImageMagik with PHP most likely) is simply stripping/ ignoring color profiles and converting the colors. This is very much the same issue as in your other post - your procedures just don't realyl make sense and you're basicalyl screwing yourself by using this methodology.
    Mylenium

  • A Simpler, More Direct Question About Merge Joins

    This thread is related to Merge Joins Should Be Faster and Merge Join but asks a simpler, more direct question:
    Why does merge sort join choose to sort data that is already sorted? Here are some Explain query plans to illustrate my point.
    SQL> EXPLAIN PLAN FOR
      2  SELECT * FROM spoTriples ORDER BY s;
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT |              |   998K|    35M|  5311   (1)| 00:01:04|
    |   1 |  INDEX FULL SCAN | PKSPOTRIPLES |   998K|    35M|  5311   (1)| 00:01:04|
    ---------------------------------------------------------------------------------Notice that the plan does not involve a SORT operation. This is because spoTriples is an Index-Organized Table on the primary key index of (s,p,o), which contains all of the columns in the table. This means the table is already sorted on s, which is the column in the ORDER BY clause. The optimizer is taking advantage of the fact that the table is already sorted, which it should.
    Now look at this plan:
    SQL> EXPLAIN PLAN FOR
      2  SELECT /*+ USE_MERGE(t1 t2) */ t1.s, t2.s
      3  FROM spoTriples t1, spoTriples t2
      4  WHERE t1.s = t2.s;
    Explained.
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT       |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   1 |  MERGE JOIN            |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   2 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   3 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    |*  4 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   5 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    Predicate Information (identified by operation id):
       4 - access("T1"."S"="T2"."S")
           filter("T1"."S"="T2"."S")I'm doing a self join on the column by which the table is sorted. I'm using a hint to force a merge join, but despite the data already being sorted, the optimizer insists on sorting each instance of spoTriples before doing the merge join. The sort should be unnecessary for the same reason that it is unnecessary in the case with the ORDER BY above.
    Is there anyway to make Oracle be aware of and take advantage of the fact that it doesn't have to sort this data before merge joining it?

    Licensing questions are best addressed by visiting the Oracle store, or contacting a salesrep in your area
    But I doubt you can redistribute the product if you aren't licensed yourself.
    Question 3 and 4 have obvious answers
    3: Even if you could this is illegal
    4: if tnsping is not included in the client, tnsping is not included in the client, and there will be no replacement.
    Tnsping only establishes whether a listener is running and shouldn't be called from an application
    Sybrand Bakker
    Senior Oracle DBA

  • Scanning thousands of pics + photoshop question

    I'm looking at 3 huge boxes of carefully packed photos, probably between 2-3 thousand pics. I've had this silly notion I would scan them in over time. Right.  A few years later plus a bit more maturity = sanity. I'm wanting to scan these, but am now being realistic. Thought I'd turn to this forum for general opinions. Hope you'll indulge me as I wasn't really sure where else I could ask this kind of question except in the heart of a forum that deal with photos + photoshop.
    I'm learning there are these companies now that I could send in boxes of pictures and they will scan them in for a hefty fee. I've been doing some research. Wanted to see if there were any photoshop users who have gone down a similar path and could offer some opinions.
    #1 - what size do you recommend: 300dpi or 600dpi. I'm biased towards higher quality, but I'm not a rich man.
    #2 - Anyone have any dealings with companies to offer opinions on who to choose or not so choose? I've been trying to find some kind of online feedback about companies, but haven't been successful so far. Any idea on where to look for feedback on companies?
    I'm open to feedback on anything related to this. I'll want to go through the pics once I receive them and clean them up in PS of course. Any ideas on how to store them, arrange them, maybe some common errors to avoid when setting all this up.
    I certainly would appreciate any help you folks could offer.
    Thanks,
    Robert

    I appreciate all the replies. Good discussion, lots to consider. Time is the hardest element for me if I do home scanning. Maybe I'll just wait a few more years for things to slow down a bit and do it all at home. I have two daughters graduating in the next 2 years, getting them ready for college, my career has really taken off and I'm enjoying my work, stuff like that. Just not sure where I'd get the time until the girls are gone from the house and things quiet down a bit.
    Talked with my wife about the details of this, I can see me setting up our computer room (the dining room) and converting it from holding 3 computers to my one computer + tables and such set up for a good long scanning season. That will happen soon.
    Based on what all has been said about scanners, not sure I need to purchase another one. I have an Epson 4180 perfection. Scans up to 6 photos at once, does high resolution. Not the fastest in the world, but if I'm going to lock into a long project like this, not sure a little boost in scanning speed is going to help me that much. I notice I slow down once I get a neat picture on my screen. I study it, crop, color adjust, fix scratches, etc. I get lost in the restoration process, so not sure the scanning speed is much of an issue. I'll just have to look at it as a long term project to begin one winter when I'm ready to dedicate tons of time.
    Concerning lightroom, if I didn't own Aperture already, I would purchase it. Aperture and lightroom do the same things. My only complaint with Aperture is that is bogs down sometimes in the retouching of raw pics. Other than that, its a solid program. If I were to purchase lightroom, not sure what the advantage would be. Also, I looked into the idea of trying to get my pics out of Aperture. My goodness, they have those originals buried so deep in a database, scattered here and there, that it would be next to impossible to get the originals out. I can use an export feature, but wonder if it really keeps the original quality or it changes it through some compression formula.
    I honestly still like the idea of sending my pics off to some company for mass scanning, but realize that comes with inherent risks. Those types of scanning situations are more geared towards 300/600 dpi scans, not the high quality scans we have all agreed upon here. That blows that apart. I suppose those are good for the person who just doesn't want to mess with it all and simply needs an average scan for whatever purpose.
    Only other question in my mind...I'm using an old mac right now. I honestly love macs. But I will need to upgrade in the next few years as this one is getting old. I haven't kept up with any type of debates (and am not really interested in the long standing grudges either) about mac vs pc. What I am interested in...I notice that pc's continue to get cheaper. Actually, macs have even come down in price a little (shocking). Is there that much of a gap between macs and pc's these days besides the OS?  I mean, the speed advantage of a mac in the past was clear to me with audio/visual. Is that still the case or would y'all say the gap has narrowed?
    Appreciate the feedback all, good thread.
    Robert

  • Editing with Photoshop question

    Hey guys,
    I am reposting this under a new subject.
    My question is concerning the presets in preferences for an external editor.
    I use PS4 and am wondering what is the deference between the tiff and psd selections.
    I have played around with both and notice the file size changes when I bring a picture back into aperture. There is also a huge deference between 8bit and 16bit. Also what dpi setting is a good all around setting. I am interested in hearing some different views on how you set this up and why.
    Thanks in advance for any advice.
    Blessings!
    John

    John Pursley wrote:
    Is the sRGB IE61966-2.1 setting the one you are referring to as sRGB?
    Yes, that is the one I am referring to.
    I used to spend alot of time messing around with my images, but now I would rather just keep the good ones that do not require much post-production work. Sending the file in that colorspace allows me to view it as it will appear in the intended final forms I use (as mentioned above; web, print shop, digital files).
    I would be converting it to that colorspace at some point anyway, so I just send the file to Photoshop in the final colorspace (I am not a professional, so potentially losing some color is not the issue it might be if I had clients).
    I shoot with a Nikon D300 and it has two settings sRGB and AdobeRGB.
    I have it set on sRGB.
    I shoot a Nikon D80 and use the same default colorspace, but I had previously used the AdobeRGB when I was strictly using Bridge > ACR > Photoshop workflow because ACR defaults to the flatter looking starting point anyway.
    AdobeRGB is slightly smaller than ProPhoto RGB, but larger than sRGB colorspace.
    I tend to agree with RWBoyer on being able to see the colors and having confidence in time spent on adjustments, so I stay in the sRGB colorspace simply because my monitor displays a larger portion of that colorspace than either AdobeRGB or ProPhotoRGB.
    In reality, if your end goal is for print, then the final print is going to be the deciding factor for you (and whether you want to go with the larger colorspace if that looks better to you).
    Perhaps others will have some different viewpoints to give you more information.

  • A few more Solaris questions

    I'm sure this isn't the best place to post this, but I currently have a file server running Solaris 11 with a raid-z2 pool and I'm building a new vmware server out of some parts I've managed to get some good deals on might I add.
    I'm building on a supermicro x8dt3-f board that has an LSI controller on board with a pair of xeon 5570's and 48gb ram. The processors and ram actually came from a sun blade that was tossed out for recycling, sadly the box had never been opened, but i got these for pennies on the dollar, so i'm happy
    I'd like to move the current Solaris file server into a VM on the new ESXi 5.1 host and passthrough the LSI controller.
    I've been reading, and reading and reading and i find the more i read, the more questions I have and the less clear some of the answers are getting.
    First, from what I gather, Solaris 11 has only been added to the supported guest list in ESXi with the recent esxi 5.1 version as I understand? So all should be fine here? Can someone confirm?
    second, i've read about issues with LSI controllers under solaris 11. Is this something that has been addressed in 11.1?
    Third, trying to find the best method to conver the physical system to virtual under ESXi
    The first thing I plan on doing is backing up my data from the pool, though it will be scattered across a few systems. Then I plan on exporting the pool to move the disks physically to the new controller in the VM. The question I have here, is will the share flags and permissions be retained when I import the pool? or do I have to redo all that?
    But then, what's the best method to move it to a VM? The one document I see come up the most is moving a physical solaris system into a zone on another system. Can it be transferred to the global zone? Could I do a new install in a VM, and move the existing install to the global zone, import my pool and call it a daY?
    Or do I dd the OS disk, convert the image and drop it into vmware, get the hardware working, and then import the pool?
    Or is there a better way? Has anyone got any online docs in mind that may help specifically with this migration? everything i'm finding is scattered, maybe i'm not looking for the right things but I could use some pointers if anyone has suggestions.
    I suppose I should note, i have it integrated with an Active directory, this is why i'm worried about permissions being retained when i import the pool
    I just want this to go as quickly and smoothly as possible, with as little headache as possible. it's my home setup, so realistically it takes the time it takes as long as things go smooth

    I know this may not be the answer you are looking for, but I think you are making it more difficult than it needs to be.
    One other option is to leave your Solaris Storage server on the bare metal of this new beast of a machine you are piecing together. Then, use VirtualBox 4.2.6 which is support quite well in Solaris to run whatever virtual machines you where intending ESXi to be used for.
    This way you have the fastest possible storage setup without the issues of hardware passthrough. And the fast storage now benefits the VMs running on it. Not to mention the other neat options now of running lzjb compression for the VMs. either using zvols for the VMs, or just virtualbox vdi files sitting on a compressed zfs filesystem.
    As far as the LSI 1068E controller goes, their website only shows drivers for Solaris 10. So unless Solaris 11 has the drivers built in, you may not be able to use that controller. Believe me I feel your pain in this one.. I have the d#$$!est time finding good SAS HBAs for Solaris 11.1 and the few I did find had questionable drivers. Areca 1320 cards seem to work well, as do Adaptec 64xx and 68xx raid cards. LSI has a new line that supposedly works with Solaris 11.
    My advice is to try a baremetal install of Solaris 11.1 on the new machine and see if you can recognize drives on the LSI controller, if not then use the 6 onboard SATA ports if that is enough for the drives. Otherwise purchase an Areca 1320 which is only like 230 bucks for the 8 port version. http://www.newegg.com/Product/Product.aspx?Item=N82E16816151116R

  • More JTextPane Questions

    Hi Guys
    I posted this question on the Java Ranch forums yesterday evening, but I haven't received a response yet, so I figured that I'd try these forums as well. You can view the other thread here; http://www.coderanch.com/t/554155/GUI/java/JTextPane-Questions.
    We're trying to build a simple WYSIWYG HTML editor using a JTextPane. I've used Charles Bell's example, available here; http://www.artima.com/forums/flat.jsp?forum=1&thread=1276 as a reference. My biggest gripe with it at the moment is that bullets aren't working as I would expect them to. If I highlight text and click the "Bullet" button, I want a bullet to be placed immediately before the highlighted text, on the same line. If I try to do this, my code is creating bullets, but it moves the selected text one line down. I've gone through the Oracle tutorial on text components, but I couldn't find anything that helped me with this particular issue.
    Also, if I copy and paste text into my JTextPane, the pasted text always appears on a new line (a new paragraph tag in the actual HTML). Is there a way to prevent the JTextPane from creating new paragraphs?
    Lastly, I'm flabbergasted as to why my buttons actually work. I can't see anything that explicitly links my buttons to my HTMLEditorKit or my JTextPane. Short of a little voodoo man living under my keyboard, how on earth do my buttons/actions know that they should update the JTextPane?
    The code is as follows;
    package myhtmleditor;
    import java.awt.BorderLayout;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.Action;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextPane;
    import javax.swing.SwingUtilities;
    import javax.swing.text.StyledEditorKit;
    import javax.swing.text.html.HTML;
    import javax.swing.text.html.HTMLDocument;
    import javax.swing.text.html.HTMLEditorKit;
    public class Main {
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("My HTML Editor");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setSize(500, 500);
                    frame.setLayout(new BorderLayout());
                    JPanel buttonsPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
                    HTMLDocument document = new HTMLDocument();
                    final JTextPane htmlEditorPane = new JTextPane(document);
                    Action bold = new StyledEditorKit.BoldAction();
                    Action italic = new StyledEditorKit.ItalicAction();
                    Action underline = new StyledEditorKit.UnderlineAction();
                    JButton boldButton = new JButton(bold);
                    boldButton.setText("Bold");
                    buttonsPanel.add(boldButton);
                    JButton italicButton = new JButton(italic);
                    italicButton.setText("Italic");
                    buttonsPanel.add(italicButton);
                    JButton underlineButton = new JButton(underline);
                    underlineButton.setText("Underline");
                    buttonsPanel.add(underlineButton);
                    HTMLEditorKit.InsertHTMLTextAction bulletAction = new HTMLEditorKit.InsertHTMLTextAction("Bullet", "<ul><li> </li></ul>", HTML.Tag.BODY, HTML.Tag.UL);
                    JButton bulletButton = new JButton(bulletAction);
                    bulletButton.setText("Bullet");
                    buttonsPanel.add(bulletButton);
                    JButton printButton = new JButton("Print to Console");
                    printButton.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                            System.out.println(htmlEditorPane.getText());
                    buttonsPanel.add(printButton);
                    htmlEditorPane.setContentType("text/html");
                    HTMLEditorKit editorKit = new HTMLEditorKit();
                    htmlEditorPane.setEditorKit(editorKit);
                    frame.add(buttonsPanel, BorderLayout.NORTH);
                    frame.add(new JScrollPane(htmlEditorPane), BorderLayout.CENTER);
                    frame.setVisible(true);
    }Thank you for your input.
    Cheers,
    rfnel

    See how the bullet action changes HTML (compare getText() result before and after the bullet applying. It seems you need more smart way of adding bullets.
    Answer some questions if user selects whole paragraph should the <p> tag be removed and replaced with <li>? If user selects just one word in the paragraph and pressed bullet should the whole paragraph be bulleted?
    When you copy something you clipboard contains something like this "<html><body> content</body></html>". Try to override read() method of your kit (or Reader) to skip the main tags.
    For components see ObjectView class source.
    In fact when HTMLDocument is created from String components classes are created and stored in attributes of Elements. Then during rendering ComponentView extension (ObjectView) creates components.

  • More XMP questions / filtering on edit settings

    alright, i've imported one or two of my old CS projects into LR1.0.
    now i have a couple of questions.
    in CS, i used sidecar XMP files, both as a way to avoid the mystery of the photoshop database, and to future proof myself for when something like LR came around.
    now, if i import a CS 'raw' directory into LR, LR is picking up the XMP data. nice! but what happens if i import files in their current location, and then tell LR to use XMP files as well? will LR overwrite the CS .xmp that's sitting there? or do the LR .xmp files go somewhere else?
    also, when i check 'use XMP' files in the LR preferences, i hear the disk starting to churn. does it go off and create XMPs for every file in the library which existed prior to turning on the XMP switch?
    related to this, generally speaking, the files in my CS directories with a corresponding .xmp file are the ones which i also flagged as 'keep'. being a packrat, i never deleted the duds. is there a way in LR to filter on files which have had edits made? if i can do this, then i can very easily delete all the duds from the LR library. for now, i have to scan thru the filmstrip view for the +/- icon, select and label... this is going to be kind of time consuming for 10,000+ images...
    i suppose another solution to this problem would be if LR could read the CS database and import flags, but this is probably too much to ask!
    thanks for any replies.

    its not unreasonable to read "CS" as "CS2" given that probably most of the known universe has upgraded... except for me :)
    anyway it was my other post in which i emphasized it was not CS2. oh well.
    also i made post #9 which post #7 was the last post, so i didnt see your response, sean. we must have posted simultaneously.
    anyway... time for bed... ugh.

  • I'm trying to purchase but buy results in "add 3 more security questions"

    After Press buy, message is add three security questions. But when i goto and manage my account, it has one security question and i don't see where to add more.
    Or why 3 in addition to the one I see already within my account?
    Thank you!

    Welcome to the Apple Community.
    Have you tried repurchasing again after amending your security at my Apple ID.

  • More XControl questions / issues

    XControl 1, X1, has two other XControls, X2 and X3, on its
    block diagram
    When I open a VI with X1 on it, the Init ability is called
    for X2 and X3 three times each.  X1’s
    Init ability is called one time.  (The
    other VIs you see pop up are called from X2 and X3 as a result of Init
    executing, so they illustrate the Init calls. 
    They close when Uninit is called, and you can see as much when you close
    the VI and project)
    When I close said VI, the Uninit ability is called for X1
    and called twice for X2 and X3.  This, of
    course, leaves one instance of X2 and X3 left open.  Consequently, references and VI’s I opened as
    a result of the Init call are left open (you notice the two subvi's still open). 
    Once I close the project, the Uninit abilities are called
    for X2 and X3, closing the remaining resources.
    There is a file in the folder called log.txt I write to in
    the init and Uninit abilities for each XControl.  If you open it after each step you can see
    what I’m talking about.
    Additional things: 
    After I close the VI, but not the project, X2 and X3 are of course
    locked.  When I right click “Unlock this
    library for Editing”, LabVIEW crashes with a .cpp error.  http://forums.ni.com/t5/LabVIEW/Error-when-I-Unlock-Library-for-Editing-with-XControl/m-p/1009044#M4...
    My real project loads the XControls (and executes the Init ability) as soon as it opens for
    some reason, and makes it nearly impossible to edit them unless I close and open the
    XControls individually, due to the .cpp error above.
    Questions
    Is it expected that an XControl an another XControl should be called more than once?
    Why don't they get unloaded when the main XControl is closed and unloaded?
    Why the .cpp error?
    Tim Elsey
    LabVIEW 2010, 2012
    Certified LabVIEW Architect
    Attachments:
    XControl Forum Test source.zip ‏165 KB
    XControl demo video.zip ‏3598 KB

    Hello elset191
    Here is the Corrective Action Request that references your issue.  I have included you as a customer whom this problem is affecting.
    Request #: 302463
    Description: XControls remain open after corresponding VI is closed and crash occurs, XControl cpp error in LabVIEW 8.6.1f1 (Fatal Internal Error: "ThEvent.cpp", line 184) 
    I'm sorry that this has been a frustration to you.  The fastest way to resolve this issue appears to upgrade.  Have you attempted to reproduce this error in LabVIEW 2010 SP1?  I was unable to reproduce this situation in LabVIEW 2010 SP1.
    The CPP error is due to some issue with how this has been internally developed.  It appears to have been resolved in LabVIEW 2010 SP1 as do the other issues you have been dealing with.  Can you please confirm this for me?  I am happy to further address this issue to ensure your success.  All the best!
    P.S.  I have provided a link to the LabVIEW 8.6 Help simply for competeness.
    Editing XControls that are in Use
    http://zone.ni.com/reference/en-XX/help/371361E-01/lvhowto/editing_xcontrols_in_use/
    Sincerely,
    Greg S.

  • More clear question  for slideshow help - Kin?

    Hi Kin,
    You have been very helpful in getting me this far - I know
    this last detail would be a very easy thing for you to do.
    I tried to get it to work for the dssmTitle by adding another
    dssmTitle.addObserver
    http://www.tsgraphics.net/slideshow_test/
    The mouseover function is fine the way it is. It's how it
    behaves during the slideshow that is a little wierd - it just sits
    on the first story. It would be great if it switched to each story
    like the small nav at the bottom highlights to each corresponding
    nav to its story during the slideshow.
    I hope this is more clear.
    Thanks!
    TS

    Hi TS,
    So it sounds like you want to change the current row of
    dschapters and stop the slide show on mouesover, and then re-enable
    the slideshow on mouseout right?
    Try something like this:
    var gTimerID = 0;
    var gInterval = 3000;
    function StartSlideShow()
    StopSlideShow();
    gTimerID = setInterval(function(){
    dschapters.setCurrentRowNumber((dschapters.getCurrentRowNumber() +
    1) % dschapters.getRowCount()); }, gInterval);
    function StopSlideShow()
    if (gTimerID)
    clearInterval(gTimerID);
    gTimerID = 0;
    dschapters.addObserver(function(nt,n,d)
    if (nt == "onPostLoad")
    StartSlideShow();
    <div id="nav" spry:detailregion="dschapters"
    spry:repeatchildren="dschapters" spry:choose="choose">
    <div spry:when="{ds_RowID} == {ds_CurrentRowID}"
    id="nav2" class="currentChapter" spry:setrow="dschapters"
    spry:hover="hoverRow"><img src="{thPhoto}"
    onmouseover="StopSlideShow();
    dschapters.setCurrentRow('{ds_RowID}');"
    onmouseout="StartSlideShow();" /> </div>
    <div spry:default="default" id="nav2"
    spry:setrow="dschapters" spry:hover="hoverRow"><img
    src="{thPhoto}" onmouseover="StopSlideShow();
    dschapters.setCurrentRow('{ds_RowID}')"
    onmouseout="StartSlideShow();" /></div>
    </div>
    On a side note, if you are trying to bring your question to
    the top of the forum again, post a message in your original thread
    ... that is don't create a new thread each time ... that way the
    context of your questions is preserved for others to read. If you
    post new threads each time, folks have to search for your previous
    posts/threads to get context.
    Thanks,
    --== Kin ==--

  • More font questions

    What I can't seem to find in any of these replies--I probably just haven't found the right one yet!--is whether the new OS X Tiger can use older mac fonts or any of the free mac fonts available on the internet...and that goes for all free mac downloads. I can't seem to get ANYTHING in a format that actually works with this OS!
    I have hundreds of great fonts on my older macs, but I'm guessing if they are not TTF (which most, of course, will not be) they won't transfer. Also, it seems that the vast majority of downloads come through as .sit files--not sure what that is, but they are not registering as fonts. Now what?

    Hi rosy,
    Welcome to the discussions and the AppleWorks forum.
    This is more an OS X question than an Appleworks one, and you may get a more definitive reply by pisting in the Tiger forum.
    ".sit" is a suffix that identifies a file compressed using Stuffit, the 'standard' compression application for Mac under OS 9 and earlier. To open these you need the free download of Stuffit Expander.
    If your older fonts are TrueType (which most of the scaleable ones will be) they should be useable in Tiger. Bit Map fonts (any that showed some sizes in black and others in outline in the Font menu on your older Mac) may not be useable in OS X.
    Regards,
    Barry

  • More MOH Questions

    Hi Everyone
    I'm looking at the MOH options now and I have a question, I went to the MOH audio source and the MOH server configuration. And I see that each one has an option to allow multicasting, but in the server configuration they have base multi-cast IP and base mutli-cast port. I wanted to know is th IP 239.1.1.1 and what would I put for the port.
    Eric

    Hi,
    You have to put the valid multicast port numbers which include even numbers that range from 16384 to 32767.
    Here in your case the MoH server will be streaming a multicast audio source to 239.1.1.1 on RTP port specified.
    Refer below link for MOH Configuration and more detail,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/3_1_2/ccmcfg/b04moh.html#wp1035654
    Regards,
    Venkatesh

Maybe you are looking for

  • Windows 8 on macbook air

    Anybody aware of any challenges installing Windows 8 on Macbook Air? Just want to ensure that all audio, video and all ports continue to work when installing Windows 8. Don't want to take the plunge without getting some advice, since the system requi

  • Bridge cc crash

    bridge CC crash  when it explore folder with very big files. I had the same trouble before with bridge CS6 until an uptade fixed the bugg. Does somebody know this problem? Witch files crach Bridge CC? How can we fix that?

  • Using iPhoto 11

    I am creating a book- Asian theme; page numbers are not placed consistently on page - sometime hidden by text box; will the finished book print this way or does Kodak fix it?

  • Installing 10.4.6 over 10.4.8 to access iLife 06 apps

    Hi, I'm running 10.4.8 on my G5 which I've updated since 2005 and I've got iLife 05 applications. I just discovered that my retail version of Tiger 10.4.6 (bought for another G4), has iLife 06 on it. Can I get the iLife Applications from this (set of

  • Retrive data based on this single field called percentage remaining

    Hi Abap Experts,          i have two fields in selection screen . i used tables called  TNRO and NRIV. 1. Number Range objects (NRIV-OBJECT) 2. Percentage Remaining (TNRO-PERCENTAGE) Percentage Remaining is an optional field. if this is entered the r