How to convert OS X 10.3.9 Applescripts to run on Lion?

I have recently upgraded my computer from a G4 iMac running Panther to an Intel 21" screen model which runs Lion 10.7.3. I found that neither the Set Up Assistant or Migration Assistant worked as far as transferring the contents of the old system and therefore transferred it manually.
Included in the contents transferred were a number of Appleworks spreadsheets which worked in conjunction with a series of Applescripts to produce various types of textile patterns, and another series which analysed stock exchange prices. I have found that basicly none of these work and wonder if there are any programs or compilers which could be used to convert them. I have bought iWorks and both Numbers and Pages do not produce satisfactory results which is somewhat disappointing. The thought of having to learn a new Applescript volcabulary and then rewrite the Scripts is somewhat daunting hence my enquiry.
Any suggestions will be very welcome and much appreciated.
Kind regards,
David Gurney.

I have prepared copies of both the spreadsheet and script along with an outline of how the set up works. Also I have a screen shot of a fiished pattern so that you can see what is produced.
          4/4 Twill Drafting.
          This set up produces unlimited numbers of patterns in basic 4/4 twill weave from which a large number of fabrics are woven. The software is in two parts:-
          1. A spreadsheet has been prepared in the form of a grid of 130 columns X 150 rows. Along the top of this are four horizontal rows ( 1 - 4) which represent the four shafts of a loom. Along the right hand side of the grid are four vertical columns which intersect with the horizontals to form what is called a tie up box. The numbers inserted into the tie up box represent lifts so that on the first lift  shafts 1 and 2 are raised, on the second lift shafts 2 and 3 are raised, on the third lift shafts 3 and 4 are raised and finally on the fourth lift shafts 1 and 4 are raised.
          To produce twill weave the threads running the length of a piece of fabric, namely the warp, are simply threaded onto the  shafts of the loom in a sequence of 1, 2, 3, and 4 which is repeated. Likewise the weft threads which run across the width of the cloth are also repeated in the same sequence.
2.          The script is arranged so that it produces one repeat of the desired design. This is done by running the script and then entering the colour of each warp and weft thread by means of the colour picker. In practice I have produced a series of different palettes so that the number of colours available are considerable. To illustrate how this works  enter the  following example:-
          (a) In response to the dialog enter the total  number of warp threads, say 8 and define the colour of each one by means of the colour picker. I would suggest you enter say 4 black threads followed by 4 red threads. NOTE When you have entered the last thread,  No. 8, click on a white square in the colour picker and you will then be asked to repeat the process for the weft. The script will then produce a pattern draft showing one repeat of the pattern plus a draft of the way the shafts on the loom are threaded up and another draft of the way the shafts are lifted. Each thread is numbered and the colour is also indicated for both warp and weft.
          (b) Once you have the repeat you can select the square and copy it and then you can paste it onto a finer grid so as to produce the overall design. I use a grid of 256 columns by 512  rows and have another script which pastes the selection a multiple number of times both horizontally and vertically.  
