Startup shell script help for newbie?

New to UNIX (linux)... need the bash shell script commands for my r.c local file to start my services when server boots.
I got my ds, dps and admin server in their respective /opt directories. I need the shell commands to have these start. Of course I can start them manually but when I try a line like this in a script, it doesnt work:
./var/opt/sun/directory-server/slapd-dsserver/start-dsserver
Some path problem or dot thing?

There are a few other things you may want to consider, such as what the default browser is, are tabs being used, is the page loaded yet, etc, but Safari has a do javascript command in it's scripting dictionary. The following script will open a new document and run your specified javascript, or you can go to their NPR Program Stream Page and download a playlist that will run directly from iTunes.
<pre style="
font-family: Monaco, 'Courier New', Courier, monospace;
font-size: 10px;
margin: 0px;
padding: 5px;
border: 1px solid #000000;
width: 720px; height: 335px;
color: #000000;
background-color: #FFDDFF;
overflow: auto;"
title="this text can be pasted into the Script Editor">
set my_script to "NPR.Player.openPlayer(2, 0, '03-21-2008', NPR.Player.Action.PLAY_NOW, NPR.Player.Type.PROGRAM, NPR.Player.Mode.LIVE)"
tell application "Safari"
activate
set the URL of the front document to "http://www.npr.org/"
if my page_loaded(20) is false then error numner - 128 -- page not loaded in time
do JavaScript my_script in document 1
end tell
on page_loaded(timeout_value) -- from http://www.apple.com/applescript/archive/safari/jscript.01.html
delay 2
repeat with i from 1 to the timeout_value
tell application "Safari"
if (do JavaScript "document.readyState" in document 1) is "complete" then
return true
else if i is the timeout_value then
return false
else
delay 1
end if
end tell
end repeat
return false
end page_loaded
</pre>

