User defines video clip order for playback

I would like to have a site that has several vieo clips in a
library where the user could drag and drop to a time line for video
playback. I have seen this but am ot sure if it is a third party
program or created rightin flash.
For instance
The user sees three short video clips and can view each one.
They can then drag these to any orrd they want in a timeline and
then view all three at once as a "complete video." can anyone
suggest a way or a program for this? thanks, Chris

"You can't" is the sad answer to this questioned topic.
I wanted such a simple move yesterday in Flash, but was literally depressed to learn that you "can't" keyframe a move on a video clip in Flash. Shame on you Adobe! Today, as suggested in this , I am trying to get that same keyframed move in AE, and am failing because keyframes and the graph editor make NO SENSE!!!  So, in Flash "you can't", and now today in AFTER EFFECTS - "you can't either".......
I've been producing broadcast 3D animation for nearly 25 years, and have produced some of the finest complex keyframing in Lightwave, Softimage and 3D Studio Max. I do realize that those are 3D programs, but a keyframe is a keyframe, and the defined functions of bezier vs linear in a graph editor should be consistant everywhere. There is no consistancy of keyframe usage and function WITHIN the Adobe family of animation softwares! Adobe - you lie by telling me that I can keyframe in After Effects - your keyframing is very difficult to manage and unpredictable - and your graph editor is an absolute joke, which deserves deletion! Oh you can keyframe in AE - ONLY if you just want to go from point A to point B with NOTHING ELSE.  Only 2 keyframes at a time, and don't you dare try to mix bezier with linear keyframes in AE either!,,,, lets keep everyone safe now, by keeping keyframing -constrained at Pre-School Levels please.

