Need urgent help with CS4 please

i got a transferred reg key for CS4 premium volume, the proble is that i have installed and been working with it for ver 10 months now, everythink ok, but recently i had to erase my disk completly cause a virus and now i installed ir again, from the original, and every program in in keeps saying "licensing expired" can someone tell me why this happens? ive tried to call support and they say to be available til monday, i have a big deadline on monday! what can i do, please!

http://kb2.adobe.com/cps/405/kb405970.html
Bob

Similar Messages

  • Need urgent help with application please

    Hi i have a project for school. The application is a ball that bounces around in the frame and everytime it hits a wall it changes color and a popup menu is needed to change background color and to change the speed of the ball. I have so far got the ball to bounce and change color everytime it hits a wall and i also have a popup menu to change background color but im having trouble putting slow and fast modes on the popup menu. Below is my source code. Thread.sleep(10) is what determines the speed but i cant get it to be on the popup menu. Can somebody please help me. Thanks
    code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class WormX extends Panel implements ActionListener, Runnable{
    private String[] colorNames =
    { "White", "Gray", "Red",
    "Blue", "Black"};
    private String[] speeds =
    {"Slow", "Fast"};
    private Color[] colors =
    { Color.white, Color.gray, Color.red,
    Color.blue, Color.black };
    private PopupMenu menu;
    private PopupMenu menu1;
    final int WIDTH = 280, HEIGHT = 230;
    public static void main(String[] args) {
    Frame f = new Frame();
    f.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent e) {
    System.exit(0);
    WormX wx = new WormX();
    wx.setSize(320,250); // same size as defined in the HTML APPLET
    f.add(wx);
    f.pack();
    wx.init();
    f.setSize(320,250 + 20); // add 20, seems enough for the Frame title,
    f.show();
    wx.start();
    public void start(){
    Thread t = new Thread(this);
    t.start();
         PopupMenu popup;
    int headx, heady, xinc, yinc;
    Color color;
    public void paint(Graphics g){
    g.setColor(color);
    g.drawString("OOO", headx, heady); //This is what the worm looks like.
    public void run(){
    while (true){
    putWorm();
    repaint();
    try{
    Thread.sleep(10); //This adjusts the speed of the worm
    catch (InterruptedException e){
    e.printStackTrace();
    void checkWorm(){                      //checkworm is the coding for changing the colour of the worm
    if ((headx >= WIDTH) || (headx <= 0)){
    xinc *= -1;
    changeColor();
    else if ((heady >= HEIGHT) || (heady <= 0)){
    yinc *= -1;
    changeColor();
    void changeColor(){    color = new Color((int)(Math.random() * 1677721));
    void putWorm(){
    headx += xinc;
    heady += yinc;
    checkWorm();
         public void init() {
    xinc = 2;
    yinc = 2;
    color = Color.black; //This is the base colour of the worm
    headx = (int)((Math.random() * WIDTH / 2) + WIDTH / 4);
    heady = (int)((Math.random() * HEIGHT / 2) + HEIGHT / 4);
    resize(WIDTH, HEIGHT);
         setBackground(Color.gray);
    menu = new PopupMenu("Background Color");
    enableEvents(AWTEvent.MOUSE_EVENT_MASK);
    MenuItem colorName;
    for(int i=0; i<colorNames.length; i++) {
    colorName = new MenuItem(colorNames);
    menu.add(colorName);
    colorName.addActionListener(this);
    menu.addSeparator();
    add(menu);
    menu1 = new PopupMenu("Speed");
    enableEvents(AWTEvent.MOUSE_EVENT_MASK);
    MenuItem speed;
    for(int i=0; i<speeds.length; i++) {
    speed = new MenuItem(speeds[i]);
    menu.add(speed);
    speed.addActionListener(this);
    menu.addSeparator();
    add(menu);
    public void actionPerformed(ActionEvent event) {
    setBackground(colorNamed(event.getActionCommand()));
    repaint();
    public void processMouseEvent(MouseEvent event) {
    if (event.isPopupTrigger())
    menu.show(event.getComponent(),
    event.getX(), event.getY());
    super.processMouseEvent(event);
    private Color colorNamed(String colorName) {
    for(int i=0; i<colorNames.length; i++)
    if(colorNames[i].equals(colorName))
    return(colors[i]);
    return(Color.white);

    I honestly don't know. I never had this Exception.
    But look at the API:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/InterruptedException.html
    Obviously, Java doesn't like what you do with your thread. Altogether, I'm not sure if your design isn't flawed. Basically, you pause your whole application regularly, so that it seems that you have a regular time flow. This is like doing slow motion on your DVD player by constantly pressing "play" and "pause".
    Think about using the swing timer instead:
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/Timer.html
    So, instead of binding your moving object to your main class, you can trigger it by the timer. Think about it.
    Edit: As I see now, you DID catch the InterruptedException around the Thread.sleep(10) in your original code. Why did you do it in the first place, and why don't you now?
    You can just catch the Exception, and leave it like that. However, when an Exception occurs regularly, it would be better to know why.
    Editedit: Also, you declare the same class which is a panel als as a thread. AWT/Swing don't like it when create new Threads for the GUI, since AWT/Swing bring their own Thread for Event Handling. So, whatever you do with any kind of Threads, do it in some class which doesn't inherit from some visual component!

  • Need urgent help with CS4 button-to-animation functionality

    Problem: I´m making a site who presenting about 11
    «puppets» for a ventriloquist. They are placed across a
    stage, and will pop up and glow when the mouse goes over. when you
    mouse-click on the puppets, it should trigger a animation who blows
    up and move the puppet, and slide some text in from the left. The
    mouse over function is working, but I don´t get the animations
    to function as it should. Any help would be appreciated. You can
    download the .fla file from here:
    download
    here It´s about 36 MB in size. It´s divided into 4
    scene´s, and the «problem» is in Scene_4. The
    action-script is in the top layer, and except stop commands, most
    of the coding is in frame 2. Update: I have attached the code I
    have used (in frame 2) to start the different animations. CAN PAY
    SOME FOR HELP.

    You'll be more likely to get some help if you attach the code
    that is giving you problems. Aside from the high probability of
    there being little desire to download a 36 MB file, having to sort
    thru it to figure out what code applies to what works against
    anyone wanting to try to help you with this--though you may get
    lucky.

  • Need urgent help with HSDIO hardware timing

    Hi everyone,
    I need urgent help regarding HSDIO hardware timing. I've been working in a project which generating serial ramp using HSDIO pxie device. 
    I'm using clock rate 40MHz and generating 14 bit of boolean for each step of ramp. And I have to generate simply 256 steps ramp.
    Which means, 256 (steps) x 14 (boolean array) x 25 ns (period of 1 boolean value) = 89,6 ns.
    What I'm doing right now is with using index of FOR loop as my input data (converting the index into 14bit boolean), then write into pxie device in every iteration,
    which means, my data is getting into output in every 1ms time, right? (I'm using windows)
    And I want to be able to generate faster than that. 
    How can I prewrite my 256 steps ramp, then write them all at once into pxie device. I'm really stuck here.
    In the picture can you see how I do the write into device in every iteration of FOR Loop.
    Regards,
    Yan.

    hi, thanks for responding.
    with using example of dynamic generation with script, I can manage to generate the ramp with controllable delay (generate the whole waveform, including delay with script command, then write to the card).
    But I still have 1 question, I can test the output of the generation using oscilloscope and cant see the start delay (I'm writing delay at the start, before generating the ramp). My signal generated at 0 sec.
    How can I check this start delay? is there any good example delivered with Labview to check this generation? Somehow I cant use the "dynamic generation and acquisition" example to see my generation (cant figure out how to capture the generated signal).
    regards,
    Yan.

  • Need urgent help with Ifs1.1 on Solaris

    We have installed IFS 1.1 with Oracle 8.1.7 on a three tier System (two Suns). We use JWS as WebServer. When we start IFS and JWS everything seems to work fine. But after some time (irregulary) we are not able to contact the JSP-Sites via a bowser. After restarting JWS, everything works fine for some time.
    Sometimes it happens (about one times a day), that the whole JWS crashes (JWS-Admin doesn't work). So we have to restart the whole IFS.
    What can be the problem? We need urgent help, because the deadline for our project is Wednesday.
    By the way:
    Where do I have to start CTX on the IFS- or the Oracle-Side?
    null

    Yes, we tried the Oracle HTTP - Server, but we weren4t able to get it to work. We didn4t get our JSP-Files to work with it. But that is another issue. I think it4s not a problem of JWS, but IFS.
    Additionally it is strange, that we are still able to connect to the database via SqlPlus.
    IFS works fine for about 15 minutes, than it crashes, nothing works anymore. We found following errors in the IfsAgents.log:
    maybe it can help?!
    Mon Dec 04 23:12:20 CET 2000
    Server STARTED: IfsAgents(19944) not managed
    Attempting to load agent EventExchangerAgent
    Agent EventExchangerAgent loaded
    Server STARTED: IfsProtocols(19945) not managed
    Attempting to start agent EventExchangerAgent
    EventExchangerAgent: Start request
    Agent EventExchangerAgent started
    Attempting to load agent ExpirationAgent
    Agent ExpirationAgent loaded
    EventExchangerAgent: starting timer
    Attempting to start agent ExpirationAgent
    ExpirationAgent: Start request
    Agent ExpirationAgent started
    Attempting to load agent GarbageCollectionAgent
    Agent GarbageCollectionAgent loaded
    ExpirationAgent: computed initial delay (in ms) is: 10024504
    ExpirationAgent: starting timer
    Attempting to start agent GarbageCollectionAgent
    GarbageCollectionAgent: Start request
    Agent GarbageCollectionAgent started
    Attempting to load agent ContentGarbageCollectionAgent
    Agent ContentGarbageCollectionAgent loaded
    GarbageCollectionAgent: computed initial delay (in ms) is: 11816890
    GarbageCollectionAgent: starting timer
    Attempting to start agent ContentGarbageCollectionAgent
    ContentGarbageCollectionAgent: Start request
    Agent ContentGarbageCollectionAgent started
    Attempting to load agent DanglingObjectAVCleanupAgent
    Agent DanglingObjectAVCleanupAgent loaded
    ContentGarbageCollectionAgent: starting timer
    Attempting to start agent DanglingObjectAVCleanupAgent
    DanglingObjectAVCleanupAgent: Start request
    Agent DanglingObjectAVCleanupAgent started
    Attempting to load agent OutboxAgent
    Agent OutboxAgent loaded
    DanglingObjectAVCleanupAgent: computed initial delay (in ms) is: 5500105
    DanglingObjectAVCleanupAgent: starting timer
    Attempting to start agent OutboxAgent
    OutboxAgent: Start request
    Agent OutboxAgent started
    Attempting to load agent ServiceWatchdogAgent
    Agent ServiceWatchdogAgent loaded
    OutboxAgent: Done processing
    Attempting to start agent ServiceWatchdogAgent
    ServiceWatchdogAgent: Start request
    Agent ServiceWatchdogAgent started
    Attempting to load agent QuotaAgent
    Agent QuotaAgent loaded
    ServiceWatchdogAgent: Initializing ServerWatchdogTable with 9 entries
    ServiceWatchdogAgent: starting timer
    Server STARTED: FtpServer(20082) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    Attempting to start agent QuotaAgent
    QuotaAgent: Start request
    Agent QuotaAgent started
    QuotaAgent: starting timer
    Server STARTED: CupServer(20124) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    Server STARTED: ImapServer(20130) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    Server STARTED: SmtpServer(20150) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Freeing unlocked server 19687
    ServiceWatchdogAgent: Freeing unlocked server 19666
    Server STOPPED: CupServer(19687) managed by IfsProtocols(19519)
    ServiceWatchdogAgent: Freeing unlocked server 19723
    ServiceWatchdogAgent: Freeing unlocked server 19520
    Server STOPPED: FtpServer(19666) managed by IfsProtocols(19519)
    Server STOPPED: SmtpServer(19723) managed by IfsProtocols(19519)
    ServiceWatchdogAgent: Freeing unlocked server 19519
    Server STOPPED: IfsAgents(19520) not managed
    ServiceWatchdogAgent: Freeing unlocked server 19712
    Server STOPPED: IfsProtocols(19519) not managed
    Server STOPPED: ImapServer(19712) managed by IfsProtocols(19519)
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    QuotaAgent: Timer event: 0 active; 0 exceeded
    ContentGarbageCollectionAgent: Freed 5 unreferenced ContentObjects
    QuotaAgent: Timer event: 0 active; 0 exceeded
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-11012: Unable to get events from other services
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException in checkForDeadServices():
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException in handle loop; continuing:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    null

  • Need urgent help with database startup

    dear all,
    i am using oracle 10g on windower server 32 bit.
    i try to startup my database today, and it give me error, and it is my production database,
    i need very urgent help from you.(i have no rman backup , and the data is not so necessory, since it is for student practice.)
    SQL> startup open
    ORACLE instance started.
    Total System Global Area  524288000 bytes
    Fixed Size                   790180 bytes
    Variable Size             250343772 bytes
    Database Buffers          272629760 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    ORA-01110: data file 34: 'G:\ORACLE\DATAFILES_ACADEMY\ACADEMY'
    ORA-01115: IO error reading block from file 34 (block # 1)
    ORA-27070: async read/write failed
    OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 23) Data error (cyclic redundancy check).regards.

    Maahjoor wrote:
    Hi dears,
    i need further assistance from your side, i have restarted the server, but the same problem.
    as there a way to drop and re-create a system tablespace? since the file 34 belong to system tablesapce.
    regardsNo.
    So just create a new database. That will take all of ten minutes. And tell your students to create new tablespaces. That will take them two minutes.

  • Need urgent help with the query - Beginer

    Hello - I need help with a query to populate data in a table.Here is the scenario.
    Source1
    MnthID BranchCod CustID SegCode FXStatus ProfStatus Profit
    200712 B1 C1 20 Y Y 100
    Source2
    MnthID BranchCod CustID ProdCode ProdIndex
    200712 B1 C1 12 1
    200712 B1 C2 12 0
    Destination
    MnthID BranchCod SegCode ProdCode CountSegCust CountProdCust ProfitProdCust
    Condition and Calculations:
    1)Source1 customer are base customers.If Source2 has customers who is not in source1 then that customer's record should not be fetched.
    2)SegCode, FX Status, ProfStatus is one variable in destination table. [ SegCode = SegCode+ FXStatus (if FXStatus = Y)+ ProfStatus (if FXStatus = Y) ]
    3)CountSegCust = CountCustID Groupby MnthID,BranchCod,SegCode Only.
    4)CountProdCust = CountCustID Groupby MnthID,BranchCod,SegCode,ProdCode (when ProdIndex = 1)
    5)ProfitProdCust = Sum of Profit of Customers Groupby MnthID,BranchCod,SegCode,ProdCode (when ProdIndex = 1)
    Apologies for bad formatting.
    Thanks in advance!!

    A total guess indeed.
    It's not clear whether some aggregation can be done (summing counts of grouped data might cause some customers being counted more than once)
    insert into destination
    select mnthid,branchcod,segcode,prodcode,countsegcust,countprodcust,profitprodcust
      from (select s1.mnthid,
                   s1.branchcod,
                   s1.segcode || case s1.fxstatus when 'Y' then s1.fxstatus || s1.profstatus end segcode,
                   s2.prodcode,
                   count(s1.custid) over (partition by s1.mnthid,
                                                       s1.branchcod,
                                                       s1.segcode || case s1.fxstatus when 'Y' then s1.fxstatus || s1.profstatus end
                                              order by null
                                         ) countsegcust,
                   count(case proindex when 1
                                       then custid
                         end
                        ) over (partition by s1.mnthid,
                                             s1.branchcod,
                                             s1.segcode || case s1.fxstatus when 'Y' then s1.fxstatus || s1.profstatus end
                                             s2.prodcode
                                    order by null
                               ) countprodcust,
                   sum(case proindex when 1
                                     then profit
                       end
                      ) over (partition by s1.mnthid,
                                           s1.branchcod,
                                           s1.segcode || case s1.fxstatus when 'Y' then s1.fxstatus || s1.profstatus end
                                           s2.prodcode
                                  order by null
                             ) profitprodcust,
                   row_number() over (partition by s1.mnthid,
                                                   s1.branchcod,
                                                   s1.segcode || case s1.fxstatus when 'Y' then s1.fxstatus || s1.profstatus end
                                                   s2.prodcode
                                          order by null
                                     ) the_row
              from source1 s1,source2 s2
             where s1.mnthid = s2.mnthid
               and s1.branchcod = s2.branchcod
               and s1.custid = s2.custid
    where the_row = 1Regards
    Etbin

  • Need urgent help with communicating with the HP 4155B analyser with Labview

    i folks,
    I'm currently trying to communicate with our HP 4155B semiconductor pamaremter analyser.  I do not have experience with GPIB yet. I have installed the NI VISA.
    I was wondering if anyone could help with getting me started on how to start communicating with the device using Labview.
    I'm not certain where to start.
    Kind regards
    Rob

    Hi,
    Thanks for the help. I now have communication with the instrument.
    I was wondering if it's possible to to setup a data measurement (I-V Sweep) and be able to read the measurement data in realtime as it is being measured. So I basically see the graph updating itself on the PC during the measurement.
    Is this possible? Could anyone give advice on how I can go about this or are there any examples that can help me understand how to do this?
    I'm not completely sure how to initialise the instruemnt for communication and handle VISA WRITEs and READs. within LabView
    Best regards
    Rob

  • Hey everyone, I need urgent help with a vfx shot. Please anyone!

    http://www.youtube.com/watch?v=JReojFkK53M&feature=channel_video_title
    At the time marker 2:19. It is a sort of Force Kick. I need to know how to make the victim fly back like in this video. I understand how to do the motion blur and the lens flare with sparks. But how does he animate that body to fly back??

    nrskargee wrote:
    ...how does he animate that body to fly back??
    To me, it looks like a combination of a practical effect and AE.
    The practical effect: a harness on the victim, linked to a heavy weight on a rig via a green cable.  Drop the wright, and the victim gets yanked back violently.  You'll note the camera's angle NEVER shows the victim's back in that shot.
    To get the effect, match the angles & lighting, shoot it against a big green screen and key it out with the aid of an animated garbage matte.  To add more violence to the shot, animate the victim layer''s rotation & position to make it appear he flies upward a bit, adjust the speed, and as Mylenium says, the Puppet Tool would be a good choice for warping the victim's body.

  • I need urgent help with my macbook pro, installed a theme and now unable to open windows, please help !

    Hello,
    I installed a theme on OS X Lion that was actually made for snow leapor, because on a youtube video someone said it works with Lion too,  
    After installing it I got problems seeing close and minize icons.
    And After reinstalling my Macbook pro, I am unable to open finder, Safari, Terminal etc.
    I have tried to get help from several help forums, and tried changing files as described here
    https://discussions.apple.com/thread/3256533?start=0&tstart=0
    Theme was downloaded from here
    http://www.fif7y.com/themes/sog/

    Okay, it's both for your first question: When I import the songs to the library, the songs are not in the correct order as they were on the CD. And, in the process of my importing the songs, the library scrambles the songs in different sections of the library (I explain further below)
    I don't know what you mean by "little triangle" pointing up or down. What's that got to do with the price of fish in China? lol
    When I get the music in the library the songs come out sorted this way: 2 songs from CD 1 appear one section of the library, then 1 song from CD 2 appears in the next column, along with the album work. Then, I go down farther, and there's a few more of the songs from CD 1 in the next section. I go down again, and maybe 2 or 3 songs are in that column. Along with the artwork for that CD. Then I scroll down again in the library, and there's maybe 3 or 4 songs from CD 1 there. Get the picture? It keeps sorting the songs in that order. And yes, the CDs I was importing were compliation dance CDs, along with some from the same artist, like Barry Manilow.
    I hope I answered the questions better so that you can help me Thanks in advance, Glenn

  • Need urgent help with a new Z program please

    I have to write a program that finds files matching some pattern, for example I have files test1,test2,test3 in a directory then if I pass test* as parameter it should find all the files i.e, test1,2,3. I have to then store the files in internal table, loop through it and have to call some other program zzz that has a selection screen with default parameters.
    1) Is there any function that I can call that gives all the files by passing wild card (ex:test*) and store the files in internal table?
    2) How do I call some other program ZZZ from my program?
    3) How do I pass values from my program to other program's selection screen?
    Your help would be greatly appreciated.
    Thanks.
    Mithun

    Hi,
    1) data: FILE_TABLE TYPE STANDARD TABLE OF FILE_INFO.
    data: wa_file type file_info.
    data: count type i.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_LIST_FILES
                EXPORTING
                    DIRECTORY = 'C:\'
                    FILTER    = 'test.*'
                    files_only = 'X'
                changing
                    FILE_TABLE = file_table[]
                    count      = count.
    loop at file_table into wa_file.
      write: / wa_file-filename.
    endloop.
    2) You can use SUBMIT statement to call another program..
    3) In the SUBMIT statement you can use the WITH addition to pass the values to the program.
    Thanks,
    Naren

  • Need urgent help with exporting movie

    I have a simple 7-minute project on FCP 7 that consists of still images from the internet and hand drawn images with a few animated elements.
    It has only one audio track and two video tracks. I am using PAL DV size format. I am in the UK.
    I exported it using quicktime conversion with H264 compression and good quality and the final file size was 125MB.
    My urgent problem is that I need to upload this file to a university website for an online course in two days, and their file size limit is 50 MB.
    I need to make sure that the teacher can play the file, and I need to get it down to a smaller file size for uploading.
    I have tried all sorts of exporting from FCP. I tried avi, m4v (the setting said ipod and it produced the m4v file), and quicktime mov at different sizes like 1/4vga size. The best file size was 29 mb for the m4v ipod export, and 98mb for the qt mov file exported at medium quality. The avi file grew to 1.2gb!
    I don't know if the m4v file is playable on the system that the teacher uses (she is on a windows computer).
    Can anyone please give me some specific advice on how to create a smaller video file that is more universally compatible?
    I have access to all of the FCP 7 suite and the Adobe CS6 suite which includes Premiere Pro, Prelude and Adobe Media encoder, if that helps.
    Thanks a lot for any advice.

    Jonathan Rooper wrote:
    Hi Luis
    The advice you've been given is good for helping you to get a good quality video at a reasonable file size.
    But it may be worth thinking more about which format will certainly play on your teacher's PC.  The most likely player on any PC is Windows Media Player, which tens to be installed by default.
    The most likely video to be viewed on a PC is one from YouTube...  andH.264 is supported on all "modern" PCs.  QuickTime Player is free and very available.
    A disadvantage for Mac users is that yoou'll ned the Flip4Mac plugin to create WMV movies.  I think the cheapest paid version of Flip4Mac costs around £30. 
    All you need on a Mac fis the free Flip4Mac player.
    If you get that, and choose the web high I quality setting, you should have a file within 50MB that plays reliably and looks OK.  (A cheaper way of doing this, if you have access to a PC, is to use the free Windows Media Encoder).
    Best of luck
    Jonathan

  • Need urgent help with RAID failure on Graphics server (running OSX10)

    Hey.
    Here's the deal... Our graphics department has a MAC G4 (fully upgraded. newest patches, OS, etc.) that's got a 4 port SATA RAID controller. They use this with four 750GB hard drives as an external RAID (the OS is on a seperate, 65GB hard drive). The way it's set up, through Apple's OS, is we have the four 750GBs in pairs... those pairs are striped, and then the two sets of striped 750s are mirrored. This has worked just fine for a number of months, but we recently had a power surge, and now we're unable to mount "Monkey" (the name of the 1.4TB array).
    See the below screenshots for more clarification.
    http://www.amcdoors.com/lorenzo/raidsetup.JPG
    This shows the RAID card, and the four SATA cables coming out of it.
    http://www.amcdoors.com/lorenzo/leftside1.JPG
    As you can see in this and the below screenshots, this shows the 1.4TB Striped set as 'online', but the two below (the two 750GB hard drives) show up as "offline".
    http://www.amcdoors.com/lorenzo/leftside2.JPG
    this shows the actual drive i click on. same thing
    http://www.amcdoors.com/lorenzo/leftside3a.JPG
    If i click the entire array, you can see how it's set up (the Mirrored RAID set consisting of the two Striped RAID sets). The RAID sets (all 3 of them) are showing up as online, yet the drives are offline. No idea why. The drives are all powered, and are spinning, and plugged in.
    http://www.amcdoors.com/lorenzo/leftside3b.JPG
    when you click "Monkey Drive", nothing shows up in it. i don't remember if anything ever used to. if you click 'mount', nothing happens.
    http://www.amcdoors.com/lorenzo/leftside4.JPG
    http://www.amcdoors.com/lorenzo/leftside5.JPG
    this shows the exact same problem as the first RAID set.
    http://www.amcdoors.com/lorenzo/verifyRAIDset1.JPG
    If you try to Verify the RAID set, it shows that no repairs are necessary
    http://www.amcdoors.com/lorenzo/verifymonkey.JPG
    If you try to verify Monkey, you get a "Volume Needs Repair" error... but when you try to repair it, you get this:
    http://www.amcdoors.com/lorenzo/repairmonkey.JPG
    Really need help; this is a pretty critical problem. Someone that's familar with RAID solutions on MACs please help me out. We can't risk losing any data if at all possible.
    Thanks
    ~Lorenzo

    You might want to post this to the Server Products forums.

  • Need Urgent Help With Getting Intl Service from Bangkok

    Before I arrived in Bangkok, I spoke with Verizon CS from the US because I needed Intl Service on my Iphone 4. My boyfriend has an Iphone 5 and was able to add a calling plan in 5 minutes of calling Verizon CS. I then called Verizon CS, and was told that my Iphone 4 cannot be used in Thailand. I told the CS Rep that my boyfriend just added the service on his Iphone 5, and did the same on a trip to Thailand last year with an Iphone 4. She told me that with an Iphone 5 he also cannot use the service in Thailand without a Sim Card or Global Phone? I then put him on the phone with her, and they spoke for ten minutes about this before my plane departed.
    I have been in Bangkok since 04MAR14 trying to reach Verizon by web, Instant Chat, phone, and even called Verizon 611 from my boyfriend's handset. he call Failed! He then gave me this number to call Verizon Global Support: 908-559-4899. I have called this number numerous times from the hotel. The recording does not recognize when I "Press 1" or "Press 2", and proceeded to hang up on me several times. Is there no human at Verizon that help me????? I have spent approx 3 hours now trying to contact Verizon since 04MAR14. I am supposed to be enjoying my vacation here. Can someone please address these questions immediately?
    1. Am I currently being charged to use WIFI in Thailand?
    2. I transited Tokyo on 03MAR, and tried to call Verizon Support from my Handset, which Failed. Am I being charged for that?
    3. What message do my contacts receive when they text me in the US?
    4. Can I activate message response to contacts in the US now telling them that I am out of the country until the evening of 11MAR14?
    Please help me, I am extremely frustrated, as I desparately want Phone service here in Thailand, and I am transiting back to Tokyo on 10MAR14, arriving there at 245pm, and I will need Phone service there as well.
    Sincerely,
    Nancy
    Private info removed as required by the Terms of Service.
    Message was edited by: Admin Moderator

        I'm so sorry you haven't been able to get any service while traveling NancyStuckInThaiWithNoService, as well as for not being able to get a hold of anyone to assist you. I'm happy to answer your questions here. As you mentioned, the iPhone 4 is not a Global phone. Therefore, you can only use on a CDMA network, (not GSM). Thailand is GSM/Global, Japan/Tokyo is CDMA; therefore, you can use phone there. (It could be settings were not set correctly to use in Tokyo.
    1. If you're using WiFi, there is no charge. Its best to turn Mobile Data off in Settings to avoid any International charges.
    2. Japan/Tokyo calls are $1.99/minute. However, if trying to reach Global Support, you will not be charged.
    3. Your contacts don't receive any notification when they text you. They may get some alert days later, that the message was not received by you/ or it has been timed out, but it won't say why.
    4. If you're able to use another phone, and call your mobile number, you can press # when you hear your voice mail greeting, enter password, then # again, to change personal greeting. You're able to update greeting with notification that you're traveling.
    ** When back in Tokyo, you can go to Settings & make sure Airplane Mode is OFF. Also, you can go to General, (from Settings),> Network> Cellular Data- ON> Data Roaming- ON.***
    Here are rates while in Japan/Tokyo http://vz.to/18TRKVE
    Lastly, it may be easier to reach us on Facebook at Verizon Wireless, or on Twitter at @VZWSupport
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

  • Need Urgent Help with Curve 8520 Backup

    Help urgently. I need to backup my Curve but the BB manager would not accept my pin. I am keying it in but the cursor is not showing any sings that it is being typed in.  The phone is not accepting the password and it is one try away from cleaning the phone. I need to backup before that happens

    Are you typing in your PN or your Password? If you're connected to the BlackBerry Desktop Software, you should be entering the device security password.
    Often users who have multiple numerals in their password will only press the ALT key for the first numeral and not those following, so for instance, if your password were "1234", you might have been pressing "Alt 1234" on the device, which makes the actual password to be "1ers".
    Does that make sense? Does it sound familar to your usage?
    So check the way you enter your password on the device... do you think you are entering multiple numbers but actually are not?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for