3.           Once you have the desired pattern you can "Save as" which enables you to retain the basic grid for further use and at the same time preserves the actual draft which you have produced.
tell application "AppleScript Runner"
  activate
          set nwt to text returned of ¬
                    (display dialog "ENTER THE TOTAL NUMBER OF THREADS IN THE WARP REPEAT DEFINING EACH THREADS COLOR AS IT IS ENTERED USING THE COLOR PICKER" default answer "")
          try
                    set nwt to nwt as number
          end try
          set z1 to 0
          set sc to 17711
          set do to 17701
          set dd to 17701
          set dc to 0
          set de to 0
          repeat until z1 = (nwt + 1)
                    set MyRGB to {choose color}
                    set «class flcl» of «class ccel» sc of «class pSS » of front document to MyRGB
                    if «class flcl» of «class ccel» sc of «class pSS » of front document = {61166, 61166, 61166} and z1 = (nwt + 1) then set z1 to (z1 - 2)
                    if «class flcl» of «class ccel» sc of «class pSS » of front document = {61166, 61166, 61166} and z1 = (nwt + 1) then set sc to (sc + 300)
                    if «class flcl» of «class ccel» sc of «class pSS » of front document = {61166, 61166, 61166} then set z1 to (z1 - 2)
                    if «class flcl» of «class ccel» sc of «class pSS » of front document = {61166, 61166, 61166} then set sc to (sc + 300)
                    set z1 to (z1 + 1)
                    set sc to (sc - 150)
                    set do to (do - 149)
                    set dc to (dc + 1)
                    set de to (de + 1)
                    if dc = 4 then set do to (dd - (de * 150))
                    if dc = 4 then set dc to 0
          end repeat
          set nwp to text returned of ¬
                    (display dialog "ENTER THE TOTAL NUMBER OF THREADS IN THE WEFT REPEAT DEFINING EACH THREADS COLOR AS IT IS ENTERED USING THE COLOR PICKER" default answer "")
          try
                    set nwp to nwp as number
          end try
          set z1 to 0
          set sd to 17862
          set dz to 19362
          set dx to 19362
          set dy to 0
          repeat until z1 = (nwp + 1)
                    set MyRGB to {choose color}
                    set «class flcl» of «class ccel» sd of «class pSS » of front document to MyRGB
                    if «class flcl» of «class ccel» sd of «class pSS » of front document = {61166, 61166, 61166} and z1 = (nwt + 1) then set z1 to (z1 - 2)
                    if «class flcl» of «class ccel» sd of «class pSS » of front document = {61166, 61166, 61166} and z1 = (nwt + 1) then set sd to (sc - 2)
                    if «class flcl» of «class ccel» sd of «class pSS » of front document = {61166, 61166, 61166} then set z1 to (z1 - 2)
                    if «class flcl» of «class ccel» sd of «class pSS » of front document = {61166, 61166, 61166} then set sd to (sd - 2)
                    set z1 to (z1 + 1)
                    set sd to (sd + 1)
                    set dz to (dz - 149)
                    set dy to (dy + 1)
                    if dy = 4 then set dz to (dz + 600)
                    if dy = 4 then set dy to 0
          end repeat
          set wfc to 17712
          set rwfc to wfc
          set sd to 17862
          repeat nwp times
                    repeat nwt times
                              set MyRGB to «class flcl» of «class ccel» sd of «class pSS » of front document
                              set «class flcl» of «class ccel» rwfc of «class pSS » of front document to MyRGB
                              set rwfc to (rwfc - 150)
                    end repeat
                    set sd to sd + 1
                    set wfc to wfc + 1
                    set rwfc to wfc
          end repeat
          set MyRGB to ""
          set wpf to 17712 ---First thread in warp---
          set wpfd to 17712
          set wfc to 17711 ---First colour in warp---
          set wfcd to 17711
          set cclr to 18012 ---First lift in picking plan---
          set wctr to 1
          set w2 to 1
          repeat (nwp / 4) times
                    repeat (nwt / 4) times
                              repeat 1 times
                                        if «class ccel» cclr of «class pSS » of front document = 1 then set MyRGB to «class flcl» of «class ccel» wfc of «class pSS » of front document
                                        set «class flcl» of «class ccel» wpf of «class pSS » of front document to MyRGB
                                        if «class ccel» cclr of «class pSS » of front document = 1 then set MyRGB to «class flcl» of «class ccel» (wfc - 150) of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf - 150) of «class pSS » of front document to MyRGB
                                        if «class ccel» (cclr + 1) of «class pSS » of front document = 2 then set MyRGB to «class flcl» of «class ccel» (wfc - 150) of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf - 149) of «class pSS » of front document to MyRGB
                                        if «class ccel» (cclr + 1) of «class pSS » of front document = 2 then set MyRGB to «class flcl» of «class ccel» (wfc - 300) of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf - 299) of «class pSS » of front document to MyRGB
                                        if «class ccel» (cclr + 2) of «class pSS » of front document = 3 then set MyRGB to «class flcl» of «class ccel» (wfc - 300) of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf - 298) of «class pSS » of front document to MyRGB
                                        if «class ccel» (cclr + 2) of «class pSS » of front document = 3 then set MyRGB to «class flcl» of «class ccel» (wfc - 450) of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf - 448) of «class pSS » of front document to MyRGB
                                        if «class ccel» (cclr + 3) of «class pSS » of front document = 4 then set MyRGB to «class flcl» of «class ccel» (wfc - 450) of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf - 447) of «class pSS » of front document to MyRGB
                                        if «class ccel» (cclr + 3) of «class pSS » of front document = 4 then set MyRGB to «class flcl» of «class ccel» wfc of «class pSS » of front document
                                        set «class flcl» of «class ccel» (wpf + 3) of «class pSS » of front document to MyRGB
                              end repeat
                              set wfc to (wfc - 600)
                              set wpf to (wpf - 600)
                              set wctr to (wctr + 1)
                    end repeat
                    set wpf to wpfd + (4 * w2)
                    set w2 to (w2 + 1)
                    set wfc to wfcd
          end repeat
          set wfc to 17711
          set we to 17701
          set wed to 17701
          set ctr to 0
          set cot to 1
          repeat (nwt / 4) times
                    repeat 4 times
                              set MyRGB to «class flcl» of «class ccel» wfc of «class pSS » of front document
                              set «class flcl» of «class ccel» we of «class pSS » of front document to MyRGB
                              set «class ccel» we of «class pSS » of front document to cot
                              set ctr to ctr + 1
                              set cot to (cot + 1)
                              set we to (we - 149)
                              set wfc to (wfc - 150)
                    end repeat
                    set cot to 1
                    set we to (wed - (150 * ctr))
          end repeat
          set wtt to 19362
          set wtd to 19362
          set wfp to 17862
          set ctr to 0
          set cot to 1
          repeat (nwp / 4) times
                    repeat 4 times
                              set MyRGB to «class flcl» of «class ccel» wfp of «class pSS » of front document
                              set «class flcl» of «class ccel» wtt of «class pSS » of front document to MyRGB
                              set «class ccel» wtt of «class pSS » of front document to cot
                              set ctr to (ctr + 1)
                              set cot to (cot + 1)
                              set wtt to (wtt - 149)
                              set wfp to (wfp + 1)
                    end repeat
                    set cot to 1
                    set wtt to (wtd + (1 * ctr))
          end repeat
