I'd like to convert this OB action to a Pekwm action

I found a thread by pablokal which showed his Openbox shortcuts and noticed one that I've really wanted:
Super Left - resizes window to half the screen then snaps it to the left [Obkey options Action: unmaximizefull, maximizevert, move resize to x=0,y=0, width:half horizontal monitor resolution 1920:2=960]
However, I use pekwm and not openbox. Does anyone know the commands to recreate this action in Pekwm syntax? I have tried, but my solution was clumsy and required multiple keypresses.
Thanks for anyone who can help!

If you had an actual table with tabular input you'd get something with an export to Excel.
If the PDF was a well-formed Tagged PDF the export of tabular data into the spreadsheet file format would be rather good.
But, alas, what you've displayed is not "spreadsheet" material.
Export of form fields and form field content takes one down a somewhat different path.
Be well...

Similar Messages

  • I would like to read a text file in which the decimal numbers are using dots instead of commas. Is there a way of converting this in labVIEW, or how can I get the program to enterpret the figures in the correct way?

    The program doest enterpret my figures from the text file in the correct way since the numbers contain dots instead of commas. Is there a way to fix this in labVIEW, or do I have to change the files before reading them in the program? Thanks beforehend!

    You must go in the labview option menu, you can select 'use the local
    separator' in the front side submenu (LV6i).
    If you use the "From Exponential/Fract/Eng" vi, you are able to select this
    opton (with a boolean) without changing the labview parameters.
    (sorry for my english)
    Lange Jerome
    FRANCE
    "Nina" a ecrit dans le message news:
    [email protected]..
    > I would like to read a text file in which the decimal numbers are
    > using dots instead of commas. Is there a way of converting this in
    > labVIEW, or how can I get the program to enterpret the figures in the
    > correct way?
    >
    > The program doest enterpret my figures from the text file in the
    > correct way since the numbers contain dots instea
    d of commas. Is there
    > a way to fix this in labVIEW, or do I have to change the files before
    > reading them in the program? Thanks beforehend!

  • I am looking for an application that would allow me to open a word doc, and take notes in the .doc using a stylus pen.  I'd then like to convert those notes to text, and then be able to copy / paste those notes into an email.  Does this app exist?

    I am looking for an application that would allow me to open a word doc, and take notes in the .doc using a stylus pen.  I'd then like to convert those notes to text, and then be able to copy / paste those notes into an email.  Does this app exist?  It seems like we were doing these same types of things with Palm Pilots years ago, one would think this would work with iPads?

    I don't believe it will open a Word document, but Writepad allows for handwritten conversion of notes to text and then to email. Might help you some of the way...

  • I would like to convert my LPs to digital on my new mac book pro with retinal display . How can i do this?

    would like to convert my LPs to digital on my new mac book pro with retinal display
    . How can i do this?

    The new Mac's do not have analog audio in so you will have to go with a USB audio in device or else if you do not yet own a turntable (or are looking to upgrade) you could get a turntable that has USB out.
    The Griffin Technology iMic USB Audio Device is a low cost consumer grade solution if you already have a turntable.
    For recording I use Audacity: Free Audio Editor and Recorder which does a good job and has the ability to run the audio signal through various filters.

  • I have a Canon 6d and would like to convert my raw ( CR2) photo's into dng files. Adobe DNG converter 8.4 doesn't recognise the CR2 files. How can i solve this?

    i have a Canon 6d and would like to convert my raw ( CR2) photo's into dng files. Adobe DNG converter 8.4 doesn't recognise the CR2 files. How can i solve this?

    It is possible that you are not following instructions correctly in the DNG converter. The DNG converter interface asks for the FOLDER that contains your raw images. Choose the folder, but don't open it. After you have chosen the folder, click on the Convert button. The DNG conversion process should start.  Does that help you?

  • Need help converting this html code into code that will work as a flash button

    I have some html code that is for a button in html that when
    pressed sends you to a certain url but also somehow adds an 'id
    value' and a 'website value'.
    How can I convert this code and or put it into a flash
    button?
    Disregard the gif info...that's just for the html graphic
    that goes for the button.
    [HTML]<form
    action="https://secure.verotel.com/cgi-bin/vtjp.pl"
    method="post">
    <input type=hidden name=verotel_id
    value="9804000000840231">
    <input type=hidden name=verotel_website value="55461">
    <center>
    <input type="image" src="
    http://buttons.verotel.com/join/button_00010155461.gif"
    alt="Signup NOW!">
    <img src="
    http://buttons.verotel.com/signup/tbutton_55461.gif"
    border="0" width="1" height="1" alt="">
    </center>
    </form>[/HTML]

    What you want to do might look something like this:

  • I am on windows 8 platform, i used adobe elements to work on my image - the output is in dng format, how do i convert this to jpg format?

    i am on windows 8 platform, i used adobe elements to work on my image - the output is in dng format, how do i convert this to jpg format?

    When you make a DNG that's like making another raw file, so you will need to convert the DNG file just like your original raw. Don't use the Save button in the raw converter. That's just a link to the DNG converter. Normally you would click Open instead and then save in the editor as a jpg or other image format of your choice.

  • How to convert this Servlet into JSP

    I am trying to convert this Servlet into JSP page.
    How do I go about doing this?
    Thanks.
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.text.*;
    /** Shows all items currently in ShoppingCart. Clients
    * have their own session that keeps track of which
    * ShoppingCart is theirs. If this is their first visit
    * to the order page, a new shopping cart is created.
    * Usually, people come to this page by way of a page
    * showing catalog entries, so this page adds an additional
    * item to the shopping cart. But users can also
    * bookmark this page, access it from their history list,
    * or be sent back to it by clicking on the "Update Order"
    * button after changing the number of items ordered.
    * <P>
    * Taken from Core Servlets and JavaServer Pages 2nd Edition
    * from Prentice Hall and Sun Microsystems Press,
    * http://www.coreservlets.com/.
    * &copy; 2003 Marty Hall; may be freely used or adapted.
    public class OrderPage extends HttpServlet {
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    HttpSession session = request.getSession();
    ShoppingCart cart;
    synchronized(session) {
    cart = (ShoppingCart)session.getAttribute("shoppingCart");
    // New visitors get a fresh shopping cart.
    // Previous visitors keep using their existing cart.
    if (cart == null) {
    cart = new ShoppingCart();
    session.setAttribute("shoppingCart", cart);
    String itemID = request.getParameter("itemID");
    if (itemID != null) {
    String numItemsString =
    request.getParameter("numItems");
    if (numItemsString == null) {
    // If request specified an ID but no number,
    // then customers came here via an "Add Item to Cart"
    // button on a catalog page.
    cart.addItem(itemID);
    } else {
    // If request specified an ID and number, then
    // customers came here via an "Update Order" button
    // after changing the number of items in order.
    // Note that specifying a number of 0 results
    // in item being deleted from cart.
    int numItems;
    try {
    numItems = Integer.parseInt(numItemsString);
    } catch(NumberFormatException nfe) {
    numItems = 1;
    cart.setNumOrdered(itemID, numItems);
    // Whether or not the customer changed the order, show
    // order status.
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String title = "Status of Your Order";
    String docType =
    "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " +
    "Transitional//EN\">\n";
    out.println(docType +
    "<HTML>\n" +
    "<HEAD><TITLE>" + title + "</TITLE></HEAD>\n" +
    "<BODY BGCOLOR=\"#FDF5E6\">\n" +
    "<H1 ALIGN=\"CENTER\">" + title + "</H1>");
    synchronized(session) {
    List itemsOrdered = cart.getItemsOrdered();
    if (itemsOrdered.size() == 0) {
    out.println("<H2><I>No items in your cart...</I></H2>");
    } else {
    // If there is at least one item in cart, show table
    // of items ordered.
    out.println
    ("<TABLE BORDER=1 ALIGN=\"CENTER\">\n" +
    "<TR BGCOLOR=\"#FFAD00\">\n" +
    " <TH>Item ID<TH>Description\n" +
    " <TH>Unit Cost<TH>Number<TH>Total Cost");
    ItemOrder order;
    // Rounds to two decimal places, inserts dollar
    // sign (or other currency symbol), etc., as
    // appropriate in current Locale.
    NumberFormat formatter =
    NumberFormat.getCurrencyInstance();
    // For each entry in shopping cart, make
    // table row showing ID, description, per-item
    // cost, number ordered, and total cost.
    // Put number ordered in textfield that user
    // can change, with "Update Order" button next
    // to it, which resubmits to this same page
    // but specifying a different number of items.
    for(int i=0; i<itemsOrdered.size(); i++) {
    order = (ItemOrder)itemsOrdered.get(i);
    out.println
    ("<TR>\n" +
    " <TD>" + order.getItemID() + "\n" +
    " <TD>" + order.getShortDescription() + "\n" +
    " <TD>" +
    formatter.format(order.getUnitCost()) + "\n" +
    " <TD>" +
    "<FORM>\n" + // Submit to current URL
    "<INPUT TYPE=\"HIDDEN\" NAME=\"itemID\"\n" +
    " VALUE=\"" + order.getItemID() + "\">\n" +
    "<INPUT TYPE=\"TEXT\" NAME=\"numItems\"\n" +
    " SIZE=3 VALUE=\"" +
    order.getNumItems() + "\">\n" +
    "<SMALL>\n" +
    "<INPUT TYPE=\"SUBMIT\"\n "+
    " VALUE=\"Update Order\">\n" +
    "</SMALL>\n" +
    "</FORM>\n" +
    " <TD>" +
    formatter.format(order.getTotalCost()));
    String checkoutURL =
    response.encodeURL("../Checkout.html");
    // "Proceed to Checkout" button below table
    out.println
    ("</TABLE>\n" +
    "<FORM ACTION=\"" + checkoutURL + "\">\n" +
    "<BIG><CENTER>\n" +
    "<INPUT TYPE=\"SUBMIT\"\n" +
    " VALUE=\"Proceed to Checkout\">\n" +
    "</CENTER></BIG></FORM>");
    out.println("</BODY></HTML>");
    }

    Sorry.
    actually this is my coding on the bottom.
    Pleease disregard my previous coding. I got the different one.
    My first approach is using <% %> around the whole doGet method such as:
    <%
    String[] ids = { "hall001", "hall002" };
    setItems(ids);
    setTitle("All-Time Best Computer Books");
    out.println("<HR>\n</BODY></HTML>");
    %>
    I am not sure how to break between code between
    return;
    and
    response.setContentType("text/html");
    Here is my coding:
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException
         String[] ids = { "hall001", "hall002" };
         setItems(ids);
         setTitle("All-Time Best Computer Books");
    if (items == null) {
    response.sendError(response.SC_NOT_FOUND,
    "Missing Items.");
    return;
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String docType =
    "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " +
    "Transitional//EN\">\n";
    out.println(docType +
    "<HTML>\n" +
    "<HEAD><TITLE>" + title + "</TITLE></HEAD>\n" +
    "<BODY BGCOLOR=\"#FDF5E6\">\n" +
    "<H1 ALIGN=\"CENTER\">" + title + "</H1>");
    CatalogItem item;
    for(int i=0; i<items.length; i++) {
    out.println("<HR>");
    item = items;
    if (item == null) {
    out.println("<FONT COLOR=\"RED\">" +
    "Unknown item ID " + itemIDs[i] +
    "</FONT>");
    } else {
    out.println();
    String formURL =
    "/servlet/coreservlets.OrderPage";
    formURL = response.encodeURL(formURL);
    out.println
    ("<FORM ACTION=\"" + formURL + "\">\n" +
    "<INPUT TYPE=\"HIDDEN\" NAME=\"itemID\" " +
    " VALUE=\"" + item.getItemID() + "\">\n" +
    "<H2>" + item.getShortDescription() +
    " ($" + item.getCost() + ")</H2>\n" +
    item.getLongDescription() + "\n" +
    "<P>\n<CENTER>\n" +
    "<INPUT TYPE=\"SUBMIT\" " +
    "VALUE=\"Add to Shopping Cart\">\n" +
    "</CENTER>\n<P>\n</FORM>");
    out.println("<HR>\n</BODY></HTML>");

  • I have a music video I would like to convert into music

    I have a music "video" which is just plain music with a picture. I would like to convert it to just a sound file for my Ipod.
    Can someone give this hopeless noob some pointers?

    I don't know the diffs between the QT versions on different platforms and the export option may be a pro feature. I've use QT Pro for all kinds of things. After one upgrades you can't tell which features are Pro so I can't help you there. If you want to just make a smaller video iTunes will let you generate an iPhone or iPod copy of a video which is slightly smaller. Check the right-click menu on a song in the library.
    I haven't checked, but I wonder if GarageBand or iMovie would do this as well. Hmm, something for me to do today.
    Message was edited by: Jon Thornburg

  • I have a extensive recipe database in Appleworks 6. Is there a way to convert this to Numbers or Pages?

    New Macbook Pro running Mavericks; Pages; Numbers but no more Appleworks supported.
    I have a collection of family recipes done in Appleworks 6 [database]--600 recipes+
    I can sort on many different fields and easily search the data.
    I am inserting a snapshot of one recipes for an example of the format that I set; loved the button functions!
    I have it set to print to 4x6 cards.
    Is there anyway to convert this to Pages or Numbers applications?
    I can save my existing document as a pdf and can have access to them but i would love to be able to continue adding and editing the data--
    ANYONE have a solution??

    Peggy has very astutely laid out your options and I hate to see you abandon your Family Recipie database after so much time and effort.
    It is doubtful that Apple will ever address the issue of Appleworks databases in a more direct way.  They have Filemaker and you can export your data from Appleworks and create a new database in Filemaker and import all of your data without any loss of data.  This is of course much work, but only a "one-time" amount of work and then your database continue forward in Filemaker.
    You also acknowledge the continuing option of using older Mac hardware.  While of course this option is easy and available to you now, what happens when your older Mac hardware dies and you are faced with a hardware purchase decision?  Continue to try to find a suitable older Mac on the used market and wait for it to fail again.  Or purchase a new Mac?
    If you purchase a new Mac, and do not want to pursue the EXPORT -> IMPORT into a new database program, then the other option suggested by Peggy, installing Snow Leopard Server into Parallels for continued use of Appleworks 6 in Mavericks, is a good one and not too costly; about $99 or less.
    In any event I highly recommend that you call Apple immediately and order a copy of Snow Leopard Server for $20 and at a minimum put it up on the shelf for later need, if any.  Once Apple raises the price again, or discontinues it sale, it will become again very expensive on the third party market such as eBay and Amazon.
    Once you receive it, you can download a 14 day free trial version of Parallels and try it out for yourself, if you like.
    Here is Appleworks 6 running in Snow Leopard Server in Parallels for use in Lion, Mt. Lion and Mavericks:
                                  [click on image to enlarge]
    Installing Snow Leopard Server into Parallels for DUMMIES:
    http://forums.macrumors.com/showpost.php?p=17285039&postcount=564
    Good Luck and stay hungry my friend!

  • How can i convert this data(00000000) into date format(yyyy-MM-dd)

    Hi,
    i am using this method to convert date format from string.
    public static string FormatDate(string inputDate, string inputFormat)
                System.DateTime date = DateTime.ParseExact(inputDate, inputFormat, null);
                string datepresent = DateTime.Now.Date.ToString("yyyy-MM-dd");
                return datepresent;
    its working properly,
    but when input data is like 00000000 i am getting error this is not valid.
    how can i convert this into date format any help..!

    Have you tried the above code:
    I can see it is working with both Date and DateTime destination nodes.
    Map:
    Functoid Parameters:
    Functoid Script:
    public static string FormatDate(string inputDate, string inputFormat)
    string datepresent;
    if (inputDate == "00000000")
    datepresent = "0000-00-00";
    else
    System.DateTime date = DateTime.ParseExact(inputDate, inputFormat, null);
    datepresent = date.ToString("yyyy-MM-dd");
    return datepresent;
    Input:
    <ns0:InputDateString xmlns:ns0="http://DateFormat.SourceSchema">
    <DateString>00000000</DateString>
    </ns0:InputDateString>
    Output:
    <ns0:OutputDate xmlns:ns0="http://DateFormat.DestinationSchema">
    <Date>0000-00-00</Date>
    </ns0:OutputDate>
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful.

  • Converting this VBScript into Java???

    HI
    I hava found this VBSCript. But I like to work on java.Is it possible to convert this into java code. Basically the script runs something in the remote machine. If its possible ,would u pls tell me what special package I need ??
    call execprog ("217.138.120.34","c:\acad_deploy\AdminImage\install.bat")
    sub ExecProg(ServerName, ProgramName)
    '     dim process as object, processid as long, result as long
         set process=getobject("WinMgmts:{impersonationLevel=Impersonate, authenticationLevel=pktPrivacy}\\" & servername & "\root\cimv2:Win32_Process")
         result=process.create(programname, null, null, processid)
         if result=0 then
             msgbox "Command executed successfully on remote machine"
         else
             msgbox "Some error, could not execute command"
         end if
    end sub Thanks in advance

    I hava found this VBSCript. But I like to work on
    java.Is it possible to convert this into java code.Yes, it is possible to convert the VBScript program in to Java code. You need to identify what the program (script) does and what the other programs are doing as well. (You said the VBscript calls other programs on remote machines). After this, design a way to implement same functionality with Java.
    Basically the script runs something in the remote
    machine.What "something"?
    If its possible ,would u pls tell me what
    special package I need ??It is possible, in order to convert the VBScript program to Java, you will have to create a Java package to contain the class hiearchy, i.e. com.admin.install.*
    And of course you will need packages from J2SE and possibly J2EE. The Runtime and Process classes from J2SE are examples what is available. These objects can be used to used to call the other programs. Your design will depend on details of the other programs.
    Do you plan on converting the "install.ba" program to Java as well?

  • Would like to convert songs!

    Hi,I am using iTunes on a Windows computer and have NEVER been able to use the CD burning program that is a part of iTunes. (I recently updated my version of iTunes and the computer was finally kind enough to explain that this was because my computer had some component that was incompatable.)
    I would like to back up my music to CD, which I can do using my computer's regular CD burning program, but I have no way of converting the songs from AAC format to a format that would actually be usable in a regular stereo (like WAV or MP3). My brother suggested that I download a free music converter, but the one I tried doesn't seem to recognize the original iTunes AAC format, even though it claims to convert from AAC.
    Any suggestions on which converter to try or what to do? I'm dying to download some new iTunes music but would like to get this resolved first. Thx!

    This might work.
    1. In iTunes go to: edit--->Preferences ---> Advanced tab ---> Burning tab ---> change the disc format to MP3 CD --- then go to your import tab and change the importing format option to MP3 Encoder
    Then covert all your music to the mp3 format.
    You can do this by selecting the songs and right clicking them and selecting to convert the song to a MP3 format
    After you do this:
    Create playlists with the songs you want to burn and click on the burn button.
    Hope this helps,
    God Bless

  • Can anyone convert this code to java......(urgent)

    hi everybody.....
    can anybody provide me a java code for the following problem......
    i want that if user enters input like this:
    sam,john,undertaker,rock
    the output should be:
    'sam','john','undertaker','rock'
    i.e , is converted to ',' and the string starts with ' and ends with '
    i have a javascript code for this and it is reproduced below to have full view of the problem.........
    <HTML>
    <BODY>
    <script type="text/javascript">
    function CONVERT(){
    var re=/[,]/g
    for (i=0; i<arguments.length; i++)
    arguments.value="'" + arguments[i].value.replace(re, function(m){return replacechar(m)}) + "'"
    function replacechar(match){
    if (match==",")
    return "','"
    </script>
    <form>
    <textarea name="data1" style="width: 400px; height: 100px" ></textarea>
    <input type="button" value="submit" name="button" onclick="CONVERT(this.form.data1)">
    </form>
    </BODY>
    </HTML>
    can anyone do it for me.
    thx in anticipation

    Sunish,
    On your problem, check in the String class documentation the method replaceAll(), you can solve your problem in just one line of code.
    As for why the serious poster(the ones that are here to help, for many year, instead of just disrupting the forum) do not give you code is that they are here to help people learning and not to give free code.
    You help a person to learn, when you provide this person with the tools to research and help the person to think out of his problem, so that in the future the learning person can repeat the process by herself instead of going after finnished solution everytime he needs it.
    May the code be with you.

  • Could someone convert this .swf to .gif for me?

    I've made this .swf banner and I need it converted to .gif. I've tried many free programs but they all leave ugly watermarks. I don't want to buy a program that I'm going to only use once.
    Would someone be kind enough to convert this into .gif for me? If possible keep the filesize under 350KB.
    Thanks so much!
    https://www.mediafire.com/?cblckbpin7rvig7

    Hello master_w,
    You can use "sprite sheet" feature of Flash CC 2014 for export your banner like sprite frames.
    Then you can open this png file in photoshop, cute parts and make a gif using the "timeline".

Maybe you are looking for

  • ISE 1.2 WEBAUTH (CWA) + SELF PROVISIONING (NSP)

    I'm trying to achieve the following for our employees, contractors and guest. Guests and Contractors should be allowed to access the internet after successful auth on the ISE guest portal login page. contractors (ldap contractor group) -> webauth ->

  • How to send a file through the portal

    Hello, I have a problem in sending the file. I have selected a file kris.ppt and from context menu, I have selected sent to option and I have sent a file. I got a copy of that to my lotus notes but in that I had a format as kris.ppt.html. I cannot op

  • QDesign Music 2 not listed as an export codec - QuickTime Pro 7.7.1

    I have the current QuickTime Pro - version 7.7.1. for Windows 7. I use it for my Web design course on audio & video editing. One of the export codecs supported by Apple in the past was QDesign Music 2, a very good codec. Now I see that this codec is

  • Asset partially depreciation

    Hi SAP Gurus, I have some difficulties in cancelling the fixed asset, in fact when I am doing, I would like to have the quote of depreciation up to the 30.10.2009 but when I am trying to do so, I get the quote of depreciation up to the 31.12.2009. Co

  • BPC 7.5 NW - BPF is not transported correctly.

    Dear All, Last week we generate BPC transport via UJBPCTR t-code, all changes transported to quality and production server successfully, only BPF we have problem. This transport not affected on some BPF and name come with capital letter. Please give