Selection breaks after inserting into dataProvider

I have been battling this issue for a couple of days now. I
have a HorizontalList that is using an itemRenderer component that
I created. When I insert an item into the dataProvider using
addItemAt....
1) the item is inserted
2) i see the item rendered correctly in the HorizontalList
However, the selection breaks. What I mean by this is the
newly added items does NOT highlight when I roll over it and if I
click on it, it does not select. This only happens for the newly
added item, all the others that were already in the list work fine
(highlight and can be selected).
I've tried calling validateNow() on the HorizontalList after
inserting into the dataprovider but it doesn't help at all.
Please help.

I can't believe this, but after 2 days of trying to figure
this out I figured it out just moments after posting to the forum!
Here is what fixed it and I am not sure exactly why. At this
point I don't care...
The dataProvider I was using contained a list of custom
objects. I had a property on the class called uid. When I commented
out this property, everything worked. I don't know what made me
think to try this. I guess my uid property on the class was
conflicting with the uid property on the itemRenderer component or
something.
Finally.

Similar Messages

  • I want to create a cd on my mac that autolaunches an .html-page after inserting into a pc or a mac. Is that possible?l

    I want to create a cd on my mac that autolaunches an .html-page after inserting into a pc or a mac. Is that possible?

    Solving this requirement on a modern Windows system is going to be problematic too, as the autorun mechanisms are increasingly being locked down over there, if not by the end-user or the system installer, then by the usual anti-malware tools that are installed.
    Given this is one of the most vulnerable populations here in terms of operational security, you'll probably want to target online distribution, or to distribute a signed application that can be installed on the target (akin to a managed system) and that then accesses your data on external storage.  All that app might do is access the disk, verify that the contents of the device are trusted and valid, and launch the browser.
    I'd likely target online distribution or pre-loaded distributions and iOS, as that's where all of the older folks I'm dealing with are headed, too.  If not a native app, then maybe a web-app here, and download the contents into the HTML5 local storage.

  • "Create Table from select Query" Vs "Insert into"

    Hi
    Schenaio:
    My Select Query returns more than 10 million records, these records needs to be inserted into another table.
    Approach 1:
    I created table called TABLE1, and inserted the records using INSERT statement as a batch (batch size is 5000).
    Approach 2:
    I create table like,
    CREATE TABLE TABLE1 AS <SELECT QUERY>
    Here Apporach-1 took almost 40 minutes to complete the insert but Approach-2 took only 6 minutes.
    If anybody knows why it is? And is there any way to improve the performance of Approach-1?.
    Thanks
    Nidhi

    Most "batch" methods execute the same query multiple times. Row filtering is done after the rows are fetched from the source. The process of fetching all the rows could be a FullTableScan.
    Therefore, a FullTableScan is executed for each batch of 5000 rows.
    However, your query and batch definitions may well be different. We haven't seen the query and the execution plan.
    Another point : How are you "filtering" the rows (i.e the second execution inserts rows 5001 to 10000 and does not attempt to reinsert rows 1 to 5000) ?
    What is the overhead imposed by the filter ? (does the third execution have to exclude rows 1 to 10000 and inserts rows 10001 to 15000 and so on)
    Hemant K Chitale

  • Can select, but cannot insert into oracle tables using php.

    I am having trouble inserting data into a tables in oracle using PHP. I can insert into the tables using baninst1, but nothing else. I can't even insert using the tables' owner. Every time I try I get the ORA-00492 error of table or view does not exist. However, I can run a select statement just fine. So far, baninst1 is the only user that can actually do inserts. I've triple checked all the table grants and everything is fine. Also, I can copy/paste the exact insert statement into SQL*Plus and it works with the correct user. It doesn't have to be baninst1. I've tried everything I can think of. I've tried putting the table name in quotes, adding the schema name to the table, checking public synonyms, but everything appears to be ok. I would greatly appreciate any suggestions others may have.
    I'm using PHP 5.2.3 with an oracle 9i DB.

    Here is the code that doesn't work. It works only with baninst1, no other username will work and all I do is change the my_username/my_password to something different. This is one example function where I try to do an insert, but it doesn't work on any of the tables I try.
    Thanks for looking.
    class Oracle {
         private $oracleUser = "my_username";
         private $oraclePassword = "my_password";
         private $oracleDB = "MY_DB";
         private $c = null;
         function Connect() {
              if ( !($this->c = ocilogon( $this->oracleUser, $this->oraclePassword, $this->oracleDB ) ) )
                   return false;
              return true;
         function AddNewTest($testName, $course, $section, $term, $maxAttempts, $length, $startDate, $startTime, $endDate, $endTime)
              $result = "";
              if( $this->c == null )
                   $this->Connect();     
              $splitIndex = strpos($course, " ");
              $subjectCode = substr($course, 0, $splitIndex);
              $courseNumber = substr($course, $splitIndex + 1);
              $insertStatment = "insert into szbtestinfo(szbtestinfo_test_name,
                                                                szbtestinfo_course_numb,
                                                           szbtestinfo_section,
                                                                szbtestinfo_max_attempts,
                                                                szbtestinfo_length_minutes,
                                                                szbtestinfo_start,
                                                                szbtestinfo_end,
                                                                szbtestinfo_id,
                                                                szbtestinfo_subj_code,
                                                                szbtestinfo_eff_term)
                                                                values( '" . $testName .
                   "', '" . $courseNumber .
                   "', '" . $section .
                   "', " . $maxAttempts .
                   ", " . $length .
                   ", to_date('" . $startDate . " " . $startTime . "', 'MM/DD/YYYY HH24:MI')" .
                   ", to_date('" . $endDate . " " . $endTime . "', 'MM/DD/YYYY HH24:MI')" .
                   ", szsnexttest.nextval" .
                   ", '" . $subjectCode .
                   "', '" . $term . "')";
              //return $insertStatment;
              $s = OCIParse($this->c, $insertStatment);
              try
                   $result = OCIExecute($s);
              catch(exception $e)
              return $result;
         }

  • Select statement to insert into a table using a loop

    hi
    create table uploadtab(
    itema varchar2(3),
    xtype varchar2(1),
    salesa number,
    margina number,
    salesb number,
    marginb number,
    salesc number,
    marginc number);
    insert into uploadtab
      (itema, xtype, salesa, margina, salesb, marginb, salesc, marginc)
    values
      ('abc', 'a', 100, .40, 300, .10, 450, .25);
    create table testinsert(itema varchar2(3),
    xtype varchar2(1),
    sales number,
    margin number);what i want to do is create 3 records based on that one in a loop
    so my desired output for testinsert is as follows
    abc  a 100  .40
    abc  a 300  .10
    abc  a 450  .25i don't want to use 3 insert tables if at all possible
    any help would be greatly appreciated
    thanks in advance
    Edited by: DM on Jul 7, 2010 2:22 PM

    Just a question on this
    INSERT INTO testinsert
    ( itema
    , xtype
    , sales
    , margin
    SELECT  itema
    ,       xtype
    ,       DECODE
            ( RN
            , 1,salesa
            , 2,salesb
            , 3,salesc
    ,       DECODE
            ( RN
            , 1,margina
            , 2,marginb
            , 3,marginc
    FROM            uploadtab
    CROSS JOIN      (
                            SELECT ROWNUM RN
                            FROM   dual
                            CONNECT BY LEVEL <= 3
    ;when you put a WHERE before the CROSS JOIN, the error
    ORA-00933:SQL command not properly ended. is displayed.

  • Audio volume drops in FLV file after inserting into Captivate 4

    The audio volume drops almost 50% in FLV files inserted into Captivate 4.  Is there a solution for this problem?
    Thank you.

    Hi Sony,
    That was the first thing I ever tried when I discovered the default setting for FLV and slide video (variables and advanced actions are my favorites, as you know perhaps). Perhaps I missed something, and did not try in CP 5.5 or after the latest patch on CP5.0, but this system variable seemed only to have effect on the normal audio clips, not on audio for video?
    Lilybiri

  • Using select query to insert into a field

    Hi,
    I am working with a jdbc-to-jdbc scenario, in which on source side iam geting data from 2 tables t1 & t2 and inserting this data into two tables tb1 & tb2 on target side.A field in tb2 has to be inserted with a value which is equal to the number of records inserted into the table tb1 i.e with the number equal to 'how many records from the table t1 has been retrieved inorder to insert into table tb1'.
    Can anybody please suggest me.....
    Thanks & Regards,
    Radhika.

    consider ur strucutre
    <Data>
    <id> 1 </id> 0..1
    <id> 2 </id>
    <id> 3 </id>
    <id> 4 </id>
    </Data>
    here i meant context to <id>. Mapping id > count > target will give the nunmber of records in Data i.e. 4
    note: here u have change the context of <id> to <data>
    Message was edited by:
            Prabhu  S

  • DataGrid not reflecting changes after INSERT into Table. Delete from Table does.

    Wow, it's been a while.
    Hope you guys can help.
    This is my DataGrid:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="BorderThickness" Value="0"/>
    </Style>
    </DataGrid.CellStyle>
    <DataGrid.Columns>
    <DataGridTextColumn x:Name="NodeColumn" Binding="{Binding node}" Header="VS Number" Width="*"/>
    <DataGridTextColumn x:Name="SerialColumn" Binding="{Binding serial}" Header="Serial Number" Width="*"/>
    <DataGridTextColumn x:Name="NameColumn" Binding="{Binding name}" Header="Asset Name" Width="*"/>
    <DataGridTextColumn x:Name="TypeColumn" Binding="{Binding type}" Header="Asset Type" Width="*"/>
    <DataGridTextColumn x:Name="_dateColumn" Binding="{Binding date}" Header="Date Allocated" Width="*"/>
    <DataGridTextColumn x:Name="PoColumn" Binding="{Binding po}" Header="Purchase Order" Width="*"/>
    </DataGrid.Columns>
    </DataGrid>
    This is where I add a new Row to the Table:
    Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
    Dim cbblocation As ComboBox = Me.FindName("LocationComboBox")
    Dim row As DataRowView = DirectCast(cbblocation.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    Dim cbbtype As ComboBox = Me.FindName("comboBoxType")
    Dim cbbtext2 As String = cbbtype.Text
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.AddNewAsset(cbbtext, txbSerial.Text, txbName.Text, cbbtext2, Date.Today, txbPO.Text)
    node = cbbtext
    Dim mp As New MainPage
    mp.RefreshGrid(node)
    Me.Close()
    End Sub
    The RefreshGrid method:
    Public Sub RefreshGrid(node As String)
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.FillByNode(RETAILISOAMDDataSet.tableAssets, node)
    Dim TableAssetsViewSource As System.Windows.Data.CollectionViewSource = CType(Me.FindResource("TableAssetsViewSource"), System.Windows.Data.CollectionViewSource)
    Dim be As BindingExpression = BindingOperations.GetBindingExpression(TableAssetsViewSource, CollectionViewSource.SourceProperty)
    be.UpdateTarget()
    End Sub
    And this is what I use to delete a row from the table (and without doing anything special, the DataGrid auto-updates with the changes):
    Private Sub Button_Click_4(sender As Object, e As RoutedEventArgs)
    If TableAssetsDataGrid.SelectedIndex = -1 Then
    MsgBox("You have selected nothing to Delete!", MsgBoxStyle.OkOnly, "Nothing Selected")
    Else
    Dim dgv As DataGridTextColumn = Me.FindName("NodeColumn")
    Dim row As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText As String = row.Item("node")
    Dim dgv2 As DataGridTextColumn = Me.FindName("SerialColumn")
    Dim row2 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText2 As String = row.Item("serial")
    Dim dgv3 As DataGridTextColumn = Me.FindName("NameColumn")
    Dim row3 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText3 As String = row.Item("name")
    Dim dgv4 As DataGridTextColumn = Me.FindName("TypeColumn")
    Dim row4 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText4 As String = row.Item("type")
    Dim dgv5 As DataGridTextColumn = Me.FindName("_dateColumn")
    Dim row5 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText5 As String = row.Item("date")
    Dim dgv6 As DataGridTextColumn = Me.FindName("POColumn")
    Dim row6 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText6 As String = row.Item("po")
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.RemoveAsset(dgvText, dgvText2, dgvText3, dgvText4, dgvText5, dgvText6)
    Dim cbb As ComboBox = Me.FindName("cbbLocation")
    Dim row7 As DataRowView = DirectCast(cbb.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    RefreshGrid(cbbtext)
    End If
    End Sub
    --------- End of Edit
    It is bound to a Dataset which gets it's data from a SQL Database.
    Loading the Data and Filtering the data based on certain conditions work 100%. The problem I am having is as follows:
    I have a form on the Page that takes input and inserts a row into the Database. When this happens, the DataGrid won't automatically reflect the changes (even if I recall the Fill Method of the Dataset). No matter what I do, I have to refresh the entire page
    and THEN Fill the Dataset to see any changes.
    This is what strikes me as odd...
    When I do a delete row operation on the Database (Custom Method on the Dataset with conditions), and just Fill the Dataset again (without doing anything special), the row deletes and the changes is reflected IMMEDIATELY.
    What am I doing wrong here? Why would Delete Row reflect the changes on the DataGrid but no Insert Row?
    Thanks in Advance.
    (P.S. I am very rusty with my developing skills, I haven't done this in YEARS)

    >>And what about the the most important question, how exactly is TableAssetsViewSource defined in the XAML markup and what is
    its Source property set or bound to? And what about the reproducable sample...?
    Here is the Markup of the TableAssetsViewSource:
    <Page.Resources>
    <local:RETAILISOAMDDataSet x:Key="RETAILISOAMDDataSet"/>
    <CollectionViewSource x:Key="TableRegionsViewSource" Source="{Binding tableRegions, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableLocationsViewSource" Source="{Binding tableLocations, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableAssetsViewSource" Source="{Binding tableAssets, Source={StaticResource RETAILISOAMDDataSet}}"/>
    </Page.Resources>
    The ItemsSource of the DataGrid is bound to the TableAssetsViewSource:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    Just remember, this code was auto-generated with the drag & drop onto the Page, so I did little in terms of setting the actual bindings.
    All in all, what I have done so far works as intended, except that when I want to add a row to the table it does not reflect, and that it only shows after refreshing/restarting the application.
    I will try and put together a reproducable sample.

  • SELECT from MySQL, INSERT into Oracle

    Hallo,
    I am new to Java.
    My task is to collect data from about 30 tables inside MySQL database and then insert it to similar tables in Oracle.
    Script should copy data one a day, during the night.
    Number of rows in each table is about 30,000.
    MySQL version 5.1
    Oracle version 11.1.7
    Both of them are installed on really fast servers.
    The way i would do it is:
    1. connect to MySQL
    2. connect to Oracle
    3. select data from MySQL table and insert it to Oracle table.
    repeat this step for each table
    More precise about SELECT and INSERT:
    handle_one = "SELECT a, b, c FROM mysql_table1";
    while(handle_one is true)
    INSERT a, b, c INTO oracle_table1;
    4. close MySQL connection
    5. close Oracle connection
    Is it best way?
    Best Regards
    slk

    slkLinuxUser wrote:
    Script should copy data one a day, during the night.
    Number of rows in each table is about 30,000.There are variations on the above depending on what the above two statements mean.

  • Animation works in preview, and breaks once inserted into a page as .oam

    I built a simple animation that allows a user to step forward and backward through the timeline. I was able to leverage code from the Edge blog, so I'm pretty sure it's solid. The animation even previews well, but when I publish to .oam and reference the file from a different directory, the animation suddenly breaks. I really don't know what to do.
    I've tried creating a blank page in the same directory as the .oam file, and it is still breaking.
    When I say it breaks, what is happening is it appears a specific point in the timeline where an element should fade out, but it doesn't. Instead it remains as the other elements continue to work properly.
    Any ideas how to test this problem?
    Here is the code for my "back" button:
    var current = sym.getVariable("current");
       if (current != "start") {
          sym.getSymbol("the_wheel").playReverse();
       else {
          sym.getSymbol("the_wheel").playReverse("end");
    sym.setVariable("current", "the_wheel");
    Message was edited by: DOD

    Hi Sarah,
    I uploaded fresh files. Sorry, I have so many versions right now, it's hard to keep things straight.
    http://dezylum.com/wheel/wheel.html
    I'm testing on Mac and PC:
    Mac: Safari and Chrome (both up to date)
    PC: Firefox, Chrome and IE (all up to date)
    Note: the files TEST from Edge just fine. It's only when I publish to the .oam file, insert the link into my page and test it that way that the animation breaks.
    When navigating forward or backward through the animation, the color bars that are in between the light blue circle and the darker arrows should fully fade in to a light color and fully fade out to white as the next light bar fades in. When you navigate backward and reach the dark blue arrow, and click back again to reach the yellow-orange arrow, the light blue bar gets stuck when fading to the yellow-orange bar. Here is a screen grab.
    The light blue bar should fade completely to white, but does not until you navigate back and reach the dark orange arrow. I hope that makes sense .
    Thanks for your help and attention!
    Kevin

  • Swf not working after inserted into dreamweaver

    I'm rather new to flash and Dreamweaver CS5.  I created a media playback swf that displays pictures.  It works perfectly when I view it in Flash but when I insert the swf into my website in Dreamweaver the images do not show up, the backgound and everything else show up in my preview in Dreamweaver but no images....All the images and swf files are all in the same directory, all the code looks correct to me but I cannot figure out what is wrong.  Any help would be greatly appreciated. 
    Thanks,
    Kurt

    this is my test page....
    www.themoderatorsband.com/picturesnew.html

  • Blurry Jpgs when displaying after insertion into project

    I am running Elements 10.  I have created a project with numerous video clips and pictures inserted.  I cannot seem to get the pictures to display clearly no matter what format (jpg, tiff, etc) I use.  The video clips seem to display ok.

    PrE 10 and Windows 7 64 bit, 8GB Ram
    Actually pictures range all the way up to 3136 x 2184
    Video seems to be clear on playback.   Here are the details of the clip I from which I used about two minutes:
    <?xml version="1.0" encoding="UTF-8"?>
    -<Mediainfo version="0.7.63">-<File>-<track type="General"><Complete_name>F:\Video\1989 Hilda Interview.mpg</Complete_name><Format>MPEG-PS</Format><File_size>2.11 GiB</File_size><Duration>35mn 12s</Duration><Overall_bit_rate_mode>Variable</Overall_bit_rate_mode><Overall_bit_rate>8 574 Kbps</Overall_bit_rate></track>-<track type="Video"><ID>224 (0xE0)</ID><Format>MPEG Video</Format><Format_version>Version 2</Format_version><Format_profile>Main@Main</Format_profile><Format_settings__BVOP>Yes</F ormat_settings__BVOP><Format_settings__Matrix>Custom</Format_settings__Matrix><Format_sett ings__GOP>M=3, N=15</Format_settings__GOP><Duration>35mn  12s</Duration><Bit_rate_mode>Variable</Bit_rate_mode><Bit_rate>8 180 Kbps</Bit_rate><Maximum_bit_rate>9 570 Kbps</Maximum_bit_rate><Width>720 pixels</Width><Height>480 pixels</Height><Display_aspect_ratio>4:3</Display_aspect_ratio><Frame_rate>29.970  fps</Frame_rate><Standard>NTSC</Standard><Color_space>YUV</Color_space><Chroma_subsamplin g>4:2:0</Chroma_subsampling><Bit_depth>8  bits</Bit_depth><Scan_type>Interlaced</Scan_type><Scan_order>Top Field First</Scan_order><Compression_mode>Lossy</Compression_mode><Bits__Pixel_Frame_>0.790</Bi ts__Pixel_Frame_><Time_code_of_first_frame>00:00:00:00</Time_code_of_first_frame><Time_cod e_source>Group of pictures header</Time_code_source><Stream_size>2.01 GiB (95%)</Stream_size></track>-<track type="Audio"><ID>192 (0xC0)</ID><Format>MPEG Audio</Format><Format_version>Version 1</Format_version><Format_profile>Layer 2</Format_profile><Duration>35mn 12s</Duration><Bit_rate_mode>Constant</Bit_rate_mode><Bit_rate>224 Kbps</Bit_rate><Channel_s_>2 channels</Channel_s_><Sampling_rate>48.0 KHz</Sampling_rate><Compression_mode>Lossy</Compression_mode><Delay_relative_to_video>-66 ms</Delay_relative_to_video><Stream_size>56.4 MiB (3%)</Stream_size></track></File></Mediainfo>
    Here is details from another clip, used a minute or so:
    <?xml version="1.0" encoding="UTF-8"?>
    -<Mediainfo version="0.7.63">-<File>-<track type="General"><Complete_name>C:\Users\Barry\Documents\My Documents\My Pictures\Genealogy stuff\Stadnitsky Project\Stadd Macavoz Pictures\Fiddler on the roof part 18.mp4</Complete_name><Format>MPEG-4</Format><Format_profile>Base Media / Version 2</Format_profile><Codec_ID>mp42</Codec_ID><File_size>23.5 MiB</File_size><Duration>9mn  59s</Duration><Overall_bit_rate_mode>Variable</Overall_bit_rate_mode><Overall_bit_rate>32 9 Kbps</Overall_bit_rate><Encoded_date>UTC 2010-01-03 01:13:19</Encoded_date><Tagged_date>UTC 2012-12-29 23:47:44</Tagged_date><gsst>0</gsst><gstd>600443</gstd><gssd>BADC23F64MH1356824360205454< /gssd><gshh>r16---sn-p5qlsn7z.c.youtube.com</gshh></track>-<track  type="Video"><ID>2</ID><Format>AVC</Format><Format_Info>Advanced Video Codec</Format_Info><Format_profile>[email protected]</Format_profile><Format_settings__CABAC> No</Format_settings__CABAC><Format_settings__ReFrames>1 frame</Format_settings__ReFrames><Format_settings__GOP>M=1,  N=30</Format_settings__GOP><Codec_ID>avc1</Codec_ID><Codec_ID_Info>Advanced Video Coding</Codec_ID_Info><Duration>9mn 59s</Duration><Bit_rate>218 Kbps</Bit_rate><Maximum_bit_rate>549 Kbps</Maximum_bit_rate><Width>320 pixels</Width><Height>240 pixels</Height><Display_aspect_ratio>4:3</Display_aspect_ratio><Frame_rate_mode>Constant< /Frame_rate_mode><Frame_rate>29.970  fps</Frame_rate><Color_space>YUV</Color_space><Chroma_subsampling>4:2:0</Chroma_subsampli ng><Bit_depth>8  bits</Bit_depth><Scan_type>Progressive</Scan_type><Bits__Pixel_Frame_>0.095</Bits__Pixel_ Frame_><Stream_size>15.6 MiB (66%)</Stream_size><Title>(C) 2007 Google Inc. v08.13.2007.</Title><Encoded_date>UTC 2010-01-03 01:13:19</Encoded_date><Tagged_date>UTC 2010-01-03 01:13:19</Tagged_date></track>-<track  type="Audio"><ID>1</ID><Format>AAC</Format><Format_Info>Advanced Audio Codec</Format_Info><Format_profile>LC</Format_profile><Codec_ID>40</Codec_ID><Duration>9m n  59s</Duration><Bit_rate_mode>Variable</Bit_rate_mode><Bit_rate>108 Kbps</Bit_rate><Maximum_bit_rate>156 Kbps</Maximum_bit_rate><Channel_s_>2 channels</Channel_s_><Channel_positions>Front: L R</Channel_positions><Sampling_rate>44.1 KHz</Sampling_rate><Compression_mode>Lossy</Compression_mode><Stream_size>7.75 MiB (33%)</Stream_size><Title>(C) 2007 Google Inc. v08.13.2007.</Title><Encoded_date>UTC 2010-01-03 01:13:19</Encoded_date><Tagged_date>UTC 2010-01-03 01:13:19</Tagged_date></track></File></Mediainfo>
    4. Yes, NTSC, current screen resolution is 1280 x 1024.  I would like advice on what format 4:3 or 16:9 to create/continue the project for playback via DVD on both TV screens and PC monitors.
    I can continue using the built in DVD creating program. 
    The above chart is correct
    Yes, .9091 comes after D1/DV NTSC
    I'm not clear what mp4 and mpg fields are.  One was recorded by me and one off the internet.
    5. 

  • Why do selections from waveforms insert into a multi track at the 14 hour mark?

    Currently having an issue on Audition (Creative Cloud) where every time I highlight a section from a waveform and send it to a multi track, it inserts it at around the 14 hour mark, making my original timeline of around 5 minutes a pain to work on. Even with an edit undo, the timeline still remains at a stupid length making navigating very difficult.
    Any suggestions on how I can solve this? I've worked on other versions of Audition before and never had this issue.

    Audition has the ability to import files into the Mulitrack at the Timecode specified within the file header. You can turn this option off in the Preferences/Multitrack page by unticking "Use embedded timecode when inserting clips into Multitrack".

  • After inserting into one field using LOV,  how to populate other fields ?

    Hi,
    I have a BLOCK based on a table (ex:EMP)
    And I have a LOV on the field(item): EMPNO.
    When I select one EMPNO from the LOV (when the field:EMPNO is populated with an emp number), the other fields should be populated
    Can some body let me know, which trigger I need to use and .......
    Thanks

    while creating LOV at empno you can this query
    select empno,ename,deptno from emp
    and define return item for each column.
    You can populate LOV manually at New_instance_item or Key_next_item
    of item empno.

  • MicroSD not "readable" by Macbook after inserting into Android phone

    I inserted a microSD full of photos in my android, which didn't recognize the card. When I put it back in my Macbook Retina, it said the disk was not readable, and it opens DiskUtitlity. Android must have tried to format the card, or done something to it to make it unrecognizable by OSX, but if I re-format it to my Mac, the information will be lost. How can I access the files? I tried placing card back in Android and connecting to Mac with USB, but as I stated, the Android didn't recognize the card in the first place.

    I uninstalled and reinstalled my printer and everything seems to work fine now.

Maybe you are looking for

  • Function returning cursor..

    i have written a function which returns me a cursor ... CREATE OR REPLACE function getAdvisorInfo(advID IN char)     RETURN types.ref_cursor AS atp_cursor types.ref_cursor; BEGIN OPEN atp_cursor FOR     select ad.Advisor_id, ad.Bundle_code, bd.bundle

  • Slow print 1350

    HP PSC 1350xi all-in-one printer (driver version 2.0.4) started printing very very slowly and now is taking up to 20 minutes to print (before i lose interest). Also tried, unsuccessfuly to print in test mode. Nothing came out. When printing from comp

  • I can't download a podcast

    Being sent the message that a podcast can't be delivered to my iPad when I have already downloaded several in the series.

  • Using mobile java phone as SMS-to-IPmessage converter ?

    Dear all, i am currently taking care of an application using SMS as messaging platform. Clients are small comsumer devices pushing messages by AT commands to a mobile phone via a serial Bluetooth connection. Web-Server receives data via an SMS-gatewa

  • How is PeopleSoft Application made !

    Hi All, I have a very basic question 1. If someone wants to use a peoplesoft application for his CRM needs is this application made from scratch is it developed or peoplesoft applications come as a redy package and one just has to customize it accord