end tell
I am sorry but I cannot send you the 130 X 150 Grid as it is a .cwk document and is not accepted by Lion. I would suggest you see if you can access an older system and create a .cwk spreadsheet grid with the squares reduced to 12 point by means of the format instruction for both rows and columns.
I will be interested to see what you think about this problem.
Kind regards,
David Gurney.

Similar Messages

  • How do I tell if my mac book air will run mountain lion?

    I've seen it asked a lot of times.  I've seen the same answer every time, which is "so long as it's a late 2008 model"
    My macbook air is silver... it says "macbook air" on it... I bought it once upon a time... it is running leopard... it does not appear to have a date stamp...
    Do macbook air once-upon-a-time models run mountain lion?  Or is there, possibly, some clue somewhere in the system data and about boxes that I might check?  You know, like processor speed or graphics or memory?  What does "late" 2008 mean anyway?  how late?  If I bought it in August it won't work but if I bought it in September from a shop that had been stocking it since June it will?  Come on...
    I don't even want to upgrade, I just find I pretty much have to now or I can't access anything (like the app store).  I'm feeling obliged to pay to keep my machine working without being able to work out in advance if I even can - this has put me in a fairly negative frame of mind, and is why you are going to have to live with a fairly grumpy help request!
    Anyone know what the real criteria are?

    Apple uses descriptors like "Late 2008" to indicate when models change. It has nothing to do with the time of year a system might be sold. The late 2008 MBA specs are here. 
    Type in your systems serial number here, and it will tell you what you have. You can find your serial number by clicking on the apple to the left side of the menu bar. Underneath the MAC OS X where it says what level of operating system you have, click on that until you see the serial number.

  • How can I reset my password on my MacBook Pro running mountain lion

    How can I reset my password on my MacBook Pro running mountain lion

    https://discussions.apple.com/docs/DOC-4101

  • How to convert tokens to different tokens in applescript?:P

    hey guys,
    I am sorry for the vague question but i really need to explain what i mean.
    I have this pdf file, of which i want to copy the text from to word, however it has many tokens such as the sigma and the square root sign that cant be converted to word or pages. What i am thinking of doing is copy the text and then convert it in applescript so "square root sign" becomes "square" in letters and the greek letter mu becomes just "M"
    -- incomplete Script on
    set question to display dialog "which text to convert?" default answer "something"
    set all to text returned of question
    -- script off
    and then i change the odd tokens in all to tokens word understand.
    I understand that this might not even be possible in applescript, but if it is possible in any way or you have any suggestion than i would love to hear them please.
    I just want the odd tokens to adapt to conventional ones.
    Thank you so much in advance

    hey guys,
    I am sorry for the vague question but i really need to explain what i mean.
    I have this pdf file, of which i want to copy the text from to word, however it has many tokens such as the sigma and the square root sign that cant be converted to word or pages. What i am thinking of doing is copy the text and then convert it in applescript so "square root sign" becomes "square" in letters and the greek letter mu becomes just "M"
    -- incomplete Script on
    set question to display dialog "which text to convert?" default answer "something"
    set all to text returned of question
    -- script off
    and then i change the odd tokens in all to tokens word understand.
    I understand that this might not even be possible in applescript, but if it is possible in any way or you have any suggestion than i would love to hear them please.
    I just want the odd tokens to adapt to conventional ones.
    Thank you so much in advance

  • How do you close a finder window on an iMac running Mountain Lion by double clicking on the top of the window like I can on my Macbook Air?

    When I bought my Macbook Air in 2011, ( leopard on purchase - now mountain lion) I discovered how to close open Finder windows by double clicking at the top of the window. I have just bought an iMac (mountain lion) and for the life of me cant find out how to do the same. Finder preferences are no help. Can anyone out there be of some?
    Thanks in advance

    I know what you are referring to. In both cases, the window is minimized, but on your MacBook Air, your Finder window is minimized onto the Finder icon, and on the iMac, on the right side of the Dock.
    To change this on your iMac, open System Preferences > Dock, and mark "Minimize windows into application icon"

  • How do I transfer my music from my mac mini running mountain lion to iPad 2. I have ICloud running, why are they not automatically pushed to the ipad2? Do I need to use ITunes? If so, how do I do it without deleting everything on the IPad2?

    I have a new MacMini onto which I have installed music files. I want to transfer them to my IPad2 . I have ICloud working properly, or so I thought, so why are these files not appearing on my Ipad2? Do I need to use ITunes? If so, how do I sync without erasing what is already on the IPad? Any help would be greatly appreciated.

    This is the procedure for syncing music to the iPad.
    Connect the iPad to the Mac and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Music Tab on the right.
    Click on all of the albums or playlists that you want to sync - or the entire library if you like.
    Click on the Sync Music Heading.
    Click on Apply in the lower right corner of iTunes
    iCloud does not transfer the music on the Mac to the iPad unless you download it again on the iPad. iTunes Match may be what you are thinking of and you have to subscribe to that feature for a fee.
    You have to sync the music that is already in your iTunes library to the iPad using iTunes. You can turn on Automatic Downloads on both devices for music and when you download music on one device it will download to the other device.
    I get the feeling that you have never synced the iPad with iTunes before but you already have content on the iOad and are getting a message that the iPad will be erased if you sync with iTunes. If that is true, you need to transfer all iPad content into iTunes before you sync. This will help you with that.
    Syncing with a new computer.
    https://discussions.apple.com/docs/DOC-3141
    Automatic downloads
    http://support.apple.com/kb/HT4539

  • How can you perform a factory restore on an iMac running mountain lion, without the use of an apple id

    Hello!
    I am a computer tech working for a computer company.  We have an iMac here in the store which a customer needs restored to factory defaults. 
    I have tried the following:
         - Using 'command + r' to format and reinstall mountain lion (it is requesting an apple id that has purchased the mountain lion OS)
         - Using 'option' on boot up, same seneraio
    Is their any other way to perform some kind of equavilent procedure that would ready a iMac for re-selling?
    It's almost as though I need to purchase a copy of the operating system that has already come preinstalled on this system.
    Im not a mac savy user, maybe it's something simple i am missing.  Any help with this would be greatly appreiated!  Thanks in advance!

    bonniefrom nl wrote:
    Hello!
    I am a computer tech working for a computer company.  We have an iMac here in the store which a customer needs restored to factory defaults. 
    I have tried the following:
         - Using 'command + r' to format and reinstall mountain lion (it is requesting an apple id that has purchased the mountain lion OS)
         - Using 'option' on boot up, same seneraio
    You must have the account credentials for the account that was used to purchase Mountain Lion (this iMac was upgraded) presumably the customer.
    Is their any other way to perform some kind of equavilent procedure that would ready a iMac for re-selling?
    It's almost as though I need to purchase a copy of the operating system that has already come preinstalled on this system.
    Boot the iMac, go to Apple>About This Mac>System Report, post the model identifier here (under hardware, 2nd line down)

  • How to convert class file

    Hi all, I am new in java card development.
    This is my environment setting:
    @echo off
    set JC_HOME=C:\JavaCard\java_card_kit-2_2
    set JAVA_HOME=C:\j2sdk14103
    set PATH=.;%JC_HOME%\bin;%PATH%
    I have created the Wallet applet according to 'Zhiqun Chen" text book and named it WalletApp.java.
    I have compiled this file to a class file.
    This is where is I saved my file
    C:\JavaCard\java_card_kit-2_2\samples\src\com\sun\javacard\samples\WalletApp\WalletApp.java.
    But I don't really understand how to convert the class file.
    May I know what is this for?
    -out EXP JCA CAP
    -exportpath
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1:0x1
    com.sun.javacard.samples.HelloWorld.HelloWorld
    com.sun.javacard.samples.HelloWorld
    0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1 1.0
    must save this in what file?
    I tried to type in the command line below (and the result):
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sap
    les\Wallet\Wallet.opt
    error: file scr\com\sun\javacard\saples\Wallet\Wallet.opt could not be found
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    use file for all options and parameters to converter
    Where options include:
    -classdir <the root directory of the class hierarchy>
    set the root directory where the Converter
    will look for classes
    -i support the 32-bit integer type
    -exportpath <list of directories>
    list the root directories where the Converter
    will look for export files
    -exportmap use the token mapping from the pre-defined export
    file of the package being converted. The converter
    will look for the export file in the exportpath
    -applet <AID class_name>
    set the applet AID and the class that defines the
    install method for the applet
    -d <the root directory for output>
    -out [CAP] [EXP] [JCA]
    tell the Converter to output the CAP file,
    and/or the JCA file, and/or the export file
    -V, -version print the Converter version string
    -v, -verbose enable verbose output
    -help print out this message
    -nowarn instruct the Converter to not report warning messages
    -mask indicate this package is for mask, so restrictions on
    native methods are relaxed
    -debug enable generation of debugging information
    -nobanner suppress all standard output messages
    -noverify turn off verification. Verification is default
    *********************************************************May I know What is the correct command line to convert the class file and what must I do to before converting the class file?
    I saw some article saying we must use JDK1.3, is it a must?
    Your solution is highly appreciated.
    Thank you!

    Hi Ricardo,
    I saved the file below as WalletApp.opt in the directory of scr\com\sun\javacard\samples\WalletApp
    -out EXP JCA CAP
    -exportpath c:\javacard\java_card_kit-2_2\api_export_files
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2:0x1 WalletApp.WalletApp
    WalletApp 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2 1.0
    But I still have the problem below:
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sam
    ples\WalletApp\WalletApp.opt
    error: file scr\com\sun\javacard\samples\WalletApp\WalletApp.opt could not be fo
    und
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    May I know What's wrong with my command or file?
    Where can I download JDK because what I can find is J2SDK.
    Thank you!

  • How to convert string to 16 characters.

    My external unique id is too long, more then 30 characters.
    How to convert it to 30 characters using sql?

    You should find another extranal system id in order to mantain uniqueness, but you could also use the name field (that supports 50 characters), but it deppends of which entity you are using.
    Which is the entity? and...if the only way to insert data is by web services the you could use more than one field to verify uniqueness since you can query more than one field at the time.
    Hope it helps
    Kim.

  • How to convert Web app into a channel?

    To whom it may concern,
    Does anyone know how to convert a Web app into a channel inside the Portal server 6.0?
    I developed the web app and tried to create a provider and a channel for it, but the Portal server did not recognize the WEB-INF folder and give me errors saying that it couldn't locate the class files.
    I also have a problem with URL inside my jsp page (channel).
    For example, I have two jsp pages:
    /etc/opt/SUNWps/desktop/default/MyCustomProvider/test1.jsp
    /etc/opt/SUNWps/desktop/default/MyCustomProvider/test2.jsp
    and when I try to put a link from test1.jsp to test2.jsp using
    ... and make a channel based on test1.jsp. The channel will display the link as "http://mydomain/portal/test2.jsp" and result in "Error: page not found". I want the link to point to
    /etc/opt/SUNWps/desktop/default/MyCustomProvider/test2.jsp
    To summarize my questions,
    1) Where should the web app be located in the Portal server?
    2) How to make a link inside one jsp page (channel) to point to another page inside the same folder?
    Thank you in advance

    Hello Karthik,
    I just tried to solve my problem with your suggestions, unfortunately, my JSP channel still doesn't work :(
    The portal server keeps reporting "Server Error..." when I tried to add query at the end of the href.
    Do you still have any other suggestions?
    Thank you

  • Video Format Total Solution: How to Convert and Edit Video on Windows/Mac

    More and More video formats are coming out with different video encoders and it makes our spare time more and more colorful. However, it is not to say that there is no problems. Actually, different video formats make it difficult to share video with others, even your own camcorder and iPod. Is there an easy way to convert videos effectively. Yes, there is.
    In this article, I will show you guys how to convert videos on windows and mac.
    Part 1. How to Convert and Edit Videos on Windows
    For Windows users, you need a Video Converter(http://www.aiseesoft.com/total-video-converter.html) to do that for you.
    Here I use Aiseesoft Total Video Converter(http://www.aiseesoft.com/total-video-converter.html)
    Step 1: Download and install Aiseesoft Total Video Converter
    After you download it to your computer, double click it and it is really easy to install.
    You just need to click “next” and it will complete it in seconds. It will automatically run after installation.
    http://www.aiseesoft.com/images/guide/total-video-converter/screen.jpg
    Step 2: Load Video
    Click “Add File” to find the video that you want to convert and click “open”. It will be loaded automatically.
    Step 3: Select the target to decode
    In the “Profile” drop download list you can find your target according the usage of your output video, such as if you want to put the video on your iPod touch, you can select the “iPod” in the first list and “iPod touch 2 MPEG-4 640*480(*.mp4)” in the second list.
    Step 4: Set Advanced Parameters
    After you select the right output profile, you can click “setting” button to set your advanced parameters. You can adjust video and audio settings separately. In video section, you can change “video encoder”, “resolution”, “frame rate”, “video bitrate”In audio section, you can change “audio encoder”, “sample rate”, “channel”, “audio bitrate”If you want to save this profile and settings and use it next time you can click “save as” button to give a name to it. And the next time you want to use it you can find it in the profile list named “user defined”.
    Step 5: Choose a Destination
    To browse and find a output folder for your output files or just the default one.
    Finally, Click “Convert” button to begin your conversion, here in the converting
    interface you can choose “shut down the computer when conversion complete” or “open output folder when conversion complete” or you just do not choose neither one.
    Tips: How to Edit the Output Video
    This video converter is also a video editor, you can use it to edit your output video as follows:
    http://www.aiseesoft.com/images/guide/total-video-converter/effect.jpg
    1. Effect:
    You are allowed to adjust the “Brightness”, “Contrast”, “Saturation” and you can choose the “deinterlacing” to make the video more enjoyable.
    2. Trim:
    In “Trim” section you can pick up any part of the video to convert.
    There are two ways to select the part of the video you want. One is set the start and end time in the box. The other one is to drag the start and end button in the processing bar.
    3. Crop:
    This function allows you to choose a certain play area to convert. That means you can choose a part of the screen you like to convert. For example, you just like the tv in the middle of the screen, then you can drag the frame around the preview window to select the tv and the output preview will show you the output video.In this section you can also choose the “zoom mode”, such as “keep original”, “full screen”, “16:9”, “4:3”.
    4. Watermark
    In the section, you can add a watermark on the output video to show people something, such as your name, website, studio name or other things. The watermark could be words and picture. You can adjust the transparent of the watermark easily to make it more beautiful.
    Part 2. How to Convert Video on Mac
    This time you need a Video Converter for Mac(http://www.aiseesoft.com/video-converter-for-mac.html)
    Step 1: Add File
    Click “Add File” button to load the video you want to converter
    http://www.aiseesoft.com/images/guide/mac-video-converter/steps.jpg
    Step 2: Choose profile and adjust settings
    You can find your output video format from a drop-list called “Profile”You can also adjust the specific settings of the output video, such as “Resolution”, “Bitrate”, “Encoder” and so on.

    @ Tamwini
    Your only goal is to sell software.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • How to convert data from a report in PDF which are specified on multiple lines ?

    It often occurs that in a report one detail entry is folded onto two subsequent lines.
    e.g.
      No.  
    Container          Lt Ht Tp F/E     Dam          Weight Temp     Bi Im First Seal     No. Cell     Booking ref.
    In Arr    id     A         Tml         PoL PD   PoD             C T L R F B                                                                                 
    1       XXXU123456-7  20 ST I F                        24.000                                  SLX11            1    25A     CVA12345  
    How does the conversion to Excel is going to handle this ?
    I need the second line of data in my excel sheet.
    YES               9/10   14:15        BEANR   REFCT

    Hello Jay,
    Don't use SSIS to convert. Use SSIS to FTP the files out.
    How you convert to PDF: the format is owned by Adobe so there might be royalties involved, but there are paid and free (OSS) libraries to doing so. Just search online.
    Arthur
    MyBlog
    Twitter

  • Very Urgent--- How to Convert Non Valuated stk into Valuated

    Dear GURU'S
    Actually for a material A when i see the stock in MM03 in accounting tab i see less stock then when i see in MMBE
    i.e in MMBE if i select Material A and Plant B(Which is depo in my case) i see stock as 39
    but for same material MAterial A and Plant B ,if i see in MM03 --in accounting tab i m able to see less stock i.e only 1
    ============================================
    Well the problem is In MM03 I cud see only valuated stk i.e qty as 1
    And in MMBE for a partiocular material for a particular plant the stock was 39
    i.e Here i am getting Valuated + Non valuated stock
    i.e i am getting difference of 25
    =====>>>
    To get into the root cause
    I have gone to MB5B where i can get all the transaction that has been done on this material with movement type also i got the intial stock ,Goods recpt ,Goods  issu and total stock
    No for a particular material
    In MB5B it is showing
    Stock on 01.01.2005    =  38
    receipts total               = 238
    Issues total                  =237
    Stock as on 18.02.2008 = 39(which is equal to Stock in MMBE)
    =============>This is for valuated +Non valuated stock
    Where as if i want to see only valuated stock it was showing
    receipts total      = 238
    Issues total         =237
    Stock as on 18.02.2008 =1  (which is equal to stock in acctg view in MM03)
    ====================>This is only for Valuated Stock
    ======================================
    Now how to solve this :
    The initial qty(38) which has been posted it was at the begining that is at the start of the project
    And the people who have posted it ,it was non valuated
    that is the reason it is showing difference in MM03 and MMBE
    First thing
    How can i see on which date this initial stock has been posted
    Second Query
    How to convert this non valuated stock into Valuated stock
    So that the quantity in MMBE and MM03 gets matched
    Willl award 10 Points if my problem gets solved
    THANKZ IN ADVANCE
    REgds
    Shailesh

    Dear friend
    Actuallly i have checked the history of that particular Item in MB51
    I have gone through all the documents created for this material
    Now this material also exist in DEPO which is located at chennai and plant is at mumbai
    So Initially in the year-2006(31-10-2006) whater documents are created i.e STOP has  been created and delivery has been made (Mov type-601)
    are non valuated stock ,means they have been posted without any valuation
    But from year 2007(01.02.2007) the documents whiohc have been posted are valuated
    i.e is the reason when i am executing transaction MRN9 to check the history of valuated stock
    I cant see non valuated stock
    Well now how to do the valuation of this stock which have been posted in year 2006 so that
    In MMBE and MM03 there is no difference of stock
    Plz hepl
    regds
    shailesh

  • How to convert a .jad file to .class file in JAVA Swings.

    Hi all,
    Sorry for the interruption.I am also facing the same problem.I am using DEJDecompiler.But my application is not J2ME But J2EE.( a Swing application).I opened .class file and made some changes but I dont know how to convert into a .class file again.
    I tried saving .jad file to .java file.Then it is showing lot of errors in Eclipse Platform.I doubt if there are any errors in the .class file already,then how could the program would run.I put all the programs in the respective platforms only and then testing.It fails.
    (2) one more question,is if I do not need to disturb any existing coding and need to create a seperate java file which will do my customisation,then what should I do.I could not get any interfaces in the program.
    Please help me as the matter is most urgent.
    Thanks in advance
    With regds
    Satheesh.K

    I tried saving .jad file to .java file.Then it is
    showing lot of errors in Eclipse Platform.I doubt if
    there are any errors in the .class file already,then
    how could the program would run.I put all the programs
    in the respective platforms only and then testing.It
    fails.So who's Java program/library are you trying to steal?
    (2) one more question,is if I do not need to disturb
    any existing coding and need to create a seperate java
    file which will do my customisation,then what should I
    do.I could not get any interfaces in the program.
    Please help me as the matter is most urgent.Wow, you urgently need to steal someones program/library. The best person to give you advice urgently is the owner of the program/library you are trying to steal.
    Thanks in advancePlease don't thank me because I'm not going to help you!
    With regds
    Satheesh.K

  • How to convert the javasource file(*.class) to execute file(*.exe)?

    How to convert the javasource file(*.class) to execute file(*.exe)?
    thank you!

    Although i have seen a few programs (that are platform specific) that will embed a small jvm into an exe with your class file, it is generally excepted that you cannot create an executable file using java. The JAR executable file is probably the closest your going to get
    Pete

Maybe you are looking for

  • Access to SSO login when client cannot access port 7777

    We have a situation in which some of our users are behind internet firewalls that only allow access to port 80. I already have the middle tier/portal using port 80 but SSO is using 7777. Is there an easy way to make sign on available via port 80? IMP

  • Updating of firmware for drive Optiarc DVD Rw AD-5680H

    updating of firmware for drive Optiarc DVD Rw AD-5680H it seems compulsory since burning of DVD Verbatim disks are failed but successful with Verbatim DVD -RW Mac Mini ,Mountain Lion etc the drive of my PowerBook Pro works well Mashita DVD -R UJ -868

  • Nexus 7009 bandwidth allocation per port in shared and dedicated mode:

    We have 7009 with following I/O modules: N7K-F248XP-25E -- N7K-C7009-FAB-2 - qty 3 N7K-SUP2 I would like to know that each port of N7K-F248XP-25E will get how much bandwidth in shared mode. if we are using only one port group with 4 ports each port w

  • Best workflow to select all text in object

    I regularly copy text filled objects to reuse them and need to change the text within. Does anyone have a fast way to select all text? Currently I have to double click the text to get a cursor and then use a control+A to select all text in the box. I

  • Channel had not been correctly initialised....

    Hi experts, i am doing proxy to file scenario... i executed the proxy and i can see the chequered flag in MONI.... i am doing FCC on receiving side and i ensured that all the objects are activated.. but i am getting error in CC.. description of error