Similar Messages

  • Shell Script Help

    I'm an IBM guy and I was assigned this MAC projet. I'm a MAC noob. I have a multi-user eMac. The user account folders are blown away when the computer shuts down leaving just the root accout and default account. I included a new javapolicy file in the default user account. A file called java.policy resides in the user home folder at log in (/users/johndoe/java.policy) for every new user that logs in. I need to create a logon shell script that finds the java.policy file in their home folder and renames it .java.policy to make it hidden. Remaming it in the default profile is not an option, and I don't know who will be using the computer at any given day. Can someone help me with the code.
    #!/bin/bash/
    I'm clueless, thanks for the help

    The generic bash rename syntax for your specified command is:
    mv /Users/shortuser/javapolicy /Users/shortuser/.java.policy
    Here's a typical script:
    #!/bin/bash
    mv /path/to/source/.java.policy /Users/shortuser/.java.policy
    The most direct mechanism would be via a computer login preference and workgroup manager, setting up a script that executes at user login. That script is invoked at login and can copy over or create the required file. Another of the usual techniques for executing commands at login is the so-called [login hook (HT2420)|http://support.apple.com/kb/HT2420], though if you're using Open Directory (OD) or OD with Active Directory (AD), it'll probably be better to go that way than the login hook.
    Other discussions [here|http://arstechnica.com/civis/viewtopic.php?f=20&t=416343] and [here|http://www-personal.umich.edu/~lsiden/tutorials/signed-applet/signed-appl et.html]
    I'd tend to expect to see the policytool used for this file, too. Launch Terminal.app and see +man policytool+ for details on that.
    I'd also tend to expect to see this sort of stuff established within the system-wide policy module from the JRE that's usually located in [the system library directory |http://stackoverflow.com/questions/4372060/java-security-file-location-on-mac- snow-leopard] (/Library/Java/Home/lib/security/java.policy) and not with a per-user setting, too, and that's a rather different approach than populating the per-user settings. (But then I'm not a Java geek.)
    FWIW, it's "Mac" and not "MAC", it's Unix, and files and directories doesn't get blown away unless there's a problem somewhere, or unless this is a school or kiosk or other environment that's using specific system-reset processing. And if there's system-reset processing here, then you'll obviously need to work within that. That processing is usually associated with OD, hence the earlier pointers. (And if there's this sort of reset processing going on, there's usually a reason for it, I'd probably try to keep as much sensitive stuff out of the local directories as I could reasonably manage.)

  • Unix shell Script Help

    Hi,
    I am not to familiar with shell scripting. And i need a shell script that would look for a certain filename (eg: ASN*.txt) in a directory(Eg:data) and if it does find that, it calls a concurrent program(Eg: abc.xyz) and once this is called and procedure excutes successfully, I take the file and move it to another directory(Eg:archive)
    Any help would be aprreciated.
    Thanks,
    Ja

    You bet.
    http://steve-parker.org/sh/sh.shtml
    http://heather.cs.ucdavis.edu/~matloff/UnixAndC/Unix/CShellII.html
    and about 300,000 more hits on Google

  • Shell script help required

    hi
    scenario: A folder contains n - number of folder which contains few generated pdf reports.
    NOW I need a shell script which will solve two purpose simultaneously:
    1. it will create folder for each folders in the specific directory according to the month and year AND it will copy the respected folder within them including the pdf files.
    2. The newly created folders will be converted into a tar compressed file.
    EXAMPLES:
    Say the folder name is E-SEVA wich contains folders say 10_MAR_2011,12_MAR_2011 and n_YthMonth_2011 and same for 2012 year also.Now I need folders rather a tarz file for each month say MARCH_2011,FEB_2011,MARCH_2012,FEB_2012 and so on.
    kind regards

    The following should do:
    months="JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC"
    years="2011 2012"
    dir="E-SEVA"
    cd "$dir"
    for month in $months; do
       for year in $years; do
          for folder in $(find . -type d -name "*_${month}_${year}"); do
             mkdir -p "${month}_${year}"
             cp -pR "$folder" "${month}_${year}/"
             tar -rf "${month}_${year}.tar" "${month}_${year}"
          done
       done
    doneNote: You cannot add files to a compressed archive.

  • Shell scripts  help

    Hi, I am not experienced in shell scripts, I hope someone can give some hint for the following problem
    I have html file like this
    <html>
    <body>
    Some stuff
    More stuff
    <pre>
    A
    B
    </pre>
    Still more stuff
    And more
    <pre>
    C
    D
    </pre>
    Additional stuff
    </body>
    </html>
    I want to write the script to red this file and dump out
    The items within the <pre> tags. For example, the output for the above file
    shouild be
    A
    B
    C
    D
    Thanks
    Angela

    Hi,
    I have tried to go little far and created a little complicated solution.
    This may be usefull if,
    1) There are more than one <pre></pre> pairs in one line
    2) The <pre> tag can come in mixed case
    3) And you want everything as it is in the <pre> tag
    Means if the f.html file is,
    <body>
    My name is Einstein <pre>HA ha</PRE> and I am trying <PRE> FUNNY </Pre>
    things just for practise. This may be <pre>usefull</Pre> or it may <pre>
    not
    be usefull</pre> but its fun.
    </body>
    It should give,
    HA ha
    FUNNY
    usefull
    not
    be usefull
    Do the following,
    Create a file one.sed with following contents
    s/[<][Pp][rR][eE][>]/<PRE>/g
    s/[<]\/[Pp][rR][eE][>]/<\/PRE>/g
    Create a file two.awk with following contents
    gsub(/<PRE>/,"\n<PRE>");
    if (substr($0,1,6) != "</PRE>") {gsub(/<\/PRE>/,"\n<\/PRE>");}
    print
    Create a file three.awk with following contents
    BEGIN{v1=0}
    if ( match($0,/<\/PRE>/) != 0 ) { v1 = 0;}
    if ( match($0,/<PRE>/) != 0 ) { v1 = 1 ;}
    if (v1 == 1) { gsub(/<PRE>/,"");if (length($0) != 0) {print $0;} }
    And finally run the command,
    sed -f one.sed f.html | nawk -f two.awk | nawk -f three.awk
    Its not complex.
    one.sed will convert all <pre> tags to all capital letters.
    two.awk will move all <PRE> and </PRE> tags on new line, means <PRE> and </PRE> will always be first string in a line or it will not be there.
    three.awk will print out the actual contents between <PRE> and </PRE> pairs.
    If your requirement is even more complex then what I have done, please use perl instead of shell. Also, perl is consistant across Unix platforms. sed and awk are not. On Solaris you will have to use 'nawk' but on HP/AIX you have to use 'awk' and on Linux you may have to use 'gawk'.
    Cheers....have fun.
    Let me know any further complications and if you need a perl script.

  • Trying to create install script in PackageMaker...help for newbie

    Hello,
    I am trying to deploy a solution as an install package. Currently, there are 3 items inside the folder that needs to be installed in the /Applications folder. This in itself is easy. However, when I create upgrades to the solution, I want to carry over one file from the previous installation to the new one. Is there a way to have this upgraded version install and instead of removing all of the earlier files, can it install the new files (which are 3) and carry over 1 of the other files.
    I hope this makes sense. Thanks for any input or sample scripts that I may be able to modify to accomplish this.
    Thanks,
    Stephen

    Thanks for your time!
    Perhaps it would help if I explain a little further my situation and what I am trying to accomplish.
    I have a database runtime solution that I want to distribute. I have all of the necessary files in a single folder, let's say, named "Progam 1.2". Since whenever I upgrade this version, I need to have the old data file from the previous version on hand to import into the new file, I create a new folder called "Program 1.3" So after the installation, I would have both folders. The user then opens the new version and the program then will import the previous versions data. At that point the user may delete the previous version folder entirely.
    My question is how can accomplish an install so that the new version will not overwrite the previous folder "Program 1.2" when installing the upgrade to "Program 1.3" since I need the data file for updating the data. Ideally, I would love to have the new folder installed and the single data file in the previous version folder be copied to the new versions folder and be renamed to "Previous Data" so that the new version can update the data.
    Again, I am a complete newbie in this arena and have simply been doing DMG files where the user copies the new version to the applications folder. But if there was a way to automate this installation more, I would like to do that.
    Thanks again for your help!
    Stephen

  • Basic script help for a newbie?!?!

    Need help with a basic script, I need to display 5 input fields in a single dynamic field. And i need them to have a certain order of display, ie: input 1 is displayed on line 1, 2 on the next line, etc. any help would be appreciated
    I have been trying various scripts but i either make the second input field replace the first one, or i cant get the vars to populate the field with a button.. Im kinda lost.

    Show what you have tried so far that give you the results where you either replace fields or can't get vars to populate them with a button.

  • Javascript help for newbie

    Hi,
    I have a 18x12 booklet form PDF (each PDF page consists of 2 9x12 images) that I need to split into single 9x12 pages.
    Found 2 scripts on the net to split pages in Acrobat and the other one to reorder the split pages. (after splitting the pages one ends up with page 1, page 24, page 2, page 23, etc.) Need to reorder the pages and found the Reorder script below.
    But it doesn't work in Acrobat 9 - I'm getting an illegal character error in line 20. (seems to be this line? nStart: i * 4 – 3).
    I don't even get a menu item called Reorder Pages under Documents.
    Help?
    Script:
    ReorderDocument = app.trustedFunction(function()
    // create a new document
    app.beginPriv();
    var newDoc = app.newDoc();
    app.endPriv();
    // reorder pages in booklet order into new document in sequential order
    var i = 0;
    var n = this.numPages;
    for (var i = 1; i <= n / 4; i++)
    newDoc.insertPages( {
    nPage: newDoc.numPages-1,
    cPath: this.path,
    nStart: i * 4 – 3,
    nEnd: i * 4 – 2
    newDoc.insertPages( {
    nPage: newDoc.numPages – 1,
    cPath: this.path,
    nStart: n – 1
    for (var i = 1; i 1)
    newDoc.deletePages(0); // this gets rid of the page that was created with the newDoc call.
    // add the menu item
    app.addMenuItem({
    cName: "reorderPagesJS", // this is the internal name used for this menu item
    cUser: "Reorder Pages", // this is the label that is used to display the menu item
    cParent: "Document", // this is the parent menu. The file menu would use "File"
    cExec: "ReorderDocument()", // this is the JavaScript code to execute when this menu item is selected
    cEnable: "event.rc = (event.target != null);", // when should this menu item be active?
    nPos: 1

    Hold on - just found another webpage with different code. This one seems to work now. Posting it here in case somebody else needs it: this script is to reshuffle pages are having split a booklet form PDF into separate pages:
    ReorderDocument = app.trustedFunction(function()
    // create a new document
    app.beginPriv();
    var newDoc = app.newDoc();
    app.endPriv();
    // reorder pages in booklet order into new document in sequential order
    var i = 0;
    var n = this.numPages;
    for (var i = 1; i <= n / 4; i++)
    newDoc.insertPages( {
    nPage: newDoc.numPages-1,
    cPath: this.path,
    nStart: i * 4 - 3,
    nEnd: i * 4 - 2
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: n - 1
    for (var i = 1; i <= n / 4 - 1; i++)
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: n - i * 4
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: n - i * 4 - 1
    newDoc.insertPages( {
    nPage: newDoc.numPages - 1,
    cPath: this.path,
    nStart: 0
    if (newDoc.numPages > 1)
    newDoc.deletePages(0); // this gets rid of the page that was created with the newDoc call.
    // add the menu item
    app.addMenuItem({
    cName: "reorderPagesJS", // this is the internal name used for this menu item
    cUser: "Reorder Pages", // this is the label that is used to display the menu item
    cParent: "Document", // this is the parent menu. The file menu would use “File”
    cExec: "ReorderDocument()", // this is the JavaScript code to execute when this menu item is selected
    cEnable: "event.rc = (event.target != null);", // when should this menu item be active?
    nPos: 1

  • Scripting help for image pop-up within a PDF

    Hi,
    I'm creating some sample eBooks in Acrobat Professional 9 (Mac), and I am stuck on one element that needs to be present. In the text within the PDF, there might be a phrase like, "See Fig. 1". Fig. 1 might not be on that page, however. I know how to create a link in a PDF that will navigate the reader to the page with the image referenced, but that's not good enough. I'd like to have this happen:
    User clicks on "See Fig. 1".
    Popup window appears with the referenced thumbnail image.
    The image's popup window will stay on-screen until dismissed by the user.
    Clicking on the popup thumbnail image calls up a full-size image.
    The added wrinkles are many after we figure out the scripting for the above, but here are two major ones to be addressed right away:
    1) The images are already part of the typeset document converted to PDF, so I am guessing the images would have to be bundled with the PDF somehow. Our users need to use the PDFs in an offline environment, so a call-out to a URL is out of the question.
    2) The PDFs will be read on Macs, PCs, and possibly iPads. If a bundled, local file is called out when a user clicks on "See Fig. 1", how do I set a relative filepath in the call-out?
    Thanks for any help you can provide.
    Andrew

    Here's a sample document that demonstrates some of what you're asking about: https://acrobat.com/#d=aP-2xL45pM57xVkT6d6fSg
    The images are stored in buttons, so there is no concern about having to use external images. Note that this may not work on an iPad since most (all?) PDF viewers on the iPad do not have JavaScript support.

  • Scripting help for a tedious process.

    Ian Wood wrote a script that takes a list of version names from a Word.doc or plain text doc. and opens Aperture, searches the Library and then creates an album from those gathered images. This is great, for example if a Bride gives you a list of her favorite photos for the design of the final wedding book.
    The script works well, however it looks at the whole Aperture library.
    If you have versions with the same name it only picks one.
    (You may have exactly the same version names scattered around your library because your camera cycles back to 0001 after it reaches 9999)
    If someone out there knows how to re-write the script so that it only looks in a particular project as it picks the version names, then an otherwise tedious process would be simplified.
    Any help would be appreciated.
    The following is a copy of Ian's script.
    This script is written by Ian Wood. No warranty is given or implied for the script's use.
    Feel free to copy and adapt this script for your own use. Originally written in answer to a thread on the Aperture discussion forum.
    Please visit http://www.aperture-assistant.com for more scripts and information about automation and Aperture.
    set tfile to (choose file "Pick the text file")
    set fref to (open for access tfile) -- now we read the file in
    set tSize to (get eof tfile)
    set tText to (read fref as string from 1 to tSize)
    close access fref
    log tText
    set tList to every paragraph of tText -- turn the lines into a list
    tell application "Aperture"
    activate
    tell library 1
    set this_project to make new album with properties {name:"Results of file name list"} -- you can change this if you want the Album to have another name.
    end tell
    repeat with i from 1 to the count of the tList
    set tName to item i of the tList
    set tImgID to "not found"
    try
    set tImgID to (first image version whose name is tName)
    end try
    if tImgID is not "not found" then
    try
    duplicate tImgID to this_project
    end try
    else
    log tName
    end if
    end repeat
    end tell

    Ian Wood wrote a script that takes a list of version names from a Word.doc or plain text doc. and opens Aperture, searches the Library and then creates an album from those gathered images. This is great, for example if a Bride gives you a list of her favorite photos for the design of the final wedding book.
    The script works well, however it looks at the whole Aperture library.
    If you have versions with the same name it only picks one.
    (You may have exactly the same version names scattered around your library because your camera cycles back to 0001 after it reaches 9999)
    If someone out there knows how to re-write the script so that it only looks in a particular project as it picks the version names, then an otherwise tedious process would be simplified.
    Any help would be appreciated.
    The following is a copy of Ian's script.
    This script is written by Ian Wood. No warranty is given or implied for the script's use.
    Feel free to copy and adapt this script for your own use. Originally written in answer to a thread on the Aperture discussion forum.
    Please visit http://www.aperture-assistant.com for more scripts and information about automation and Aperture.
    set tfile to (choose file "Pick the text file")
    set fref to (open for access tfile) -- now we read the file in
    set tSize to (get eof tfile)
    set tText to (read fref as string from 1 to tSize)
    close access fref
    log tText
    set tList to every paragraph of tText -- turn the lines into a list
    tell application "Aperture"
    activate
    tell library 1
    set this_project to make new album with properties {name:"Results of file name list"} -- you can change this if you want the Album to have another name.
    end tell
    repeat with i from 1 to the count of the tList
    set tName to item i of the tList
    set tImgID to "not found"
    try
    set tImgID to (first image version whose name is tName)
    end try
    if tImgID is not "not found" then
    try
    duplicate tImgID to this_project
    end try
    else
    log tName
    end if
    end repeat
    end tell

  • Script help for dated folder/file

    would anyone mind helping me finalize an issue i have been needing to finalize? i have gotten some help on creating a script that creates a file or folder with the current date but i am not technically competent enough with applescript or chron or any of these things. i can handle terminal pretty much but some of the explanations while obviously complete have got me confused.
    can anyone take a look at the first one here and just tell me how to get off the blocks with this?
    apparently i need to /copy/ and paste the text into a text editor and save as a .pl file by converting the file extension or is this wrong? it seems to me like the next step is in terminal so with a question or two i am sure i can handle this second part...
    https://discussions.apple.com/message/18109918#18109918
    this is another version but the first seems like i have more editing control or may be more direct for my needs(?).
    https://discussions.apple.com/thread/3526097?start=15&tstart=0

    Well, since you have issues with copying, pasting, and saving a file in the GUI, the second option may be your best choice. Setting up crontab requires some proficiency using the vi text editor.

  • Script Help for iPhoto

    fairly new to Mac. I life iPhot....except, when I mod a photo, it moves to a completely different folder. My simple mind can't grasp the fundamentals of either applescript or automator. Can someone help me write a script that will help move the modified photo's from the iphoto library's "modified" folder, back to the original folder?
    Mahalo,
    Mike

    You can drag and drop the image from iPhoto to wherever you need it. For example, just drag and drop an image from iPhoto to the Desktop, and then you have a copy on the Desktop. If you don't want it in iPhoto anymore, just delete within iPhoto and the original and any modifications are gone. You'll also find buttons in iPhoto that let you easily set your Desktop background, send photos in an email, or publish them with iWeb, among other things.
    iPhoto is for not having to worry about where or how your photos are organized on the your hard drive, just like iTunes does for music. Just let iPhoto handle the organization. Free your mind, let your computer do the work. This is the 21st century, you know.
    Also consider creating albums in iPhoto for your own grouping, and tagging images with keywords and comments so you can create smart albums to automatically do the grouping for you. You can also drag and drop an image from one film roll to another or combine film rolls. Time to let go of the Finder when it comes to organizing your images.

  • Help for Newbie setting up business

    Hi!  Total newbie here. Any help would be appreciated.
    I use a Mac.  I'm developing a web internet business.  I'm planning to install and use Adobe Scene 7 for all it's features. In reading about Adobe Scene 7 it says it is 'hosted'.  I am planning on using Earth Girl Hosting for my business and I was hoping that I could use Adobe Scene 7 while using Earth Girl hosting.  Does anyone understand if I can do this and is it problematic if I do? 
    What exactly do they mean by Adobe Scene 7 is hosted?  Does that mean they host your whole web site?
    Later on I was planning to take a course at SMU that uses and teaches Dreamweaver.  If I have Adobe Scene 7 installed and using it in my business, will I be able to use Dreamweaver too........will they interface okay?
    Thanks so much for any help......... break it down for me on the newbie level if possible!

    What exactly do they mean by Adobe Scene 7 is hosted?  Does that mean they host your whole web site?
    This means that the program that is used to develop the web site is operated from an Adobe server, the same server that will host the site.
    Later on I was planning to take a course at SMU that uses and teaches Dreamweaver.  If I have Adobe Scene 7 installed and using it in my business, will I be able to use Dreamweaver too........will they interface okay?
    No, you will not be able to just use Dreamweaver to continue maintenance of the web site that is created by Scene 7. There may be small parts that are visible in the browser that you can use in Dreamweaver, but the dynamic parts will not be available.
    If time is of essence, the low learning curve of Scene 7 will probably help you get on line quickly. After that, either maintain it using the same tools or forget about it and start producing real web sites with Dreamweaver or other compatible web authoring software.

  • Help for Newbie?

    Hello,
    I am a beginner to FCE. I have made a handful of DVDs from imovie but wanted to move up a notch and learn something new. I video for the coaches at our local high school and usually make a highlight video. Also this year I have a senior and have been asked to do the video of rememberance for the senior class. I look forward to this but feel so unsure of myself. Would anyone be interested in helping me learn to run the program and give me some new ideas for these projects? The football video I usually get done by basketball season and the senior video needs to be done by May. This may involve some phone conversations or web cam.
    Thanks in advance.

    The best idea and advice I have for you is Tom's book.
    http://www.amazon.com/Final-Cut-Express-Editing-Workshop/dp/0240810775

  • JavaScript help for newb

    I have used JavaScript before, but not within Apex. I have several calculated fields that I need to be able to update after user input (I think the onChange() function will work just fine). I have browsed through over a dozen threads on using JavaScript, but I seem to be missing the one little piece that will make this all click.
    All I need to do is some very basic form manipulation, ie field1 x field2 = field 3, etc. Can someone please point me at a very simple example that shows:
    a) the JavaScript function code for referencing field values
    b) where to put said code (I think it is HTML Header in Page Definition, but confirmation or correction would be appreciated.)
    c) how to reference said code on a field. (where to put it in field definition)
    In case you want to see what I am doing, I have posted the form :
    http://apex.oracle.com/pls/otn/f?p=21392:10:426232455000914
    (use the Dashboard tab)

    Hi,
    You could do something like:
    function calc()
    var field1 = document.getElementById("field1");
    var field1value = parseFloat(field1.value);
    if (isNaN(field1value)) {field1value = 0);
    var field2 = document.getElementById("field2");
    var field2value = parseFloat(field2.value);
    if (isNaN(field2value)) {field2value = 0);
    var field3 = dcoument.getElementById("field3");
    field3.value = (Math.round(field1value * field2value*100)/100);
    This will retrieve the text values for field1 and field2, convert them to floats (if the values cannot be converted, the if tests will set them to zero), multiply the two values, round them to 2 decimal places and put the result into field3.
    Put this in a script tag anywhere on the page. I tend to put javascript functions in a separate region either in the "After Header" or "Before Footer" region position.
    I would then use the onblur event on field1 and field2 to call the script. You can add this in the "HTML Form Element Attributes" setting for the field definitions:
    onblur="calc()"
    I couldn't get into your OTN site as you didn't specify the username/password to use!
    Regards
    Andy

Maybe you are looking for

  • Need help with a form created with Dreamweaver CS5...

    How can I make a text field automatically jump to the next field when text is inputted? I've created a credit card payment form for a client and want to know how to make the cursor jump to the next available text field when the customer has input tex

  • How do I get Photo Deluxe 3.1 to work with Windows XP?

    I have recently upgraded my PC (used to have 98SE). Since then, I cannot get Photo Deluxe 3.1 to work I *DO NOT* want Photoshop - it's WAY WAY WAY too complicated for me. Photo Deluxe 3.1 was great, did everything I wanted it to do, and was so simple

  • Creating a complex tabular form manually

    Hi, I am trying to create a tabular form manually. The tabular form consists of rows , with each row containing 1. Select List (of employee names) 2. JOB (Text box) 3. Salary (text box) I have a add button to add a row, a row similar in appearance to

  • Airport Extreme w/ static IP address issue

    I'm using a westell 7501 in front of my airport extreme to connect to our ISP. Our static IP from the ISP worked great until our Mountain Lion server upgrade. Something has changed and I can't seem to troubleshoot it. I've returned everything to fact

  • KSV5 - GU444

    Hi, I have set distribution cycle (KSV1) and when the cycle is run (KSV5) I get error message GU444 - No information was found. I use SAP 600 with support package SAPKH60013. Have someone met something like that whenever. I have implemented SAP notes