How can i link a video to a text file on iPad2

how can i link a video to a text file on iPad2

Alrite mate,cheers for replying....You are right,my mistake,,It is Frame and not Panel...therefore Frame 1 is home and Frame 2 is Add User. Frame 1 has a button called Add User,which if i press it should run and open up my Frame 2. I can run Frame 1 and 2 seprately and it works fine,but Now i want to link them. So When i run Frame 1 at first i only get Frame 1,but then when i press Add User button my program should start Frame 2.Resuting in 2 Frames opened. I dont know how to link them.

Similar Messages

  • How can I convert a mp3 to a text file?

    How can I convert a mp3 to a text file?

    Agree with dwb
    .. and wanted to say hi from my Schnauzer....

  • How can I write some informations in a text file ?

    Hello.
    I am a beginner in java in general and in Web Dynpro Java in particular.
    I have to work in an application written by a consultant wich works no more at my office.
    Due to performances problems (slowness of the application at unpredictable instants),
    I have to write in an external file all the actions which make the users in the application.
    The problem is I don't know how to proceed.
    Somebody can help me ?
    Edited by: Serge L. on Aug 10, 2009 2:21 PM

    Hi Serge,
    You can try this as well to generate a text file.
    Use Filedownload UI element. And try following code in Webdynpro.....
    IOUtil IOUtil=new IOUtil();
    File f = new File("skill_master.txt");
    FileWriter fw = new FileWriter(f);
    fw.write(formattedStr);
    fw.close();
    InputStream template  = new FileInputStream(f);
    ByteArrayOutputStream templateSourceOutputStream = new ByteArrayOutputStream();
    IOUtil.write(template, templateSourceOutputStream);
    IWDCachedWebResource resource=WDWebResource.getWebResource(templateSourceOutputStream.toByteArray(), WDWebResourceType.getWebResourceType( "txt","text/html"));
    resource.setResourceName("User.txt");
    wdContext.currentContextElement().setVa_FileData(resource);
    Here formattedStr is the string which contain all the contents you want in the file. Here Va_FileData  attribute is of type com.sap.ide.webdynpro.uielementdefinitions.Resource.
    Map this Va_FileData attribute to the Filedownload UI. So that when u click on the FileDownload UI it will generate a txt file.
    Hope it helps you.
    Regards,
    Swati

  • How can I save an email as a text file before deleting from it my inbox?

    Some emails I want to save to my computer so that i can view them without opening up my email. I used to be able to do this by saving to a documents folder as a text file. (Outlook express). I do not find this capablity in Thunderbird. if it is there, I have not found it.

    '''File|Save As''' gives you several options. By default it will save as a .eml file, which will need an email client to view. You can usually save by drag-and-drop, but that creates an .eml file too.
    You can save as HTML by putting in an html file extension when doing File|Save As.
    This add-on:
    https://nic-nac-project.org/~kaosmos/mboximport-en.html
    gives you multiple options for saving one or more messages in various formats.

  • How can i delete a UserName  from a text file using Strings or io.

    hi i m trainee
    i have been assigned to make java program which deletes a UserName and
    his Passwor from a Text File
    i m unable to do it using the code below
    plz help
    do reply
      import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java .applet.*;
    import java.io.*;
    class Del extends JFrame  implements ActionListener
         String s2;
         JTextField CWDMUserDText = new JTextField();
         JButton CWDMSecDelButton = new JButton("DELETE");
         JLabel CWDMUserLabel = new JLabel("USER NAME");
         JPasswordField CWDMPassDText = new JPasswordField();
         JLabel CWDMPassLabel = new JLabel("PASSWORD");
         //String user,pass;
         /* CONSTRUCTOR*/
              Del()
                   Container contentPane=getContentPane();
                   contentPane.setLayout(null);
                  setLocation(400,200);
                   contentPane.add(CWDMUserDText);
                   contentPane.add(CWDMSecDelButton);
                   contentPane.add(CWDMUserLabel);
                   contentPane.add(CWDMPassDText);
                   contentPane.add(CWDMPassLabel);
                  CWDMUserLabel.setBounds(20,70,100,25);
                  CWDMPassLabel.setBounds(20,100,100,25);
                   CWDMUserDText.setBounds(150,70,100,25);
                   CWDMPassDText.setBounds(150,100,100,25);
                   CWDMSecDelButton.setBounds(80,135,100,25);
                   CWDMUserDText.addActionListener(this);
                   CWDMPassDText.addActionListener(this);
                   CWDMSecDelButton.addActionListener(this);
                   contentPane.setBackground(Color.CYAN);
                   setVisible(true);
                   setDefaultCloseOperation(EXIT_ON_CLOSE);
         public void actionPerformed(ActionEvent ae)
                  if(ae.getSource()==CWDMSecDelButton)
         //             user = CWDMUserDText.getText();
         //          pass = CWDMPassDText.getText();
         //          showarr();
                   s2 = CWDMUserDText.getText();
                   CWDMUserDText.setText("");
                   CWDMPassDText.setText("");
                   DelUser(s2);
              public static void main(String args[])
                   Del myframe1= new Del();
                   myframe1.setSize(300,200);
                   myframe1.setVisible(true);
              public void DelUser(String s)
                   //int a;
                   try
                        FileReader fr = new FileReader("file.txt");
                        BufferedReader br = new BufferedReader(fr);
                       String s1;
                       int a;
                       int len = s.length();
                       System.out.println(len);
                       //s2 = CWDMUserDText.getText();
                        while ((s1=br.readLine()) !=null)
                             if((a=s1.indexOf(s))>0 && (a=s1.indexOf(s))!=0)
                                  System.out.println(a);
                        fr.close();
                   catch(FileNotFoundException e)
                        System.out.println("exception occured");
                   catch(IOException e)
                        System.out.println("io");
         }

    Some tips:
    1) If you are adding or deleting stuff from a text file you need to write a new, modified file and then, optionally, do something like:
    rename the old file to whatever.bak or the like.
    rename the new file to the old.
    2) Don't depend on System.out so much on a GUI application. For example if you get an exception use javax.swing.JOptionPane to display an alert (and show the message from the exception). You can write the stack trace to System.out if you want.
    3) Don't muck about with calculating bounds for screen objects, let a layout manager sort it out. I like BoxLayoutManager for most things like this.
    4) For bonus points do your IO in a separate Thread. Generally you don't want anything happening in an actionPerformed method which significantly delays it's return. The method should launch a new Thread to do the job, and disable the button until the Thread finishes.

  • How can I add a header to a text file without mapping? [Using only ID]

    Hi Experts,
    I am doing a scenario in which I want to add a dynamic header to a text file, due to the complications related to the structure, I dont want to create a message type, data type etc so I cant use mapping.
    I want to do all the manipuations in Integration Directory itself.
    Can you all please help me out in this?
    Thanks in advance
    Thomas

    Hi  Experts,
    I am new to XI, so only elaborate answers would help me
    This is the specific requirement i want;
    There is a 'source text file' which is a collection of 1000+ records, I want to make a 'target file' which is a combination of 2 fields, one field will be the dynamically generated name [for the target file] and the other field will be the whole 'source file' content.
    From the last response for my question, I understand the dynamic file generation part can be done using java mapping.
    Is there anyway by which I can get in the whole content of the source file into a field in the target file?
    Thanks in Advance
    Thomas

  • HOW CAN I SEND A TABLE TO A TEXT FILE

    Hi,
          I have a table with a lot of values , and i need to transfer this table to a text file (.txt) , without lose the position
    of this values in that table .Someone can help me with this? 
    Thx  
    Solved!
    Go to Solution.

    There is some conflicting and incorrect information here. First, to get the column headers of a table, you use a property node and the property 'Column Header Strings[]'. This is a string array and you can append it to the 2D string array that is the table contents.
    In 6.0, the Write to Spreadsheet File was not able to write a string array. However, there are instructions on the block diagram that describe what needs to be modified. After making the modifications, save the VI with a new name and in a new location.  I know for a fact that the modified VI has been posted to the forum. You can do a search but the actual modifications should take less time.

  • How can I link the endnotes in the text to the references in the back of the file?

    I have a long file, with hundreds of EN references. Is it possible to make the EN numbers in the text live, so that clicking into them will bring me to the corresponding reference in the back of the file, or, better still, if I hover over the EN number in the text, it will display the reference?

    There might be an Acrobat plug-in out there that'll do it - don't know.
    Best is to just set it up in the authoring application that is compatible with Acrobat's PDFMaker (for those non-Adobe authoring applications).
    Make the links in the authoring application, have the links in the output PDF.
    Be well...

  • How can I delete the video and keep the Audio  in a few frames using Imovie 11

    How can I delete the video and keep the Audio  in a few frames using Imovie 11?

    I've met the problem too before. but i solved it with  Audio Converter Mac instead of iMovie. If you have similar situation that just want to keep audio but not video, and if your file format is not workable in iMovie, you can use the Audio Converter for help too. it can easily help to extract audio soundtrack from any video format. Or if you need to convert one audio format to another, it is a good choice too, because it supports many common audio output formats.
    <Link Edited By Host>

  • How can we transform a video from progressive to interlaced with final cut?

    How can we transform a video from progressive (720x1080 50p) to interlaced (PAL) with final cut pro???????
    The video is taken with Sony EX3

    Hi Nick
    Sorry but your first link says +"The file you are trying to access is temporarily unavailable."+ ... but tell me, are you viewing these interlaced encodes yourself on an interlaced monitor (eg are you burning them to disc and viewing on a TV) as they are meant to be seen, or are you just playing them back from file on your (progressive) computer display?
    By the way, I did manage to download your source file and encoded it here. Looks ok to me ... in a addition to the instruction above, I also changed the Field Dominance in the Encoder > Video Format tab to Top First (it defaulted to progressive due to the progressive source file).
    Let me know if that helps
    Andy

  • How can I watch a video? I can hear it but I can't see it.

    How can I watch a video? I can hear it but I can't see it.

    Hi,
    Unfortunately the number you've posted is not the Model or Product No. - see the guide on the link below for details on finding this information.
    http://support.hp.com/us-en/document/c00033108
    In the meantime, try a clean installation of the flash plugin/activeX as follows.
    First, download the Flash uninstall utility on the link below and save it to your Downloads folder.
    Flash Player Uninstaller.
    When the download has completed, close all browser windows, open your Download folder and run the uninstaller.  After this has completed, restart the notebook.
    When windows has reloaded,use Recovery Manager to reinstall your original graphics driver(s) - see the guide on the following link on how to use this software to reinstall drivers.
    Recovery Manager - Windows 8.
    After this reinstallation, restart the notebook again, then download and install the latest version of Adobe Flash.  Note: You may want to deselect the option to include McAfee Security Scan Plus before downloading.
    When the installation has completed, restart the notebook once more.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • I want to break up my hour long video in iMovie 11 into smaller 15 minute segements to upload to youtube. How can i put EDITED VIDEO in new projects in iMovie?

    I want to break up my hour long video in iMovie 11 into smaller 15 minute segements to upload to youtube. How can i put EDITED VIDEO in new projects in iMovie? (each 15 minute segment to iMovie)

    In iMovie's Project Library view (where all your projects are listed), click on the name of your project (don't double-click to open it, just single click to highlight it).
    From the Menu select File > Duplicate Project. A copy of your project will be placed in the Project Library. It will have the same name as the original, but with a number appended. You can rename it if desired - click on its name twice (not double-click) so that it is highlighted as light blue, then over-type it.
    Delete from the duplicate all the clips and other media (for example, photos, music and so forth) that you don't want included in the first of your 15 minute segments. In other words, delete all but the first 15 minutes.
    Continue creating duplicates of the original (and rename if necessary). Delete from each duplicate all the unrequired parts for each segment. So, for example, for the 2nd duplicate delete the first quarter (15 minutes) and the 3rd and 4th quarters.
    You should end up with 4 duplicates with separate names, each containing the required segment. You will also have kept intact the original one hour movie, which you may wish to use independently of YouTube (maybe for burning a DVD or playback through a Media Player).
    Note that duplicating the original project will not take up much extra space on your drive. Projects reference (link to) the associated Event (or Events) in the Event Library - they don't actually contain video as such. The project file also keeps track of titles, transitions, effects, music and so forth that you've added to the project.
    John
    Message was edited by: John Cogdell

  • Hello how can i download youtube videos on my macbook pro...plz tell me about downloader

    hello how can i download youtube videos on my macbook pro...plz

    nbar wrote:
    Where are you getting (A) from? There is nothing inherently illegal about it, AFAIK.
    You would be incorrect on that.  
    Commercial music videos are not to be downloaded, nor is there any difference between that and illegal torrent downloading of copyrighted material.
    Such actions pertaining to commercial copyrighted videos / music videos (lots on youtube) is not legal.
    Any distribution of videos, music or text without the express permission of the copyright-holder is copyright infringement
    regardless of all of that, Google/Youtube clearly notes that its against their policy to allow same from their site on such materials (not all, but most of it there).
    most such videos are not free and "open public domain" materials
    5. Your Use of Content
    In addition to the general restrictions above, the following restrictions and conditions apply specifically to your use of Content.
    The Content on the Service, and the trademarks, service marks and logos ("Marks") on the Service, are owned by or licensed to YouTube, subject to copyright and other intellectual property rights under the law.
    Content is provided to you AS IS. You may access Content for your information and personal use solely as intended through the provided functionality of the Service and as permitted under these Terms of Service. You shall not download any Content unless you see a “download” or similar link displayed by YouTube on the Service for that Content. You shall not copy, reproduce, distribute, transmit, broadcast, display, sell, license, or otherwise exploit any Content for any other purposes without the prior written consent of YouTube or the respective licensors of the Content. YouTube and its licensors reserve all rights not expressly granted in and to the Service and the Content.

  • How can I split the video port of an older Mac Mini so I can use both the 922-6199 DVI to RCA, S-Video Adapter and a Cinema Display?

    How can I split the video port of an older Mac Mini so I can use both the 922-6199 DVI to RCA, S-Video Adapter and a Cinema Display?

    Which exact Mini?
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • I tried to download video from RCA Small Wonder EZ201 to my new macbook pro.  Macbook pro recognizes the device but then message appears that device was improperly ejected when it is still connected. How can I download these videos?

    When I connect the RCA Small Wonder to my MacBook Pro, the device is recognized in finder as EZ201.  I tried to copy the video files in the folder but within a minute or two, I receive a message that the disk was ejected improperly, even though the device is still connected.  I was able to download the first few videos before it stopped working and was able to play them using Perian.  However, when I tried to connect the device again, it froze my system and I had to force a shut down by turning the computer off. Why is the device initially recongized but then shows as improperly ejected when it is still connected? How can I download the videos if the MacBook Pro won't allow the device to stay connected?

    A picture of a screen that suggests my new MBP Retina never connects to the "Macbook Pro backup ("StefanTimeCapsule")
    This is the one that has the files for the backups procured by the Time Machine program. But it can't "connect"-- You 'll see int he sideways pic (sorry!) that the options STILL says "connecting"
    Do i have to make these Time Machines more open to connection?

Maybe you are looking for