Similar Messages

  • Standard report for User defined feild in order operation

    Hi all,
    do we have any standard report? for User defined field in order operation. actually we have User defined field in task list and same could be reflected in order operation. so i am using those user defied field to record extra info in maintenance order.  i am wondering how to get the reports . do we have any standard reports?
    thanks
    Amit kushwaha

    Dear Amit
    I have utilised 3 user fields & activated order enhancement tab. I could find these three fields in report IW37N & IW49N. I m using ECC 6.0 EHP4. Try to set the layout & look for  fields - user field for quantity in the layout. For this please maintain some data in these user fields of some orders and then check for those orders in t code- IW37N & IW49n.
    Shakti

  • I upgraded to Lion and then all video clips on for instance Youtube freeze every tenth second to buffer more data. I have a MacBook Pro and never had any problems when using Snow Leopard. Ulf Magnusson, Sweden

    I upgraded to Lion and then all video clips on for instance Youtube freeze every tenth second to buffer more data. I have a MacBook Pro and never had any problems when using Snow Leopard. Has Lion problems with this?
    Ulf, Sweden

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • User defined function in java for message mapping

    I wrote the following user defined function in java for message mapping and mapped vendor with this. The aim of this function is to write a error file at defined path when i send empty Vendor value from File to RFC-Function module BAPI_PO_CREATE. The "err.txt" error file is not written when i execute in TEST but the value "ERROR" is returned to destination Vendor Field.
    public String  validation(String a, Container container) {
    //write your code here
    if (a.equals("")) {
    try {
    String source = "Vendor cannot be empty";
    char buffer[] = new char[source.length()];
    source.getChars(0, source.length(), buffer, 0);
    for (int i = 0; i < buffer.length; i +=2)
       f0.write(buffer<i>);
    f0.close();
    FileWriter f1 =  new FileWriter("/10.10.0.55/sapmnt/trans/edixiin/err.txt");
    f1.write(buffer);
    f1.close();
    catch (IOException e) {}
    return "ERROR";

    Hi Senthil,
    Check these things :
    1) Whether you have permission to create a file in that directory.
    2) try giving this 
    10.10.0.55
    sapmnt
    trans
    edixiin
    err.txt
    3) Also check for permissions.
    Hope this will help you.
    Regards
    Suraj

  • User-defined function in order by?

    Hey guys.  We're trying to port our postgres db to Oracle, and I'm stumbling on this one issue.  We have columns called 'sortSequences', which are arbitrarily long arrays of integers.  For POC purposes, I am using varray(), but that probably won't work as an production implementation, because of it's strongly-defined size.  Anyway, the crux of the problem is that I need to be able to select * from foo order by sortSequence, where the ordering evaluation is custom code.  The array of integers essentially represent infinite-precision math, and we have a deterministic algorithm for comparing them, but one cannot simply produce a value from them (which I think prevents me from using a map member function in a user-defined object type.)  In other words, we don't really care what the values are, we are just using them collectively as a sorting index.  An aggregate function didn't look like the right answer, and a simple scalar function is out of the question.  We were looking at domain indexes, but it's not clear to me that even if we created an operator bound to our user-defined type that the db would use that function for order by evaluation...
    Can anybody think of a solution for this problem?  If we absolutely have to live without this functionality, we can replicate it in app code, but we wish to avoid that at all costs...
    thanks,
    brian

    Doesn't look very promising for a general case.
    Even for short sequences and moderate number values the computed numbers to order by are quite large.
    with
    data_table as
    (select '[10,1,1]' csv from dual union all
    select '[1,5,-1]' from dual union all
    select '[1,1,1,1]' from dual union all
    select '[3,-5,1,3,2]' from dual union all
    select '[1,1,2]' from dual union all
    select '[1,20]' from dual union all
    select '[2]' from dual union all
    select '[1,7,1]' from dual
    mapped as
    (select csv,
            lvl,
            item - min(item) over (order by null rows between unbounded preceding and unbounded following) n,
            max(item) over (order by null rows between unbounded preceding and unbounded following) -
            min(item) over (order by null rows between unbounded preceding and unbounded following) m,
            max(lvl) over (order by null rows between unbounded preceding and unbounded following) x
       from (select csv,
                    level lvl,
                    to_number(regexp_substr(t_csv,'[^,]+',1,level)) item
               from (select csv,
                            ltrim(rtrim(csv,']'),'[') t_csv
                       from data_table
             connect by level <= regexp_count(csv,',') + 1
                    and prior csv = csv
                    and prior sys_guid() is not null
    joined as
    (select l.csv,l.lvl,nvl(m.n,0) n,l.m,row_number() over (partition by l.csv order by l.lvl desc) rn
       from mapped m
            right outer join
            (select csv,lvl,m
               from (select level lvl,
                            (select max(m) from mapped) m
                               from dual
                             connect by level <= (select max(x) from mapped))
                    cross join
                    (select csv from data_table)
            ) l
         on l.csv = m.csv
        and l.lvl = m.lvl
    order by csv,lvl
    select csv,o
      from (select csv,rn,o
              from joined
             model
             partition by (csv)
             dimension by (lvl)
             measures (rn,n,m,0 o)
             rules
             (o[lvl] = (nvl(o[cv(lvl) - 1],0) + n[cv(lvl)]) * m[cv(lvl)])
    where rn = 1
    order by o
    CSV
    O
    [1,1,1,1]
    61035000
    [1,1,2]
    61046875
    [1,5,-1]
    62562500
    [1,7,1]
    63375000
    [1,20]
    68359375
    [2]
    68359375
    [3,-5,1,3,2]
    78223925
    [10,1,1]
    148921875

  • User Defined Fields greyed out for one user

    Hi Experts,
    One of our users is a Super User but on the Business Partner Master Data screen, the User Defined Fields are greyed out.
    This is user specific as the issue is happening for the same user on 2 seperate PCs.
    Other users can update these UDFs - any suggestions?
    Thanks
    Greig

    Hi
    take a look at this SAP Note :
    Cannot access settings for the user defined fields
    Symptom
    Cannot access settings for the User Defined Field(UDF)
    Other terms
    UDF, user defined field, sbo-udf, settings for UDF are inactive, the settings for the udf are greyed out.
    Reason and Prerequisites
    Need to use the Settings option to order the udf.
    In Tools -> User Defined fields -> Settings the option 'Settings' is greyed out and inactive.
    Solution
    If in Tools -> User Defined fields -> settings and this option is not available then return to the document and click anywhere in the main document window.
    Now return to Tools -> User Defined fields -> settings and this option will now be active.

  • A video clip import for a new project keeps showing up as a clip from an older project.

    So here's the issue, I succesfully imported and trimmed 95% of the video clips from my GoPro today. However, when I upload the piece de resistance, it shows up as a clip from an older project that I've already deleted. Despite showing me the older clip in the imported section, I can still play approximately 1/3 of the actual, new clip. Problem is it stops and doesn't allow me to work with the remaining footage. I've tried importing it straight from the SD card, copying it to the desktop first, etc. No luck. Any advice?

    So, it's Photoshop CS3.
    Anyway, from what I understood, you open the photo directly form the disk in Photoshop. That is, you don't use Lightroom to open the photo in Photoshop. It just doesn't work this way. As I said above, Lightroom has no way of knowing when to import a photo that has been saved in Photoshop.
    If you insist on using Jpegs for derivative files, your best way to go is indeed using Synchronize.
    However, I'd advice to use a lossless format, like TIFF or PSD. Why leave image quality on the table (as Jeff Schewe likes to say)? Storage is cheap and you're editing only your best photos in Photoshop anyway.
    And as an additional benefit, you can automate the process of importing derivatives:
    Configure what file type to use in Prefs: TIFF or PSD, bit depth, color space etc.
    Select an image in Lightroom and hit Ctrl+E.
    The derivative file is created in the chosen format and opened in Photoshop.
    Edit and save in Photoshop.
    Voila! Your edited derivative is already in Lightroom.

  • User Defined CoA  Level 6 for Active Accounts

    I have not selected indian CoA. Through User defined i have created entire CoA. There, i have given Active Accounts as Level 6 instead of Level 5 . Will it create Problem.
    Rakesh N

    Hi,
    Absolutely no problem.  Levels are only for COA grouping.  IN B1 Upto 10 levels you can group your COAs.
    Regards,
    Venkatesan G.

  • Is there a way to force full video clip buffering before playback begins?

    i have 138K download radio link and ALL flash videos on websites that don't download pause every 5 seconds and buffers for 3.... is there a way to buffer the whole thing before playback?
    Mac OS 10.6.2
    Adobe Flash  10,0,32,18

    sure, create a listener that waits for the complete event, then play the video.

  • User Defined Characteristics not populating for Batch during GR of SC PO

    We have a requirement to populate the one characteristic ( Country of origin ) of batch during GR.
    After GR the characteristics value should be displayed in Classification Tab of MSC3N transaction.
    So that I have implemented the Enhancement MBCFC004 .
    Two conditions here for Populating the Country of Origin
    1) During GR of Standard Purchase Order the Characteristics (Country of Origin) value should be mseg-oic_oland1 ( Country from Extenal Details )
        For this condition the User Exit code is working perfectly and also updating classification in MSC3N .
        NO ISSUE for Standard Purchase Order.
    2) During GR of Subcontract Purchase Order the Characteristics (Country of origin value ) should be populated from the characteristics value of Batch of
          component Material .
        For this condition the User Exit Code is working perfectly , But NOT updating classifcation in MSC3N .
        This happens for Subcontract PO.
    Can anyone suggest solution , why this happening for Subcontract Purchase Order.

    Hi Sumit,
    I am not sure about your question, but if you want to populate the classification data during goods receipt then you need to maintain characteristics values in material master for classification tab under class type batch i.e. 022. After then it will apper during goods receipt for characteristics value for batch.
    Regards,
    Bhagat

  • Restriction of user status in service order for billing due list

    Dear CRM Experts,
    I have configured status profile for service order as OPEN,INPROCESS and Completed and have assigned this to the service order transaction type.
    Now once i save a service order without errors ,the system is automatically generating abilling document in  billing due list TX:BEA_DL_01 even though the user status assigned to it is OPEN ,INPROCESS AND COMPLETED.
    According to our client requirement ,a billing document has to be created in Billing due list if the User status assigned to it is COMPLETED only.
    Please suggest the solution.
    Bye,
    Madhav

    Hi Nanda,
    As per your last reply, for some Service Orders you are unable to change the Status. Can you have check whether those service Orders are error free?
    Sometimes, when there are errors in service orders or in 1Orders you cannot change the status from In Process or Open even when you have released certain Items.
    Hope this helps.
    Thanks,
    Samantak.

  • User-defined Favorites or Shortcuts for Reports and Schedules

    Hi experts,
    A client was inquiring whether it's possible to for an end-user to create shortcuts or favorites to frequently used reports within BPC.  I know it's possible to use the BPFs or presumably the custom menu tools to create links. Is there a solution that anyone has used that allows end-users (rather than those customizing) to create shortcuts?
    I also tried the "locking" the Excel frequently used file menu but that does not register BPC reports.
    2) Any difference or incremental functionality in version 10?
    Thanks
    Eyal Feiler

    Hi Eyal,
    Using BPF or custom menu is possible. Hoewever, these can not be maintained by the end-user, this will have to be done by the admin, therfore this will not meet your requirements. There is only one option in BPC 7.0/7.5 that might help: the end-user can save the concerning reports in the 'My Reports' folder, disadvantage is that these reports are not maintained centrally, so in case of any changes in reports/schedules they should be copied to the My Reports folder manually.
    BPC10 will have some major improvements in this area, with the option to create personal 'workspaces' where links to spcific tasks/reports/schedules can be made and maintained.

  • Feature Request: user-defined virtual keyboard popup for text fields

    It would be convenient to be able to define (either declaratively in XML or programmatically) custom virtual keyboards (codepoints + font-name)  that could be popped up from the context-menu on any text field.
    The string of characters produced on the virtual keyboard should be inserted into the associated text field at the .selectionBeginIndex location, or replace any selected text, if applicable.
    Adobe could also supply  predefined keyboards, but the important thing is that the programmer have the ability to define custom layouts and choose which codepoints the virtual keyboard contains, and that it be launchablefrom a custom contextmenuitem or that it be very simple and easy to tell Adobe which layout should be launched shoulda default contextmenuitem be dedicated to this purpose.
    Slick if it could support programmer-controlled transparency, so what lies beneath it could be revealed if the programmer desired.

    User-controlled transparency (with a slider) would also be a nice feature, though the programmer should be able to hide/show the slider widget.

  • User Defined Query Result Ordering ???

    I have a problem in Ordering my query to desired result.
    Example : In my WHERE clause I specify IN operator and give some values (Integer) : I want the result to be in the same order what I have specified in the In operator values ?.
    Faheem

    You can use a Decode in the order by clause
    e.g.
    select * from table
    where field1 in ('d', 'a', 'c', 'b')
    order by decode(field1, 'd', 1, 'a', 2, 'c', 3, 'b', 4)
    I have a problem in Ordering my query to desired result.
    Example : In my WHERE clause I specify IN operator and give some values (Integer) : I want the result to be in the same order what I have specified in the In operator values ?.
    Faheem

  • Slowing down or expanding a video clip in iMovie for iPhone 4

    Is there a way to expand a short video clip in iMovie for iPhone 4? I can expand a still image, but not a video clip. I would like to take a video clip that lasts 2 seconds and expand it to 15 seconds or longer. The video clip could be slowed down.
    I can do this with still images, so I would think I would be able to do this with video clips. For example, when I insert a still image it defaults to 2 seconds with the ken burns effect. I can then expand or shorten the still image to last as long as I want (from 2 seconds to 10 seconds, for example). However, when I insert a short video clip I am not given that option. When I grab the crop button and try to expand the video clip it stops at the end of the clip.
    Any suggestions?

    Thanks Joe, hopefully Apple adds this feature to iMovie soon.

Maybe you are looking for

  • Address Book and Google Contacts...?

    What's the story with syncing Address Book with Google Contacts? I set it up once, but since then it has not been able to syncronise changes made to either AB or GC (nb. even after clicking the sync button). Is there a trick to maintaining syncronisa

  • Need help in GRC Migration

    Hello Gurus, I am looking for an Expert who could assist me in GRC Migration. I have downloaded the Migration guide, which is available on Market Place. There is a Migration Tool available (Java Tool), howevre there is nothing mentioned about the mig

  • To combine a multiple jsp pages in a one single page

    hi all, my problem statement is, i have 5 tabbed panes i,e each in a jsp page i need to put all those information into one single jsp page...while submiting the data. so how can i do about this using jsp. regards geetha

  • Setting in native Cisco IPSec come with Lion

    In my new MBA, I would like to setup a VPN connection.  Found that there is native Cisco IPSec inside Preference -> Network -> VPN and would like to configure it.  However, I need to change Port Number of destination, but cannot find anywhere I can d

  • Delta in BW after R/3 archiving

    Hello, following question: Currently we are thinking about R/3 archiving (with archiving objects). R/3 and BW are connected. In R/3 we want to archive e.g. year 2000 and 2001. In BW are all line items from 2000 - today. What will happen after a R/3 a