Nesting seq question

Editing question. When I nest a sequence and bring that seq into the master seq the audio is still two mono tracks. What am I doing wrong?? I've see tutorials where the nested seq audio in in a single track.

the button/setting shooternz points out is the main setting that changes this behavior. after that depending on that setting you may need to have the right track targeting and source patching selected.  these give you flexibility to bring in your sequences into the "master sequence" as you'd like. when you drag a sequence from the bin to your master sequence timeline, it should show one nested video clip and one nested audio clip.  you can still add individual video or audio clips (not sequences) to your master sequence.  https://tv.adobe.com/watch/learn-premiere-pro-cs6/nesting-sequences/

Similar Messages

  • Tutorial Q&E : Implementing Nested Classes, Question 2

    //1.3
    Taken from http://java.sun.com/docs/books/tutorial/java/javaOO/QandE/nested-answers.html
    import java.util.*;
    public class Problem {
    public static void main(String[] args) {
    Timer timer = new Timer();
    timer.schedule(new TimerTask() {
    public void run() {
    System.out.println("Exiting.");
    timer.cancel();
    5000);
    System.out.println("In 5 seconds this application will exit. ");
    Question 2: The program Problem.java (above) doesn't compile. What do you need to do to make it compile? Why?
    Answer 2: Add final in front of the declaration of the timer variable. A nested class declared within a method has access to any final, local variables in scope.
    Could somebody please elaborate on this answer for me? I don't really feel it gives enough information for me to understand fully the "why?" part.
    Thanks
    Mark

    Hi,
    the problem is that the instace of the nested class is still existing after the execution of the method has been finished. But how should it have access to a variable which doesn't exists anymore?
    The only way to solve this problem is to declare the variable as final. Because then the value of the variable is known when the instance of the nested class is created an can be copied. Then at each place in the nested class where the variable is used, the copy is used instead. This is only valid because the value of the variable cannot be changed after the creation of the nested class' instance.
    Andre

  • Somewhat complicated nested generics question

    I have a slightly complicated generics question. I have some parameterized code that looks something like:
    public <T extends MyBaseObject> Map<String,T> loadObjectCache (Class<T> clazz) {
        // load objects of type T from somewhere (file, database, etc.)
        List<T> objs = loadObjects(clazz);
        // create map to store objects keyed by name
        Map<String,T> map = new HashMap<String,T>();
        for (T obj : objs) {
            map.put(obj.name(), obj);
        return map;
    public static void main (String[] args) {
        // load objects of type Foo (a subclass of MyBaseClass)
        Map<String,Foo> map = loadObjectCache(Foo.class);
        // retrieve a Foo by name
        Foo foo = map.get("bling");
    }This all works great, and the parameterization helps me avoid some annoying casts. Now let's suppose I want build these maps for multiple classes, and I want to create a second-order cache of objects: a Map which is keyed by Class and contains elements each of which is a Map as above (keyed by name, containing objects of the given class). So, I'd like to declare something like:
    Map<Class,Map<String,Object>> metaMap = new HashMap<Class,Map<String,Object>>();However, this doesn't quite work. The compiler complains about the following code added just before the return in loadObjectCache() because a Map<String,Foo> is not a subclass of a Map<String,Object>:
        metaMap.put(clazz, map);So, What I'd like is some way to make the above declaration of metaMap such that the objects in a given inner Map are checked to be of the same type as the Class used to store that Map in the meta-map, something like:
    Map<Class<T>,Map<String,T>> metaMap = new HashMap<Class<T>,Map<String,T>>();But this isn't quite right either. I don't want a Map that uses a particular Class as its key. Rather, I want a Map that uses multiple Class objects as keys, and the element stored for each is itself a Map containing objects of that type. I've tried a variety of uses of Object, wildcards, etc., and I'm stumped. I currently have the meta-map defined as:
    Map<Class,Map<String,?>> metaMap = new HashMap<Class,Map<String,?>>();Then in my new getObjectByName() method, I have to use an ugly cast which gives me a type safety warning:
    public <T> T getObjectByName (Class<T> clazz, String name) {
        Map<String,T> map = (Map<String,T>)metaMap.get(clazz);
        return map.get(name);
    }If anyone know how I should declare the meta-map or whether it's even possible to accomplish all this without casts or warnings, I would much appreciate it!
    Dustin

    Map<Class<?>,Map<String,?>> metaMap = new
    new HashMap<Class<?>,Map<String,?>>();
    public <T> T getObjectByName (Class<T> clazz,
    azz, String name) {
         Map<String,?> map = metaMap.get(clazz);
         return clazz.cast(map.get(name));
    }Cute. Of course, that's really only hiding the warning, isn't it?
    Also it doesn't generalize because there's no way to crete a type token for a parameterized class. So you can't use a paramterized class as a key, nor can you nest 3 Maps.
        public static <U> void main(String[] args) {
            MetaMap mm = new MetaMap();
            Appendable a = mm.getObjectByName(Appendable.class, "MyAppendable");
            Comparable<U> u = mm.getObjectByName(Comparable.class, "MyComparable"); //unchecked converstion :(
        }Hey, not to sound ungrateful though. The solution posed is very useful for a certain class of problem.

  • Nested tables questions

    I ve been using nested tables ( with the 'index by' clause ).
    I understand that the created array is stored in the RAM memory ( and not in the database files ).
    1. Does this mean that my program might not run one day when the machine is running low on RAM ?
    2. If yes, will there be an exception or something ?
    3. I understand that the memory is freed when the 'session ends'. When does my session end ? ( Is it when my PROCEDURE/function ends or is it when I quit sqlplus )
    4. Are nested tables/collections thread safe ?
    If I declare a nested table within the procedure, and if the procedure is called simultaneously by two clients, will there be a problem ?
    Thanks

    1. Yes
    2. Yes, possibly "PLS-00996: out of memory" although there may be others
    3. PL/SQL does garbage collection at various times, including when your session ends (i.e. when you disconnect from Oracle) and when a variable goes out of scope (e.g. when a procedure ends). I don't think the full list of rules is documented.
    4. Yes, although I'm not sure what happens in connection pooling.

  • Join between two nested tables question

    Hi. I have two nested tables with a join statement drawing info from both. The query looks like this:
    select to_char(N.LASTLOGONDATE, 'YYYY'), count(n.u_name), A.ACCOUNTDISABLED
    from coclastlogon, TABLE(COCLASTLOGON.RLLS) N , userpwaudit, TABLE(USERPWAUDIT.PVSS) A
    where N.U_NAME = A.USERNAME (+)
    and coclastlogon.AUDITID = 12
    and userpwaudit.AUDITID = 12
    group by to_char(N.LASTLOGONDATE, 'YYYY'), A.ACCOUNTDISABLED
    The query runs fine except its not generating non-matching values from the A.ACCOUNTDISABLED field. It is my understanding that placing the (+) will instruct the statement to add these columns to the result. If I use the same query with the same unnested data it produces the non-matching result set as I require.
    My feeling is there might be an issue with the way I've set my "FROM" but I'm not too sure how to proceed.
    Any suggestions?
    Thanks!

    You're right, by non-matching I mean null values.
    Running the query I wrote returns this result:
    (N.LASTLOGONDATE,'YYYY') / COUNT(N.U_NAME) / ACCOUNTDISABLED
    2005 3408 No
    2002 1 Yes
    Running the query using un-nested data returns this result (this is what I'm after):
    (N.LASTLOGONDATE,'YYYY') /COUNT(N.U_NAME) /ACCOUNTDISABLED
    2005 3408 No
    2002 1 Yes
    2005 27 -
    As you can see, the value I'm after is the one with ACCOUNTDISABLED 'null' value. Essentially, "coclastlogon, TABLE(COCLASTLOGON.RLLS) N" has more values in the N.U_NAME column than the table it is being joined to. That is why I added the (+). I just need to account for all values in TABLE(COCLASTLOGON.RLLS) than just the ones that find a join with "userpwaudit, TABLE(USERPWAUDIT.PVSS) A"

  • Detail Reveal/Nested Table Questions

    Hey Folks,
    I have a table that was generated with Jheadstart. Within this table is a nested table with a master-detail relationship to the outer table. It was generated using the 'Detail Reveal' function of Jheadstart, so it renders a 'show' hyperlink to show the associated details with the master record. The problem I am having is when the user navigates back to this page, the detail reveal is not working properly. Say the user shows the a set of details, click continue, decided they selected they wrong set, hits cancel. The cancel does a rollback then navigates back to the nested table page. What happens is this: the FIRST set of details is always shown, except under the master record that was originally selected! If the user shows then hides the details, the problem goes away. So for example, if the user had originally shown the details of the third master record, hit continue, then hit cancel, the details from the first master record would be incorrectly shown under the third master record.
    What is causing this? How can I fix this? Ideally I would like to have it HIDE all detail when the user cancels back to the page.
    I did some snooping around in the JHSDataAction class, and it looks like a request param named 'value' determines which detail is shown, but I have been unsuccessful in trying to manipulate this parameter to get it to do what I want.
    Also, how could I manipulate it to show all the details if the master table only had one record? I already have a dataAction that determines if the master query returned a single hit or not, I just don't know what I can do with the request object to force it to show the detail lines in the case that it does....
    Help?
    Thanks,
    -Chris

    Oh yea, and i'm using Jdev 10.1.2 and Jheadstart 10.1.2.2 (build 32), using struts and UIX.

  • Offline edit, timecode and nested sequence question

    I'm working from DVcam dubs on a 10 song, 5 camera video shoot. It will be mastered from original HDCam tapes eventually. Too keep things orderly I planned to create a sequence for each song, edit from a multiclip, then dump each finished song segment into a new master segment. However when I ran a test to see if this would work it seems that the new master sequence time codes only refer to the time codes from the individual song sequences, not the original tape (each clip starts at 01:00:00;00). Thus when I go to recapture from the original HD tapes, the time codes would be off. Is there a way to make this process work or should I be editing everything into one master sequence right from the start? I plan on making an offline copy of the final sequence using Media Manager so when I take it to the final production house they can just capture the final sequence with handles, not all 6 hours of tape. It's just cuts and dissolves. Any workflow suggestions would be appreciated.
    G5 Quad   Mac OS X (10.4.5)   4.5G RAM, DSR-11

    The clips should still reference their original timecode on the tapes as long as you have not replaced the clips themselves with proxy clips or self-contained movies that have had their timecode modified. This should not be affected by nesting sequences.
    You should probably collapse your multiclips before running Media Mangler.
    I actually use the proxy clips method often when working with multiclip. As you are aware, the multiclip can only be as long as the longest angle, and you cannot have multiple clips in one angle, so what to do if several tapes are captured in pieces? -
    I create a sequence which is an image of each tape, with the starting timecode modified to match the tape's timecode. I then export these to reference movies which I re-import to FCP. I then assign the relevant reel names to these proxy clips, and create my longer multiclips with these.
    I cut my multiclip sequence, collapse it and use MM to create offline:remove unused. It creates a new sequence which correctly references my tapes and timecode. I was amazed the first time this worked for me.
    Hope this helps.

  • Deleting nested seq renders for best quality

    So if I have some nested sequences with a fair number of effects, which I've rendered before bringing into my final sequence (to speed things up as I'm working).
    Should I go back and delete the renders from within the original sequences (toggle visibility) before doing my final render? (for maximum quality, only rendering one generation)
    I remember reading something about this here, but I couldn't find the thread and am unclear about how FC handles rendering nested sequences.
    Thanks!

    It was probably me... yes indeed, first generation rendering is preferable. So deleting and rendering one time should give you better results for a final QT movie or tape. If you have a lot of motion effects, turn on the high quality filtering in the sequence's settings too.
    If you're going to go to DVD though, and we're talking a compression to MPEG, then the best way is to send an unrendered sequence directly to compressor for the compression.
    Jerry

  • HELP - Nested Case Question (Multiple Rows)

    OK, Now that the syntax has been corrected with the help of "Chanchal Wankhade" (Thank you very much!), I have an entirely new issue. I am sure this issue has to do with my case statement logic. I am getting multiple rows, when I am only looking for one. Here is my code:
    SELECT
      CASE
        WHEN EP.PHYSICAL_DATE IS NULL
        THEN
          CASE
            WHEN EC.ORIGINAL_CONTRACT_START < ((SYSDATE) - 365)
            THEN 'NEEDS PHYSICAL'
            WHEN EC.ORIGINAL_CONTRACT_START < ((SYSDATE) - 330)
            THEN 'COMING UP'
            ELSE 'No'
            END
        WHEN EP.PHYSICAL_DATE IS NOT NULL
        THEN
          CASE
            WHEN MAX(EP.PHYSICAL_DATE) KEEP (DENSE_RANK LAST ORDER BY EP.PHYSICAL_DATE) < ((SYSDATE) - 365)
            THEN 'NEEDS PHYSICAL'
            WHEN MAX(EP.PHYSICAL_DATE) KEEP (DENSE_RANK LAST ORDER BY EP.PHYSICAL_DATE) < ((SYSDATE) - 330)
            THEN 'COMING UP'
            ELSE 'No'
            END
      END "Needs Physical?"
    FROM AP AE
    LEFT JOIN EMP_PHYSICAL EP
    ON AE.EMP_ID = EP.EMP_ID
    LEFT JOIN POSITION_OFFERED PO
    ON AE.EMP_ID = PO.EMP_ID
    LEFT JOIN EMP_CONTRACT EC
    ON AE.EMP_ID         = EC.EMP_ID
    WHERE PO.ACTUAL_END IS NULL
    AND (EP.PHYSICAL     = 1
    OR EP.PHYSICAL      IS NULL)
    AND :P71_EMP_ID = AE.EMP_ID
    GROUP BY EP.PHYSICAL_DATE, EC.ORIGINAL_CONTRACT_START;The OUTPUT is:
    Needs Physical?
    Row 1 NEEDS PHYSICAL
    Row 2 No
    However, only one of these rows should be the output, which is "No". How do you get a nested case statement to evaluate to one result, instead of multiple? I'm quite sure it is in the logic. To spell it out, this is what I am trying to accomplish with the above code:
    If the "EP.PHYSICAL_DATE" is null, then use these sets of formula's to evalute the output, BUT if the "EP.PHYSICAL_DATE" is not null, then use these set's of formula's to evaluate the output.
    As it stands now, it appears as if my nested case statement is doing exactly what I told it to do, which is to evaluate both conditions, and output both.
    Any help would be appreciated. Thanks.
    Aqua
    Edited by: AquaNX4 on Mar 26, 2013 6:30 AM

    If you define your service_level as a table then it will be much easier.
    with service_level
    as
    select 'ALL' parent_lvl, 'Sergeant' srv_lvl from dual union all
    select 'ALL', 'Bonus I' from dual union all
    select 'ALL', 'Deputy Bailiff' from dual union all
    select 'ALL', 'Deputy Lockup' from dual union all
    select 'ALL', 'Deputy Bailiff Security' from dual union all
    select 'ALL', 'Custody Assistant' from dual union all
    select 'ALL', 'Security Officer' from dual union all
    select 'ALL', 'Security Assistant' from dual union all
    select 'ALL', 'Security Officer and Security Assistant' from dual union all
    select 'ALL', 'Private Security' from dual union all
    select 'All Deputies', 'Deputy Bailiff' srv_lvl from dual union all
    select 'All Deputies', 'Deputy Bailiff Security' from dual union all
    select 'All Deputies', 'Deputy Lockup' from dual union all
    select 'All Sworn', 'Sergeant' srv_lvl from dual union all
    select 'All Sworn','Bonus I' from dual union all
    select 'All Sworn','All Deputies' from dual union all
    select 'All Sworn','Deputy Bailiff' from dual union all
    select 'All Sworn','Deputy Lockup' from dual union all
    select 'All Sworn','Deputy Bailiff Security' from dual
    select *
      from in_service
    where rank IN (
              select srv_lvl
                from service_level
               where upper(parent_lvl) = upper(:SL)
                  or upper(srv_lvl) = upper(:SL)
                   )

  • Another nested events question

    I have read the threads regarding this and still think I am able to get this working.  All I need is a simple calculation with a value change in a nested Event structure.  I know I can do it with a state machine and being crafty but would like to hear from others regarding getting this to work.  If not I will just go the other way.  I want to give this a shot though.
    Thanks
    LV2010 XP
    Attachments:
    nested_event.vi ‏16 KB

    tbob wrote:
    I don't think it is a good idea to have nested event structures.
    I would go a step further and say that event structures should never get nested and should never be in structures that can prevent them from reacting. Event cases should never contain interactive loops. There should never be more than one event structure anywhere in the same loop.
    Looking at your code, you have a complete misunderstanding of event structures:
    An event structure does NOT adhere to dataflow, meaning it will queue up an event even if dataflow prevents it from executing.
    There is no event that reacts to the stop button, so the VI cannot be stopped unless another event is fired too.
    Your event structures are set to lock the front panel until the event completes. While this is a recommended and good setting, it cannot work if the event case contains intereactive code that needs user interaction to proceed. Once your outer loop fires, the front panel is locked. Thus the inner event can never fire. Since the inner loop needs complete before the outer even can complete, nothing further can happen.
    All you need is a single outer loop containing a single event structure, possibly with several event cases. The shift register belongs into the outer loop. Don't forget to utilize the timeout event. Simplify!!
    LabVIEW Champion . Do more with less code and in less time .

  • Why in a parent layer text disappears, but it is visible in a child layer, a Nested Layer Question

    Hi,
    The text in the parent BLUE layer drops to the bottom of a layer box, which I can see in a Dreamer but not in the browers.
    This happens when I added a child RED layer to the parent.
    Without the child RED layer the text stays at the top of the box in the parent BLUE LAYER.
    What can be done so the text in the parent BLUE layer DOES NOT move the bottom of the layer and becomes visible in the brower?
    cheers,
    Dreamer101.1

    Content is HTML.  Style is CSS.  Custom CSS won't make updating content any faster.
    Start by learning HTML and CSS basics.  DW will punish you if you don't know how to work with Code.
    HTML & CSS Tutorials - http://w3schools.com/
    What suggestion you can make for my project?
    Use default CSS positioning (which is no positioning at all) and align divisions with CSS margins, floats and padding.  If your layout will be complex - several columns per page, consider using a CSS framework or Grid to set-up your web page template.  Some good Grid resources below:
    960 Grid System - http://960.gs/
    Boiler Plate CSS System - http://code.google.com/p/css-boilerplate/
    BluePrint: A CSS Framework - http://www.blueprintcss.org/
    When you are satisfied with the layout, it displays well in all major browsers AND your code passes validation:
    HTML Code Validator - http://validator.w3.org
    CSS  Code  Validator - http://jigsaw.w3.org/css-validator/
    SaveAs as a DW Template (.dwt).  Then add some editable regions for content that will change from page to page.
    More on DW Templates -
    http://www.smartwebby.com/web_site_design/dreamweaver_template.asp
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    Good luck with your project,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Freaky nested sequences

    Hi, anyone experienced the following:
    When double clicking on a nested sequence in the timeline to edit that sequence, any edits or changes you make to that sequence do not update back in the parent timeline. For instance if you cut a clip out or rearrange clips in the nested sequence then go back to the parent timeline you see the sequence as it was before you made those changes. Then go back to the nested sequence timeline and see all your edits/changes have been lost!!
    The only workaround I see is to remove the nested sequence from the parent timeline, make your edits/changes then drop the sequence back into the parent timeline.
    Am I missing something? I thought it would be a case of the nested sequence auto-updating itself in the parent timelline after any changes made, as for example in after effects.
    Powemac G5 dual 2.7ghz FCP5.04 8gb RAM 2x400gb SATA   Mac OS X (10.4.6)  

    Hello Chris...
    Did your nested sequence need rendering when you created it? If so, the problem is caused by FCP referencing the origonal render files, which themselves act as little QT clips.
    After you have made your changes in the 'open' nested sequence, back in your main sequence, you need to force the nested seq to render again. You can do this by quickly moving the opacity overlay line up and down, or disabling - re-anabling the clip. The changes will now be recognised.
    J

  • SMIL Plugin Example Doesn't Play Nested SequenceElements or ParallelElements

    If you play the following SMIL file in the plug-in sample from Sprint 11 the first element is not played. No matter where you put the nested sequence the item never gets played. I know the intended functionality of the SMIL Plugin is to play nested sequences, yet it doesn't seem to work.
    <smil>
         <head>
              <meta base="http://mediapm.edgesuite.net/strobe/content/test/" />
         </head>
         <body>
              <seq>
                   <seq>
                        <video region="content" src="SpaceAloneHD_sounas_640_500_short.flv" />
                   </seq>
                   <video region="content" src="AFaerysTale_sylviaApostol_640_500_short.flv" />
                    <video region="content" src="elephants_dream_768x428_24_short.flv" />
              </seq>
         </body>
    </smil>
    I looked through the plugin source and was able to show that the nested seq was parsed out, but I'm not sure why the parent MediaElement doesn't play it.

    I just wanted to point out the bug filed does not include the use case of nested parallel elements within a sequence. These, too, get ignored by the SMIL Plugin.
    <smil>
         <head></head>
         <body>
              <seq>
                   <par>
                        <video region="content" src="http://mediapm.edgesuite.net/strobe/content/test/SpaceAloneHD_sounas_640_500_short.flv" />
                        <img region="content" src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" />
                   </par>
                   <video region="content" src="http://mediapm.edgesuite.net/strobe/content/test/AFaerysTale_sylviaApostol_640_500_short.flv" />
                   <video region="content" src="http://mediapm.edgesuite.net/strobe/content/test/elephants_dream_768x428_24_short.flv" />
              </seq>
         </body>
    </smil>

  • Working with Multiple Track Mattes-Help

    I have 2 track matte questions:
    1 - I have created a shape in Titler to use as a matte....white verticle rectangle. I want this "shape" to hold its postion in frame while I move video underneath to reveal a portion of the image. I have video on v1...matte on v2....track matte fx on v1 using v2 as matte. How can I acheive this? I want the matte to cut a hole and allow me to repo video underneath without moving the matte.
    2 - How would I acheive this with multiple individual matte shapes stacked? In other words, several layers using different shapes as mattes...1 for for each layer....allowing repo of each layer and not effect the matte position.
    Is there a better way to do this other than track matte? And not going into AE.
    thanks
    philc

    Thanks for the Reply Steven..
    I'll go deeper just so I understand.
    Lets say I have 2 separate matte shapes: a circle and a triangle....that will be used to cut out 2 different layers of video.
    I want to position the triangle in the right side of frame. The video I want to be revealed in that matte position will be placed on v1....the matte on v2.
    - I have to take the opacity down on the matte so I can see where to repo my video underneath so that I can chose what portion is seen in the triangle.
    - Then nest the matte and video "fill"...essentially building a precomp
    - Turn off the matte in the nest
    - Cut the Nested Seq into my Main Seq
    - Then copy the matte out of my nested seq to keep position intact, and paste that matte into my main seq...in this case on v2
    - Bring Matte opacity back up to full
    - Add Track Matte FX to v1
    - In Track Matte FX settings...chose v2 for matte
    Now I have the video in v1 being revealed thru the matte on v2. If for any reason I wish to adjust the repo of video on v1...I must go back into the nest.
    To continue and add the Circle shape cutout...I place the video "Fill" on v3 and the circle matte on v4 and repeat above steps.
    Is this the correct procedure?

  • Keeping 16.9 fram size with a little blur edge

    Hi,
    I am wondering about frame size and the right work flow.
    I have a little blue blur at the bottom of the film (not all the time)
    I see this as I watch on the monitor in 16.9 pal
    Which is the correct way to remove this and keeping 16.9.
    1: size it up a little
    2; crop it and the size it up a little
    3; crop it but then it’s not 16.9
    that was it.
    g5   Mac OS X (10.4.6)   CPU speed 2Ghz Memory 3GB ATI 9600XT

    Thanks for your reply but lets say if this was to be shown on the big screen then the bottom edge would be unevan. So this would be done only on the finished move in the nested seq. I guess.
    trevor

Maybe you are looking for

  • External monitor frozen during playback

    I am having trouble with my monitor not PLAYING during playback. I get an image when I scroll through the timeline but when I play - the image is frozen.. As soon as playback stops, the monitor refreshes to the correct frame - but it doesn't show dur

  • Combined flat (regular) and Spatial query

    DB: Oracle 8.1.7.2.1 (8i Release 3, patch 81721) I performed a spatial query on the results of a regular query, in the form of: Select count(*) from (select * from myTable where key=...) WHERE (MDSYS.SDO_RELATE("GEOLOC", MDSYS.SDO_GEOMETRY(2003,NULL,

  • MapViewer 1.0 rc1 and Oracle Database 10g 10.1.0.2.0 Performace

    I have just loaded the MV Demo and was a little disappointed at the performance. Below, I posted a sample of database fetch/rendering times. I was wondering if this was typical since this was my first experience with Map Viewer. And if not, where can

  • Virtual tree nodes:  TreeViewItem.isLeaf() safe to override?

    Hi, I want to have a very large tree, but I don't want to create all the nodes for the tree upfront. Rather I want to create them on demand as I expand nodes. The problem I have been having and am currently working around is that if I only populate t

  • Interesting scan from string error

    Got an interesting (and hopefully easy) issue with scan from string. VI and back panel image attached. Open it or make it and try to run it and let me know if you get an error too. Am I doing anything wrong? (BTW, ignore the %d in the scan from strin