How does these all related?

hi all,
i have some question tat i wish to clearify,
1. why do we put <%@Page include =...%>
2. does the <%@Page include =...%> has any effect on the current page, how does it affect it?
3. how about <%@Page import =...%>? how does it differ to the question 2?
thanks all

To my knowledge, there is no:
<%@ page include="..." %>
<%@ page import="some.pack.class"%>
is used to import Java classes so they are available to the JSP page. It works just like the import statements at the top of a normal Java file (as a matter of fact, that is what they are turned into when the JSP is translated to a Servlet...)
As for the <%@ page include="..." %> directive.... it doesn't exists. You may be thinking of <%@ include file="..." %> in which case it copies the content of the file to the translated JSP page at the location of the include directive.
For more information, see the links at:
http://java.sun.com/products/jsp/syntax/2.0/syntaxref20.html
for Page directive (<%@ page ... %>)
and Include directive (<%@ include ... %>)

Similar Messages

  • How does trade promotion relate to campaign

    hi,expert,
    I am a new-hand in crm. to my knowledge, trade promotion & campaign is different function for CRM. trade promotion deal with our traditional trade promotion such as discount, free goods etc., while campaign is about  arranging some kind of activity for the channels letter, e-mail, and lead. when marketing in an concrete enterprise, it seems impossible that trade promotion & campaign just do their own business and have no relation. so my question is how does trade promotion differ from campaign,& also how they cooperate in marketing.
    besides, since trade promotion also has its own trade promotion planning, so how  does trade promotion planning differ from marketing plan? if they two co-existed, what's the relation between them?
    your response will be warmly welcome.
    thanks a lot.
    lisa

    Hi Lisa
    Diff betn Campaign and TPM
    Campaigns are the ways and mediums which helps in communication, increasing awareness, increase sales and wide range of activities. It can be done through mailing list, product promotions, telecalling etc. So in nutshell as an organisation, you are trying to reach your customers for increasing customer base or sales or product awareness.
    Examples of campaign:
    1)You give $2 off on the purchase of every pack of Beer bottle.
    2) Set up a stall in the Expo and register the queries to generate the leads.
    3) Telecalling to all the individuals in the city with more than USD 100,000 p.a. income and then create leads.
    However Trade Promotion Management is an activity which is done with the help of your channel partners. The check here is "trade", which means distributors, retailers, wholesellers, re-sellers etc. The purpose remain the same like to increase customer base or sale revenues but here the incentives are given to your channel partner.
    Ex. Organisation sells products through Distributors in the market. If Organisation devise a scheme whereby distributor will get US $ 1000 extra he sells more than 100 cartons/month then it is a TPM.
    Campaign : You can create Campaign without BP master data, you can run Campaign for External email id to generate lead and opportunity. but
    Trade Promotion : You need to have BP master data. Mostly TP functionalities is used in Consumer Durables, FMCG where distributors or retailers as their BP.
    Campaign : can be automated
    TP : not possible
    Campaign : You can use Bounce Management to track and analyse your campaign
    TP : It will be based on the Cutomer Approval status. Normally will be done by key account manager.
    From deal you can create TP
    Hope this will calrify some of your queries...
    Rgds
    Mallikarjun

  • How does JMS Destination relates to a Connection Factory ?

    Hello,
    I am new to JMS but have experience since 1995 with IBM MQseries, I like to understand how Connection Factories and Destination related to each other. I have looked at JMS documentation and seen the graphical representation but in MQ world we create a Queue Manger and a Queue under it. I have looke all over but can not explain this to myself.
    In Sun�s Java Application Server version 9, I have created a Connection Factory called �jms/ConnectionFactory_abc� and then have created a Destination called �jms/destination_abc� and successfully sent and received messages, what I do not understand is that there is no menu option in Sun�s web based screen to related the 2 together!! How do they relate? Do they related becuase of my program logic?
    What if you like to have same Destination names under 2 different Factories?
    ---------Code fragment without TRY/CATCH
    queueConnectionFactory = (QueueConnectionFactory) jndiContext.lookup("jms/ConnectionFactory_abc ");
    queue = (Queue) jndiContext.lookup(�jms/destination_abc �);
    queueConnection = queueConnectionFactory.createQueueConnection();
    queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    queueSender = queueSession.createSender(queue);
    message = queueSession.createTextMessage();
    message.setText(input);
    queueSender.send(message);
    queueConnection.close();
    Please advise
    Thank You.
    AA

    I'll have a stab at this one, but may not be 100% right. Hopefully someone will point out anything I've got wrong.
    A connection factory is used to obtain a connection to the JMS provider, which in the case of MQSeries is synonymous Queue Manager. The connection is used to initiate one or more conversations with the JMS provider / QM, which might include starting a new transactional session.
    The destinations (Queues or Topics) are objects hosted by the JMS provider, however your client can only access these objects after establishing a connection / session, since it is the connection / session which determines the protocols and parameters to be used.
    The JNDI lookups are just a way for your client to obtain a remote reference to the Connection Factory and Queue objects hosted by the JMS provider, without coupling your client with the underlying JMS implementation (i.e. MQSeries, JBossMQ, ActiveMQ etc). When these references are bound to the JNDI tree they are given names like "jms/ConnectionFactory_abc" and "jms/destination_abc", but are not related to each other. Attempting to bind two references with the same JNDI name (on the same JNDI server) will cause in an error. So while you can two identically named queues on separate queue managers, you would have to give them different JNDI names,
    Hope this helps,
    Steve

  • How does PDF/VT relate to 'V'ariable data and 'T'ransactions

    Could someone explain to me how PDF/VT 'supports' Variable and Transactionsl data ?  I'm new to PDF/VT and I'd expected that it somehow made it easier to insert variable and transactional data, but I haven't found anything of that nature.  I do see that VT supports Document Part Hierarchy and metadata.  Is this the improvement related to VT - better ability to manage the documents within a single PDF file?
    There also appear to be a number of other improvements, such as direct ripping of PDF without translating to Postscript first,  JDF-aware metadata, etc.  These improve print operations, but I don't see how they improve variable data handling.
    Any pointers would be appreciated.
    Thanks,
    bob

    Good questions. I'll endeavor to provide a response.
    The most important thing to understand about PDF/VT is that in and of itself, it is a final form file format. It represents the fully composited output stream of a VDP job. There are no “variables” in PDF/VT itself. PDF/VT provides the protocols for final form PDF to optimally respresent such an output stream.
    PDF/VT-1 is built on top of PDF/X-4. All PDF/VT-1 files are totally valid PDF/X-4 files. PDF/VT-2 is based upon PDF/X-4p, PDF/X-5pg, and PDF/X-5g files - in the latter two cases possibly referring to Reference XObjects in external PDF/X-4 files.
    There are two major areas in which PDF/VT supports VDP (and so-called “transpromo”) print streams:
    Data optimization - space and RIP performance. Repeating objects, whether considered “fixed” or “variable” by whatever generates the PDF/VT, are represented via Image XObjects, Forms XObjects, and for PDF/VT-2 also Reference XObjects. Objects are defined once and then referenced many times. This can dramatically cut down the size of PDF files used for VDP. Furthermore, in conjunction with RIP technology optimized for processing PDF/VT files, such as the technology provided by products using the Adobe PDF Print Engine, use of XObjects is automatically recognized and triggers caching mechanisms that allow the RIPed results of XObjects to be cached in the RIP's high speed memory avoiding unnecessary repeated RIPing of common content. PDF/VT metadata also provides for “hints” to assist the RIP in such caching. This type of optimization makes it possible to use PDF for printing extremely graphically-rich color VDP jobs on very high speed (hundreds of pages per minute) digital presses now being developed and released to the market by digital printer manufacturers.
    Metadata.In addition to providing caching hints, PDF/VT provides metadata support for tagging pages or sets of pages for operational considerations. For example, one could tag each “set” of pages associated with the statement for each customer of a financial institution and via such metadata be able to directly access the pages associated with one statement (“view or print the statement for Jane Doe of Anywhere, New Jersey”) or multiple statements (“view or print the statements for all left-handed, herniated, Californians who own a Toyota” assuming of course you have all that metadata on the pages associated with particular account statements). As another example, you could tag via metadata for pages of certain types such as “front covers,” “inside pages,” and “rear covers” where each page type is printed on a different paper stock or size and possibly on a different printer (one could print “all front covers” for “all statements for accounts in ZIP codes 11010 through 11199”). For printing purposes, typically these types of selective printing requests are handled via JDF which instructs the RIP to select and process pages based upon such PDF/VT metadata and other JDF commands.
    Direct printing of PDF without conversion to PostScript has been occurring for a number of years now, especially starting with traditional offset print platemaking and now becoming much more prevalent for high-end digital presses, typically those used for VDP jobs. (Direct PDF isn't yet on typical desktop devices. PDF is still printed to PostScript from Acrobat on most such low-end devices.) PDF/VT really forces the need for direct PDF RIPs, but wasn't the only requirement for same. PDF/X-4 and PDF/X-5 were defined very much as a response to the needs for content at the highest level of abstaction (live transparency, color management, layers, etc.) for direct PDF printing.
    Hopefully this has begun to answer your questions. Let me know if there is further detail that you want or need.
              - Dov Isaacs (Chair, ISO TC130/WG2/TF2 PDF/X and Co-Chair, ISO TC130/WG2/TF3 PDF/VT)

  • What is "Arrow" and how does this programs relate to Windows/BootCamp?

    Hi Everyone,
    On the following YouTube video:
    http://www.youtube.com/watch?v=DxMFCksO0Ps
    When he is talking of the official bootcamp support, he mentions Arrow and other programs alike.
    Could someone inform me of these programs and what their roles are?
    Thanks
    Helooooo

    Hi,
    sounds to me like he's talking about the 'Eye Candy' stuff of Windows 7.
    http://www.windows7home.net/how-to-remove-the-arrows-on-the-desktop-shortcut-in- windows-7/
    But then again I might be wrong.
    Regards
    Stefan

  • Cmp 2.0 how to rollback all related transactions

    Hi,
    As to rollback in cmp 2.0, I'm wondering:
    1. how to make a rollback (is call rollbackOnly the only way)?
    2. how to define within same transactions when an exception caught, rollback all other trans?
    3. modify in descriptor or in code, how? what's diff
    Thanks
    John

    Hi,
    As to rollback in cmp 2.0, I'm wondering:
    1. how to make a rollback (is call rollbackOnly the
    only way)?Yes. Entity beans can only have Container-managed transactions,
    so the only way to tell the container to mark the tx as rollback only
    is to call EntityContext.setRollbackOnly().
    >
    2. how to define within same transactions when an
    exception caught, rollback all other trans?There is no such behavior in EJB or J2EE. There is
    no special relationship/association like this
    between J2EE transactions. E.g., there are no
    nested transactions in J2EE. All transactions are
    independent and peers of one another.
    >
    3. modify in descriptor or in code, how? what's diff
    Thanks
    John

  • PAL/NTSC footage: How does it all work?

    Hi
    I'm a complete newby to iMovie, so please excuse any stupid questions and please assume I know nothing!
    Here's my situation: I have imported a bunch of events into iMovie '09 from two DV camera's. One a tape camera and the other a miniDVD type camera. Both of these camera's are PAL.
    I have since moved to Canada (where I bought my MBP). I didn't change any settings in iMovie when I imported the events from the camera's using Firewire.
    I have edited a project in iMovie and eveything looks great. I can preview the project within iMovie and it looks great.
    I then want to make a a DVD using iDVD. This is where things go wrong. After burning the DVD the playback on my (NTSC?) DVD player in Canada produces a sort of stuttering effect. Audio is fine, colour is fine but the video just seems to stutter a little. I have not had a chance to try plying the DVD's on a PAL system to see if they work there, however I have played both PAL and NTSC DVDs on my system here in Canada, so I assume that this shouldn't be a problem. It must be somewhere in the process starting at importation and ending in the burning the disc in iDVD.
    I have a feeling this has something to do with my settings (PAL/NTSC/framerate) during import, my rendering settings and/or the settings in iDVD etc etc but I have no idea where to start to find the right settings and make the necessary adjustments.
    I don't even know if this is the problem.
    I did a search in the forums but found no posts directly related to my problems or filled with too much jargon for me to understand them.
    Please help!
    Thanks,
    Mike
    Message was edited by: Hakaman

    I believe that if you've shot in PAL (i.e. that's the camcorder format) you have to import as PAL, otherwise iMovie gets confused.
    You can make your DVDs NTSC in iDVD - it's under Project Info. As a test, you could make 2 DVDs of the same project - one PAL, the other NTSC, and see what differences in playback there are.
    There are often quality issues in swapping formats, because the frame rates have no relation to each other (25 vs 29.94).
    Otherwise, you might be able to switch frame rates in the camcorders

  • Confused: how does a videocard relate to my director work environment

    hello;
    I am about to buy a laptop and I am discovering that most
    laptops (affordable)
    have integrated videocards (ex: Intel GMA X3100 w/ 384mb
    allocated ram
    OR ATI Radeon X1250 w/ 512mb allocated ram );
    I understand that these integrated videocards use the
    machine's ram via 'sharing';
    QUESTION: is this an issue for me? I author in director10
    with a cast full of dozens of scripts, usually one .w3d file (
    created in lightwave with somewhere between 5000-20000 points ), a
    flash file that streams in flvs for animated textures;
    thanks
    Shannon

    Yes it does. The shared RAM isn't so much an issue. More RAM
    will equate to better handling of texture maps on those 3D objects.
    However, the Intel GMA graphics processor (aka GPU) are not
    up to par compared to a ATI or NVidia GPU. When it comes to
    rendering 3D objects you need fast floating point calculations and
    polygon rendering/fills. That is what an ATI card or NVidia card in
    a desktop or laptop will buy you. Both excel and will render
    DirectX (the 3D driver) faster and better then the Intel GPU.
    The downside is that they consume more power. You will seldom
    find a ATI or NVidia card built into say a Tablet laptop computer.
    Most Tablets tend to lean towards consuming less power for more
    portability in the hand of the user and thus ship to the less power
    consuming (and weak) Intel GPU.
    Also, if you do alot of transparency in Director (and
    especially Flash within Director), the Intel GPU will come to a
    crawl.

  • What happens here and how does it all work?

    ok so lets say i have 3 things running:
    1 model (obejct A)
    2 objects (B and C) which update model A at random intervals
    ok so lets say B tells A to update(params).
    this update takes a long time to finish, meanwhile
    C asks A getInfo() which returns the status of A.
    what exactly happens?
    does the WHOLE OBJECT A get "locked" while update(params)
    is being run? what if A had 100 huge vectors to update
    and had updated only 50 of them when C asks for As latest
    info?
    thanks for the help!

    Without threads and in a single process then whatever occurs first in the code is what occurs first.
    With threads then if the object is synchronized then it waits until the other process is done.
    If not then it gets the data, whatever it is, when it access the object.

  • How does font size relate to font height

    Hi,Im getting confused about font size.
    If I use a font of say font size 12. Does that mean
    - its maximum height is 12
    - its maximum ascent above the baseline is 12 but it can also go below (descent) below the baseline making total height something else.
    - something else.

    The short answer is: "No".
    The font size is APPROXIMATELY equal to the ascent, or probably more accurately, the ascent is approximately equal to the font size. But if you check font metrics for any given font you will see that they are not exactly equal. Perhaps there is some definition somewhere that specifies a precise relationship, but if so, I don't know what the formula is. Even the font metrics are only something of a general hint: according to the API documentation, some characters can be taller than the ascent or drop lower than the descent. And of course character widths vary widely.
    My practice is to get the font metrics object and ask what I've got, rather than relying on anything.

  • How to remove all CIM in SLD

    Hi all
    i would like to remove all software component from current SLD. i am not telling reimport new released CIM and Contents Version.
    how to remove all related component to make empty SLD BOX?
    Regards and Thanks in advance
    Tony

    david,
    goto SLD-> software catalog -> products / s/w components...
    now when u open any particuler product, the ris an button of REMOVE, click tht to remove tht product and all its related components else,
    select ur component u want to delete and then again click REMOVE, u will be deleting only tht componenet...
    so u need not delete all the components or products, just the ones u dont find useful...
    regards...
    vishal

  • How does the SSAS storage mode (MOLAP/ROLAP/HOLAP) fits into the BI Semantic Model?

    Hi there,
    I've been reading some posts and whitepapers about the BI Semantic Model (BISM) but there is something that is a bit unclear to me.
    If we imagine Venn diagrams, how does the concept of BISM fits along the storage modes, such as MOLAP, HOLAP and ROLAP? How does these two concepts work together?
    Are they completely independent from the other, or do they overlap somehow? Can I have 
    Regards,
    P.

    BISM is just a marketing term referring to any type of Analysis Services model. What is more important is Multidimensional models can have three storage modes: MOLAP, ROLAP, or HOLAP. Tabular models can have two storage modes: In-Memory or DirectQuery.
    http://artisconsulting.com/Blogs/GregGalloway

  • How does select stmt with for all entries uses Indexes

    Hello all,
    I goes through a number of documents but still confused how does select for all entries uses indexes if fields are not in sequences. i got pretty much the same results if i take like two cases on Hr tables HRP1000 and HRP1001(with for all entries based upon hrp1000). Here is the sequence of index fields on hrp1001 (MANDT, OTYPE, OBJID, PLVAR, RSIGN, RELAT, ISTAT, PRIOX, BEGDA, ENDDA, VARYF, SEQNR). in second case objid field is in sequence as in defined Index but i dont see significant increase in field even though the number of records are around 30000. My question is does it make a differrence to use field sequence (same as in table indexes) in comparison to redundant field sequence (not same as defined in table indexes), secondly how we can ge tto know if table index is used in Select for entries query i tried Explain in ST05 but its not clear if it uses any index at all in hrp1001 read.
    here is the sample code i use to get test results.
    test case 1
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
    *                    objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C' and
                        objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.
    test case 2
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
                        objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C'." and
    *                    objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.

    Mani wrote:
    Thank you for your answer, its very helpful but i am still nor sure how does parameter rsdb/max_blocking_factor affect records size.
    Hi,
    The blocking affects the size of the statement and the memory structures for returning the result.
    So if your itab has 500 rows and your blocking is 5, the very same statement will be executed 100 times.
    Nothing good or bad about this so far.
    Assume, your average result for an inlist 5 statement is 25 records with an average size of 109 bytes.
    You average result size will be 2725 byte plus overhead which will nearly perfectly fit into two 1500 byte ethernet frames.
    Nothing to do in this case.
    Assume your average result for an inlist 5 statement is 7 records with an average size of 67 bytes.
    You average result size will be ~ 470 byte plus overhead which will only fill 1/3 of a 1500 byte ethernet frame.
    In this case, setting the blocking to 12 ... 15 will give you 66% network transfer performance gain,
    and reduces the number of calls to the DB by 50%, giving additional benefit.
    Now this is an extreme example. The longer the average row length is, the lower will be the average loss in the network.
    You have the same effects in memory structures, but on that layer you are fighting single micro seconds instead of
    hundreds of these, so in real life it is rarely measurable.
    Depending on table-statistics, oracle might decide for short inlists to use a concatanation instead of an inlist.
    This is supposed to be more costy, but I never had a case where I could proove a big difference.
    Values from 5 to 15 for blocking seem to be ok for me. If you have special statements in customer coding,
    it #might# be benefitial to do the mentioned calculations and do some network tracing to see if you can squeeze your
    network efficiency by tuning the blocking.
    If you have jumbo frames enabled, it might be worth to be analyzed as well.
    If you are only on a DB-CI system that is loopback connected to the DB, I doubt there might be a big outcome.
    Hope this helps
    Volker

  • How would I create a simple script that does these specific things?

    I am trying to create a script that does these few simple task but I can't seem to compile all the cmdlets together into one. I can pick one task out and have a command for it but I want one script to do it all. Here are the tasks I need it to do.
    store the current location (as in C:\scripts)
    test to see if a folder C:\output exists, if it does not, create it
    prompt the visitor for a folder name (no C:\)
    obtain a directory listing of that folder showing all .ps1 files only
    place the results of this listing in a file named PS1_files_[folder name].txt in the c:\output folder
    repeat this task as part of a loop until an empty string is entered
    restore the present location (for example C:\scripts)

    This is a very good script for a someone new to computers to use as a learning exercise.  You will learn how the computer works an learn how to use scripts to manage the computer.
    This is the excat kind of scritp a teach hands you to do on the first day of class.  THe challenge will help you learn.
    Start here to learn how to write a script:http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    Good luck. Post back with specific questions.  Do not forget to include your script and the complete error message.
    You need to learn basic computer logic and decision making.  The learning materials will step you through that.
    ¯\_(ツ)_/¯

  • How does one manage these new render setting for previews?

    I placed 4 HD clips from a nested into a sequence 5800 x 768 to mimic 4 side by side monitors for a multi channel video.  Each clip cut from the sequence are at 1280x720 all sitting side by side. However when I rendered the previews, they came look all squished. However when I exported the frame it looks fine in Photoshop. (I changed the uploaded image to what it looks like in Premiere in Photoshop to demonstrate the appearance in Premiere.)
    I imagine that the distortion has to do with the sequence render setting which for some reason comes out to 1918 x 253...or the pixel aspect ratio? How does one manage these new render setting for previews so it looks normal in the monitor? 
      

    Either way, I thought that this format would be a great way to view on the monitor 4 channels at the same time. I may need to place them on a “normal” 1440 x 1080 sequence in a line, bringing them down to 25% scale to make it work in the end. I did just try that. I think it will work...but when I imported and nested the old file, the scratch disks changed from the original set up on a D drive back to the main hard drive so I had to change it agin. Otherwise it works fine...so I’ll go with this for now
    These are the instructions I was given.I attched a screen save of the AE file they asked me to use (They must be on vacation, because I have not been able to get hold of them). I don't know After Effects very well:
    “As you begin creating or adapting work for e4c, you may find an After Effects template developed for this system to be helpful. Attached you'll see a zipped file with two AE templates. There is some detailed information (below) from the artist that developed these for us. In addition, a few bits of information that might help you along are:
    ·        The "Watchout"  playback system can support WMV or a QuickTime files . We like .mov files with H.264 codec best!
    ·        The end resolution of the four screens is 5120 x 720 pixels (1280x720 each).
    ·        If works are four-channel, please provide a separate audio (aiff) file so it doesn't slow any one video down.”
    Thanks for your help!

