Iterate columns rather than rows?

Hi All
Apologies for what is probably a painfully stupid question, as an almost complete newbie I'm not familar with the intricaies of the SDK but ...
I am building a plugin (primarily for Premiere users) which I think would lend itself better to iteration over columns rather than rows. Is there any built in iterate function that handles this situation, or would this be a situation where coding my own iteration loop could be better?
I ask because I have succesfully built my plugin in AE (using the Shifter example as a basis) and it works but the performance is not great. I've built the same plugin using the Premiere SDK (coding my own iteration loop) and the performance is much better.
Appreciate any idiot friendly tips.
Cheers
Andy

hi Andy! welcome to the forum!
your question is not at all stupid!
there is no API function that would directly iterate over columns instead
of rows.
you'll have to write you own function for that, which is in many ways
better that using a suite, because of the minimal overhead in custom
functions.
you can use "iterate_generic()" to make you code multi-threaded on a column
by column basis.

Similar Messages

  • Printing 1 Label in Row and Column Other Than Row 1, Column 1

    I want to print 1 label and want to print it on Avery label stock in a row and column other than row 1, column 1. I'm using Avery Labels 8163. I can select the row and column I want to print on in Word but can't figure out how to do it in *Address Book*. Anyone know how to do this?

    You can't do that in Addrress Book. But you can use pearLabelizer to do that. Be sure you download and install the appropriate Label Definition file and name it as such so you can select it from the pop-up list in the program's Preferences window.

  • I am having problems using Numbers package, unable to add specific cells in a column, when I tap "sum" it totals the whole column, rather than the specific cells I want. Would appreciate any help. Thank You Francis

    I am having a problem with adding selected numbers in a column. When I select "sum" the whole column is added, not just the selected cells. I would appreciate any help how to rectify? Many thanks. Francis Anthony

    I don't know if this is the best way but it's pretty easy.
    1.) Select the cell you want the sum in.
    2.) Select the sum function
    3.) In the line where you see =sum(B2:B8) using your finger tap the B2:B8
    4.) Use the backspace key to delete the B2:B8 and it will then show "value"
    5.) You can now tap any cell you want in the sum
    6.) When finished tap the green check mark button at the end of the sum line.
    That pretty much sums it up.
    Good luck.
    Steve

  • How to align headline to column, rather than wrapped text

    I have a large text box containing multiple paragraphs aligned to the left. Throughout there are 5 sub heads that need to be centered. There are images that the paragraphs are wrapping to. When I use the Align Center option for the subheads, some are aligned to the entire text box and some are aligned to the center of the wrapped text. (The images do not extend to the subheads, so it is not a situation where the text wrap is forcing the subheads to move) I would like all of the subheads to be consistently in the center of the entire text box - is there an option I am missing?
    Sorry if this is an obvious question, but I appreciate any help!

    This one is using dummy text, but it shows the same issue I am having. You can see where Subhead #2 and #4 are affected by the image text wrap. I know I can use a center tab, but am wondering if there is a way to change the settings to make them center to the entire column.
    (The red dotted line is just to show where that the center line.)
    Thanks!

  • Is it possible for extra tabs to appear in multiple rows rather than having to click the arrow?

    It would be great to have tabs in rows, similar to how you can set up the Windows taskbar.

    There are add-ons that can do this, but they also offer many other tab related features rather than just allowing multi-row tab bar, so this may be a bit of overkill.
    A couple of examples are:
    * Tab Mix Plus - https://addons.mozilla.org/firefox/addon/tab-mix-plus/
    * Tab Utilities - https://addons.mozilla.org/firefox/addon/tab-utilities/

  • I recently began using reminders in ical and downloaded the iPhone and iPad app. It works great. However, the reminders in ical on the COMPUTER is difficult to work with - thin long column on the right rather than in it's own screen. is there a reminders

    I recently began using reminders in ical and downloaded the iPhone and iPad app. It works great. However, the reminders in ical on the COMPUTER is difficult to work with - thin long column on the right rather than in it's own screen. is there a reminders app for the COMPUTER that is more user friendly?

    sgreenie,
    If you are willing to wait, Apple - OS X Mountain Lion - Inspired by iPad. Made for the Mac explains that a "Reminders" application will be included in the next release of OS X.

  • Is there a way to have numbers in a row show below your slideshow rather than thumbnail images?

    I'd like to have just a row of numbers for the viewer to tick through, rather than thumbnail images, to save space around my slideshow...have checked the counter but that must not have been the thing

    Hello,
    Slideshow thubnails won't accept anything else apart from images. Slideshows only accept images. Use compositions if you wish to insert text etc.
    Cheers
    Parikshit

  • How do I get the numbers ipad app to plot a graph of dates against values, where the most recent date is on the right of the graph, but the most recent date is at the top rather than bottom of the rows in the table?

    How do I get the numbers ipad app to plot a graph of dates against values, where the most recent date is on the right of the graph, but the most recent date is at the top rather than bottom of the rows in the table?
    Also how can it be a line graph without plotting a circle at each value?
    Thanks this is very frustrating

    Make a copy of the table and produce your Line chart or Bar chart from the copy. Sort the copy into the order you want to see in your chart.
    Alternately you could use a Scatter Chart...
    Jerry

  • Want to be able to open tabs in multiple rows, rather than in a single row. I used tab mix plus before, but it says it is not compatible with New tab Homepage. The older version of Firefox allowed this very easily.

    Want to be able to open tabs in multiple rows, rather than in a single row. I used tab mix plus before, but it says it is not compatible with New tab Homepage. The older version of Firefox allowed this very easily.

    Your plugins list shows outdated plugin(s) with known security and stability risks.
    *Java Plug-in 1.5.0_06 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

  • How can I use the database default time rather than Java supplied time

    I've searched over and over and nobody seems to have this issue so maybe its just me!
    When inserting a record I would like the a create_date column to automatically use the database time rather than a supplied time via JPA. That was all times a relative to the database which makes sense.
    The trouble is I cant figure out how to do this in a sensible manor.
    If I specify an column like :
         @Temporal(TemporalType.TIMESTAMP)
         @Column(name = "CREATE_DATE")
         private Date createDate;
    and IDL
    CREATE_DATE TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_DATE NOT NULL
    If I leave createDate null I get an exception. If modify the column to allow Nullable then column is set as Null.
    If I leave the column out of the entity bean and then and create a row then the database current time is inserted. The trouble then is that if I want to read the date I'm going to have to create a copy of the bean but with the CREATE_DATE in it, and this doesn't make sense.

    I should also mention that TopLink has always supported the ability to retrieve the current time from the database for use in optimistic locking. The TimestampLockingPolicy offers the ability to configure the next value being retrieved from the database instead of using the local time from the JVM. Our extended optimistic locking configuration does not currently support setting this option but it could be done using a descriptor customizer which can be configured in your persistence unit properties.
    Using optimistic locking may be a good solution for the last modified date since it will also ensure that you do not corrupt the database if someone else has incremented this value since your last read.
    Doug

  • TSQL code that causes table data to be deleted rather than fail with a compilation error

    Afternoon,
    I recently did this by accident and it felt as though it should have failed with a compilation error rather than run
    A query of the form
    delete from jobs
    where id in
    select id from calibrations
    will delete all rows in the jobs table when the id column exists in the jobs table, but not the calibrations table. This should fail with a compilation error.
    the following sql can be used to generate a test database to show the problem
    USE [test]
    GO
    /****** Object:  Table [dbo].[calibrations]    Script Date: 28/11/2014 13:32:59 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[calibrations](
        [JobId] [int] NULL,
        [textfield] [nvarchar](50) NULL
    ) ON [PRIMARY]
    GO
    /****** Object:  Table [dbo].[jobs]    Script Date: 28/11/2014 13:32:59 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[jobs](
        [Id] [int] NOT NULL,
        [Name] [nchar](10) NULL
    ) ON [PRIMARY]
    GO
    INSERT [dbo].[calibrations] ([JobId], [textfield]) VALUES (1, N'something')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (1, N'a         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (2, N'b         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (3, N'c         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (4, N'd         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (5, N'e         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (6, N'f         ')
    GO
    Simon
    simon

    will delete all rows in the jobs table when the id column exists in the jobs table,
    but not the calibrations table. This should fail with a compilation error.
    Hello Simon,
    That's a bug in your T-SQL Statement, not in SQL Server. The Statement as it is valid and column "id" exists, so why should it fail on compilation?
    And that is the reason why we always should use full qualified object name, e.g. like
    delete from jobs AS J
    where J.id in
    select SUB.id from calibrations AS SUB
    and this Statement should fail on compilation.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How can copied calculations be made relative rather than absolute?

    Frequently I like to copy a recurring item from a previous entry, change the date and assume all will be well. But Numbers 3.2.2 also copies the calculations as absolute rather than relative. That is a calculation of previous balance plus a credit minus a debit is referencing the copied balance, credit and debits rather the balance, credit and debits in the new location, thus throwing the calculations off.
    Supplementary question:
    Is there a fast way to correct the wrong calculations once made? A fast way to restore an orderly sequence one row referencing the previous row's balance and the current row's credits and debits?

    Hi Wanapitei
    Have you tried this?
    Click on a "lozenge" (A2 in this example) to see the contextual menu.
    Clicking on Preserve Row or Preserve Column will turn on (or turn off) the $ sign in the formula. That toggles between Absolute and Relative references.
    Regards,
    Ian.

  • [svn] 612: Updated milestones.html to mention creation of tags/3.0.0.477 ( rather than tags/3.0.0, which has been deleted)

    Revision: 612
    Author: [email protected]
    Date: 2008-02-21 17:34:50 -0800 (Thu, 21 Feb 2008)
    Log Message:
    Updated milestones.html to mention creation of tags/3.0.0.477 (rather than tags/3.0.0, which has been deleted)
    Modified Paths:
    flex/sdk/milestones.html

    Thank you for this.
    I have been messing around with this last few days, and i really love the feature to pinpoint the validation errors on map.
    I has always been so annoying to try pinpoint these errors using some other GIS software while doing your sql.
    I have stumbled to few bugs:
    1. In "Validate geometry column" dialog checking option "Use DimInfo" actually still uses value entered in tolerance text box.
    I found this because in my language settings , is the decimal operators
    2. In "Validate geometry column" dialog textboxs showing sql, doesn't always show everything from long lines of text (clipping text from right)
    3. In "Validate geometry column" dialog the "Create Update SQL" has few bugs:
    - if you have selected multiple rows from results and check the "Use Selected Geometries" the generated IN-clause in SQL with have same rowid (rowid for first selected result) for all entries
    Also the other generated IN clause in WHERE-clause is missing separator if you select more than one corrective function
    4. "Validate geometry column" dialog stays annoyingly top most when using "Create Update SQL" dialog

  • Text Direction ... headers vertical rather than horizontal

    I have a report with 20 columns...
    So to be able to show all on 1 page, I want to be able to put headers vertical rather than horizontal..
    Any Ideas how to do this?
    Thanks
    Dean

    michaels2
    I'm getting LPX-00601 when testing your code (10.2.0.4)
    SQL> select * from test_xml;
    NAME                        AGE   PASSPORT
    John                         26 1231232143
    Peter                        28  209381232
    Lisa                         24  120431474
    SQL> SELECT *
      2    FROM XMLTABLE ('ROWSET/ROW/*' PASSING xmltype (CURSOR (SELECT * from test_xml)));
    COLUMN_VALUE
    <NAME>John</NAME>
    <AGE>26</AGE>
    <PASSPORT>1231232143</PASSPORT>
    <NAME>Peter</NAME>
    <AGE>28</AGE>
    <PASSPORT>209381232</PASSPORT>
    <NAME>Lisa</NAME>
    <AGE>24</AGE>
    <PASSPORT>120431474</PASSPORT>
    SQL> SELECT *
      2    FROM XMLTABLE ('ROWSET/ROW/*' PASSING xmltype (CURSOR (SELECT * from test_xml))
      3  COLUMNS name VARCHAR2 (30) PATH 'node-name(.)',value  VARCHAR2 (30) PATH '.');
    COLUMNS name VARCHAR2 (30) PATH 'node-name(.)',value  VARCHAR2 (30) PATH '.')
    ERROR at line 3:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00601: Invalid token in: '/*/node-name(.)'any clue?
    Thanks

  • How import prior Backed-Up Fox Favorities in multiple sub-folders rather than one at a time in Fox 6.0

    How do you import prior Backed-Up Fox Favorities. This involved many short-cuts and contained in multiple sub-folders.
    How can I import the whole folder library rather than one short-cut at a time from each folder.

    The favorites shortcuts were not IE but from Firefox. I had a operating system failure. So, after re-installing the operating system, I then had to re-install all applications anew.
    After installing Fox 6.0, the problem is my prior use of folders and sub-folders with many favorites shortcuts in each.
    It appears that I will need to start anew with creating a folder system in the new firefox application. Then take all of the favorites shortcuts, individually, out of folders and put them in a file in a row, in an antilog fashion. Then try to get Firefox to accept them in some fashion.
    I also do not know how to (1) export IE Favorites (2) in IE (3) to an HTML?
    I am just lost.
    Ijohn5

Maybe you are looking for

  • Need help creating a Jframe

    Hi guys, need a little help here in creating a Jframe. Its not something I am knowledgeable at all with and I need this done for my Introductory Java class. I have the other parts of the program finished as best as I can get it. I will post the probl

  • Only one NIC at a time?

    I'm pretty new to OS X Server administration and was wondering if someone could point me towards some information about getting both NIC's to answer. I've got both configured and only the first one in the network "Service Order" is the only one respo

  • Full-Screen bug with Safari

    I hope this is already a known issue. I use Safari on Mac OS X. In my flex application, I have problem with full-screen mode. When I get back to normal mode from full-screen mode, and then resize or maximize safari window, the screen displays abnorma

  • Add page border/keyline using Acrobat 8?

    Hello, Does anyone know if there's a way to add a keyline or page border to a PDF document? I have about 100 PDFs I've created for a client and now they've come back asking to have keylines added to every page in every PDF. Other than manually adding

  • Help me for consolidation of multiple databases

    Hi all Oracle Gurus, I need some help, could anyone please help me in my problem? Here is my problem, I have three seperate Oarcle Databases installed on three different machine. I am in search of any tool or the way to get access all databases from