Maybe you are looking for

  • How to find the link between strcture and query technical name

    Hi Guru's How to find the link between Strcture in the query and query technical name. In other way where used list of the structure  used in queries? I know we have table called RSZELTDIR which have the values of strcuture name. from here i do not f

  • How to get the hdmi signal?

    I just but a macbook pro on july 2011 I also purchased a moshi adapter and a dyvex hdmi cable, i must say it is meant for PS3. When i first tried to get the signal, i had to plug/unplug a couple of time. But then it worked out great. After, I tried t

  • Column values as Page Header

    Hi All, I want to display some column values like Company_Name, Company_Address etc in the Page Header of the report. I am fetching these values from table in the query of my report. Can somebody tell me how I can do that? I tried placing a repeating

  • Mavericks and password protected WiFi

    I upgraded to Mavericks on early 2011 MacBook Pro 13 inch.  My basic WPA(2) is working fine. However I tried to connect to password protected WiFi on inflight GoGo internet and the hotel internet and neither would bring up the webpage to login. The W

  • Premiere Elements 4.0 burn issue

    Premiere Elements 4.0 with Windows XP (both pre-loaded on a Dell computer purchased new in 2007).  I am able to create *.prel files with no problem and I had been able to burn projects up to 5-hr length to DVD with no problem until recently.   Starti