Script to Create Folders Using Photoshop Scripting Mac/Windows

Can anyone help me. I want to create a script to create folders and run the script in Photoshop.
I am a real novice at scripting and I do not know if this can be done.
Thanks

//Folder to create on the desktop
var folder1 = Folder("~/desktop/My New Folder");
//Check if it exist, if not create it.
if(!folder1.exists) folder1.create();

Similar Messages

  • Interactive selection using photoshop script

    How to make a script pause till the user makes a selection and continue again using photoshop script?

    You can use two Scripts or one Script that, depending on some predetermined factor, performs two different tasks.
    So you could for example write something into the metadata, a channel, a txt file, … when a Script is run and that information is absent, and if it isn’t have the Script perform something else and remove that again.
    Edit: You probably could also set up the Script Events Manager to check for something on any Selection change and have it run a Script depending on that but I doubt that’s a good idea.

  • I use photoshop 6 (mac) if I subscribe to Premier CC do I have to subscribe to Photoshop CC also I want to use 6 as long as possible to avoid the subscriptions fees

    I use photoshop 6 (mac) if I subscribe to Premier CC do I have to subscribe to Photoshop CC also I want to use 6 as long as possible to avoid the subscriptions fees

    Completely separate products, so nothing to fear.
    Mylenium

  • Problems with text using Photoshop CC on Windows 8.1

    I am using Photoshop CC on Windows 8.1.  I get  flickering on the screen as described by others.  My main problem, however,  is that when I try to use the text tool the layer goes completely black and I cannot see what I am typing or edit the text.  I have tried updating my video card driver and my monitor driver.  I have deleted the font cache file, I have tried using Photoshop without plug ins (I use Nic plug ins).  The only thing that has worked is resetting the preferences by holding down alt+control+shift keys when starting photoshop.  This allows me to enter text normally on one photograph and one only.  Once I have completed that first photograph and load another I get the black layer.  I desperately need help.  If this continues I will have to cancel my membership as I was much better off using my Photoshop Elements 11 disc.
    Any help will be very gratefully appreciated...............help seems to be very difficult to come by Adobe you make it very difficult for your customers!

    Ok,I can appreciate that I may not have given enough information.  You state that without proper system information nobody can help, but I need to know what information is needed.  You also state that I should simply turn off hardware acceleration in the perfs.  What does that mean?  How do I do that? I have tried changing the GPU Drawing Mode to basic and it didn't work.  Is this what you mean?  You may be assuming a level of knowledge I do not have. From research I have done this seems to be a problem with windows 8.1 that Adobe have been aware of for about a year.  I have followed all the online advice I have been able to find but nothing seems to be working.
    Siren2110

  • I am using photoshop cc on windows 8 all latest updates done when trying to crop photo or use clone

    I am using photoshop 6cc on windows 8 all latest updates done when trying to crop photo or use clone stamp tool the photo's disappear which makes it impossible to use, photo's do comes back if I stop trying to crop or use clone tool but need to see the photo to use them

    Does turning off »Use Graphics Processor« in the Performance Preferences and restarting Photoshop have any bearing on the issue?

  • Can I use Photoshop Cs5 with windows 8? was told by tech guys at best buy that we couldn't.....

    can I use Photoshop Cs5 with windows 8? was told by tech guys at best buy that we couldn't.....

    You might want to check this thread. Some have had success with CS5 on Windows 8, others not so lucky.
    http://forums.adobe.com/message/4840878
    You can try and see for yourself,but I don't think the Best Buy techs were trying to upsell you.
    Gene

  • I want to create xml file using photoshop script and also i can easily add, modify, delete based on file name

    Hi,
    Please help me for this.
    I need to create XML file for mentioned below. when i run the photoshop script i need deatails for active document name, date, time and status.
    <?xml version="1.0" encoding="UTF-8"?>
    <sample>
    <filename>Cradboard_Boxes_Small.tif</filename>
    <date>today date</date>
    <starttime>now</starttime>
    <status>delivered</status>
    </sample>
    <sample>
    <filename>Cardboard_Boxes_Student_Vaue_Pack.jpg</filename>
    <date>today date</date>
    <starttime>now</starttime>
    <status>delivered</status>
    </sample>
    I need read that xml after creating and modify based on file name. i need to modify status after file finished.
    if the file name is already exist i want to modify or delete or add whatever i need.
    Kindly help me simple way

    You may want to look into getting Xtools ps-scripts - Browse Files at SourceForge.net then.  Most of the support is for ActionManager script code where XML code is use as an intermediate step.  There are quite a few Photoshop script in XTools .   Ross Huitt is an expert javascript programmer though is is fed up with Adobe's lack of support for Photoshop scripting particularly the bugs in ScriptUI he is still maintaining tool he  has created for us free of charge. Tools like Image Processor Pro. None of his scripts are save as binary so you can read all of his code there is a wealth of knowledge in there....
    Also there is a scripting forum Photoshop Scripting

  • How create indesign using Java Script

    I am new in indesign and want to create indesign application using JavaScript.
    When i use AppleScript to create Indesign Application i use this statement
    tell application "Adobe InDesign CS5.5"
    set myDocument to make document with properties
    end tell
    Indesign Application create sucessfully.
    How create Indesign Application using JavaScript ?
    or what is equivelent statement of ( tell application "Adobe InDesign CS5.5" ) in Java Script.
    There are some java scripting example given on forum or in sdk.These all example start with app.
    when I debug these java script using ExtendScript ToolKit 3.6 It give error on app (undefined app).I think this app ia application object.
    How create  indesign application object  app in javascript ?
    While this script run sucessfully when i put these script in C:\Program Files\Adobe\Adobe InDesign CS5.5\Scripts
    and to run these script use Scripts panel (choose Window > Utilities > Scripts), then double-click the script name in the Scripts panel in indesign application.But In this case first i start indesign application and then choose Window > Utilities > Scripts then double-click the script name in the Scripts panel.
    I want to create Indesign Application (instance) using JavaScript.When I run or (debug) my JavaScript in any javaScript tool like ExtendScript ToolKit 3.6 then Indesign application should start, like in Apple Script.
    Thanks

    Thanks Vamitul for reply
    For example when i run SelectObjects.jsx An InDesign CS5.5 JavaScript in ESTK  then message prompt "Target Adove Indesign CS5.5 is not running. Do you want to lanch." Then on click yes Indesign application start.
    I want to Know how indesign object "app" is created to start Indesign application on click yes.
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/indesign/cs55-docs/In DesignScripting/InDesign-ScriptingTutorial.pdf
    Like in VB to create indesign object we use CreateObject("InDesign.Application"). In javascript how create object say "app" of InDesign Application.
    For example if  i write
    var myDocument = app.documents.add();
    var myTextFrame = myDocument.pages.item(0).textFrames.add();
    myTextFrame.geometricBounds = ["6p", "6p", "24p", "24p"];
    myTextFrame.contents = "Hello World!";
    in a simple text file and save it with .js extention and to open this double click on this  it give error undefined "app".
    Source :Microsoft JScript runtime error
    So how define "app" or create indesign object ?
    Thanks

  • Only the last account is created when using this script in combination with a CSV

    Hi, I've got a weird problem when using this script:
    $Users = Import-Csv -Delimiter ";" -Path "......csv"  
    FOREACH ($User in $UserList) { $ User }
        $OU = $User.path
        $UPN = $User.UPN
        $Password = $User.password 
        $Detailedname = $User.firstname + " " + $User.Lastname 
        $UserFirstname = $User.Firstname 
        $FirstLetterFirstname = $UserFirstname.substring(0,1) 
        $SAM =  $User.UPN
        $Company = $User.company
        $Description = $User.description
        $AccountExpirationDate = $User.accountexpirationdate
    $params = @{ 'Name'=$Detailedname;
                 'SamAccountName'=$SAM;
                 'UserPrincipalName'=$SAM;
                 'DisplayName'=$Detailedname;
                 'GivenName'=$UserFirstname;
                 'Surname'=$User.Lastname;
                 'AccountPassword'=(ConvertTo-SecureString $Password -AsPlainText -Force);
                 'Enabled'=$True;
                 'PasswordNeverExpires'=$True;
                 'Path'=$OU;
                 'Company'=$Company;
                 'Description'=$Description;
                 'AccountExpirationDate'=$AccountExpirationDate }
    New-ADUser @params
    The CSV file has columns with the name: Lastname;Firstname;Password;Company;Description;UPN;path;AccountExpirationDate
    Script runs without errors, but only creates the last line in the CSV file. Anyone that can help me, of put me in the right direction? Should be great!
    Michiel
    the Netherlands

    Hi Michiel,
    You'll need to move $params and New-ADUser up into the foreach loop.
    EDIT: Also, remove the { $ User } that you have next to the foreach loop. You're also using $Users instead of $UserList.
    EDIT2: Here's a cleaned up version:
    $UserList = Import-Csv -Delimiter ";" -Path "......csv"
    FOREACH ($User in $UserList) {
    $OU = $User.path
    $UPN = $User.UPN
    $Password = $User.password
    $Detailedname = $User.firstname + " " + $User.Lastname
    $UserFirstname = $User.Firstname
    $FirstLetterFirstname = $UserFirstname.substring(0,1)
    $SAM = $User.UPN
    $Company = $User.company
    $Description = $User.description
    $AccountExpirationDate = $User.accountexpirationdate
    $params = @{ 'Name'=$Detailedname;
    'SamAccountName'=$SAM;
    'UserPrincipalName'=$SAM;
    'DisplayName'=$Detailedname;
    'GivenName'=$UserFirstname;
    'Surname'=$User.Lastname;
    'AccountPassword'=(ConvertTo-SecureString $Password -AsPlainText -Force);
    'Enabled'=$True;
    'PasswordNeverExpires'=$True;
    'Path'=$OU;
    'Company'=$Company;
    'Description'=$Description;
    'AccountExpirationDate'=$AccountExpirationDate
    New-ADUser @params
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • How to create database using shell script

    hai
    how to create database using shell script

    The documentation details the steps to create a database manually. Another option is to use DBCA to create the scripts. DBCA will give you a complete set of scripts that will create a database.
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref220

  • Create UDM using os script

    Hi Guys,
    I have been given the following task to be done asap, but have little issues, as i have read from the oracle docs we need to have os scripts to apply certain metrics which are user defined, i have following tasks but unable to get the scripts,
    Create a User Defined Metrics (UDM)  alerting when listener file is in Dbug mode
    Create a UDM alerting verifying Rman is using Rman catalogue
    Create a UDM alerting when WEB Logic is in debug mode
    Create a UDM alerting when WEB Logic when log rotation is not set
    I am using OEM 11g
    If any one has any scripts or any suggestions to do this, please share.
    Thanks and Regards,
    Littlefoot

    Hi 844375,
    I have created the same script which you have provided(seems like you and me have a similar thinking upto the commenting part), but the script provided seems to be incomplete, it is empty, first step of the script is empty, i.e "/tmp/udm_lsnrctl_script.sh" is not provided without which the next part is incomplete.
    following is the scripts i have created :
    1.
    UDM_LSNRCTL_DEBUG_CHECK
    TASK : To check if a listener is put in debug mode.
    Script used :
    >> STEP 1 : udm_lsnrctl_script.sh
    #The script to check if the listener is in debug mode
    #script by Littlefoot, version 1.0
    #Step 1 - file name be udm_lsnrctl_script.sh
    #Step 2 - use udm_lsnrctl_testrun.sh to fetch the listener names in debug mode
    #The below script will check for ASM instance
    for k in `ps -ef | grep pmon | grep asm* | awk '{print $8}' | awk -F "_" '{print $3}'`
    do
    echo $k 'inside for loop to get the ASM Home path'
    . oraenv <<-EOF
    $k
    EOF
    #If more than one listener then we need to use for loop
    #"lsnrctl show trc_level" is the command in to check the debug status
    for m in `ps -ef | grep inh | grep -v grep | grep "grid" |awk '{print $9}' `
    do
    echo $m 'inside for loop to check for ASM listeners'
    lsnrctl <<-EOF
    set current $m
    show trc_level
    exit
    EOF
    done
    echo 'outside for loop to check for ASM listeners'
    done
    echo 'outside for loop to get the ASM Home path'
    #This script will not TEST FOR +ASM1
    for i in `ps -ef | grep inh | grep -v grep |awk '{print $8}' | awk -F "/" '{print $6}' | grep -v tnslsnr`
    do
    echo $i 'inside for loop to get the non ASM home path'
    #`ps -ef | grep pm n | grep -v grep |awk '{print $8}' | awk -F "_" '{print $3}'`  #check this line once again
    #check the above line once again
    #check the above line once again
    . oraenv <<-EOF
    $i
    EOF
    cd $ORACLE_HOME
    for j in `ps -ef | grep inh | grep -v grep | grep -v "grid" |awk '{print $9}'| grep $i ` ###CHECK THIS LINE TOO CHECK IF THE FIRST LINE IS ALWAYS --LISTENER-- ONLY ELSE IT WILL RESULT WORNG OUTPUT
    ###THIS LINE CAN BE USED AS AN ALTERNATIVE tTO AVOBE LINE CHCEK AND PROCEEED
    #for j in `ps -ef | grep inh | grep -v grep |grep -v "LISTENER " |awk '{print $9}'`
    #To be more pricise
    #for j in `ps -ef | grep inh | grep -v grep |grep -v "grid" |awk '{print $9}'`
    do
    echo $j 'inside for loop to check non ASM listeners'
    lsnrctl <<-EOF
    set current $j
    show trc_level
    exit
    EOF
    done
    echo 'outside for loop  to check non ASM listeners'
    done
    echo 'outside for loop to get the non ASM home path'
    exit 0
    >> STEP 2 : udm_lsnrctl_testrun.sh
    #!/bin/ksh
    #The script to check if the listener is in debug mode
    #script by Harish, version 1
    #Step 1 - file name be udm_lsnrctl_script.sh
    #Step 2 - use udm_lsnrctl_testrun.sh to fetch the listener names in debug mode
    #This file to run the above script and store the output into another file to check/compare the required information
    #file name udm_lsnrctl_testrun.sh
    #Put the output of udm_lsnrctl_script.sh into udm_lsnrctl_debug_log.txt to check for listener names in debug mode
    date > /oracle/app/agent11g/scripts/udm_lsnrctl_debug_log.txt
    /oracle/app/agent11g/scripts/udm_lsnrctl_script.sh >> /oracle/app/agent11g/scripts/udm_lsnrctl_debug_log.txt
    FILE=/oracle/app/agent11g/scripts/udm_lsnrctl_debug_log.txt
    out_result=`grep -i "set to" $FILE  | grep -v off |awk '{print $1}'`
    #Check if output is null then echo Debug Disabled
    message1=' have the debug enabled '
    if [ -z "$out_result" ]
    then
    out_result='Disabled'
    #out_result=1
    oute='No listener'
    else
    oute=$out_result
    #out_result=2
    out_result='enabled'
    fi
    em_result=$out_result
    echo "em_result=$em_result"
    echo "em_message=$oute $message1 "
    exit 0
    2.
    UDM alerting verifying Rman is using Rman catalogue : has been addressed in other post of mine.
    3.
    UDM_WLS_DEBUG_CHECK
    Task : To check if the debug mode is enabled in the wls targets
    Script used :
    >> udm_wls_debug_check.sh : NOTE : the domain home path is to be put separately for each server
    cat /oracle/app/product/fmw/user_projects/domains/custcons_domain/bin/setDomainEnv.sh|grep debugFlag=  > udm_wls_debug_log.txt
    FILE=udm_wls_debug_log.txt
    out_result=`grep -i "true" $FILE`
    echo $out_result
    domain_name=`grep -i "/oracle/app/product" udm_wls_debug_check.sh | awk '{print $2}' | awk -F "/" '{print $8}'`
    echo $domain_name
    message1='have the debug enabled '
    if [ -z "$out_result" ]
    then
    out_result='Disabled'
    #out_result=1
    oute='No domain '
    else
    oute=$out_result
    #out_result=2
    out_result='enabled'
    oute=$domain_name
    fi
    #em_result=$out_result
    echo "em_result=$out_result"
    echo "em_message=$oute $message1 "
    exit 0
    4.
    UDM_WLS_LOGROTATION_CHECK
    TASK : To check if log rotation is enabled and not set more than 7 days
    Script used :
    >> udm_wls_logrotaion_check.sh :
    #!/bin/bash
    #The script to check if the log rotaion is enabled
    #Step 1 - file name udm_wls_debug_check.sh contains the domain path
    #Step 2 - use udm_wls_debug_check.sh to get the domain path and then get the config.xml file to check if logrotation id enabled
    #This file to run the above script to check th logrotaion is true/false
    #file name udm_wls_logrotaion_check.sh
    file_name=`cat /oracle/app/agent11g/scripts/udm_wls_debug_check.sh | grep setDomain | awk '{print $2}' | awk -F "/" '{print "/"$2"/"$3"/"$4"/"$5"/"$6"/"$7"/"$8"/config/config.xml"}'`
    rotation_type=`cat $file_name | grep rotation-type | awk -F ">" '{print $2}' | awk -F "<" '{print $1}'  | awk 'NR<2'`
    file_count=`cat $file_name | grep file-count | awk -F ">" '{print $2}' | awk -F "<" '{print $1}'  | awk 'NR<2'`
    domain_name=`grep -i "/oracle/app/product" udm_wls_debug_check.sh | awk '{print $2}' | awk -F "/" '{print $8}'`
    #echo $file_name
    #echo $rotation_type
    #echo $file_count
    if [ "$rotation_type" = "None" ]
    then
    #echo 'Disabled'
    out_result='Disabled'
    echo "em_message=$domain_name do not have log rotaion enabled"
    elif [[ "$file_count" -gt "7" ]]
    then
    #echo 'Greater than 7 files'
    out_result='Disabled'
    echo "em_message=$domain_name has logrotaion enabled with file count morethan 7"
    else
    #echo 'Enabled'
    out_result='Enabled'
    echo "em_message=$domain_name have log rotaion enabled "
    fi
    echo "em_result=$out_result"
    exit 0

  • Create user using CATT script

    hi,
    I have done catt script to create user in BW 3.5 ... now I am trying to crete the same script in BW 7.0......
    I have created catt script using SECATT transaction....
    I download the varient to .txt file
    [VARIANT] [DESCRIPTION] ZTEST898
    BDC field value
    *ECATTDEFAULT ztest898
    If I pass parameter directly , the script executing fine ...
    If I try to pass parameters through .....txt file ... it is giving error
    Variants that Match Selection Cannot Be Found
    help me please.
    Regards
    Ben

    1. Create a text file with the UDML to create a new user(s):
    DECLARE USER "NewUser" AS "NewUser" UPGRADE ID 1 FULL NAME {New User} PASSWORD '' PERIODICITY 90
         HAS ROLES (
              "Administrators",
              "XMLP_ADMIN" )
         DESCRIPTION {password = Empty}
         PRIVILEGES ( READ);
    Merge it with your your current repository using nQUDMLExec.exe
    E:\OracleBI\server\Bin>nQUDMLExec.exe -U Administrator -P Administrator -I E:\temp\NewUser.txt -B E:\temp\paint.rpd -O e:\temp\newrep.rpd
    Regards John
    http://obiee101.blogspot.com/

  • Using Photoshop script – open image in it's own profile?

    I Have a question about scripting;
    How do I open an image in Photoshop script in it's own color profile, when the working colorspace is different?
    It seems like it automatically opens in the current working colorpace.
    (I want to open images and make the conversion myself efterwards).
    /Calle

    What are the Color Settings on that machine?
    I have never noticed that opening files via Script would convert them to the Working Space, but my Color Settings are to »Preserve Embedded Profile« for all modes.

  • Creating website using Photoshop

    I created a website using Photoshop. I created the slices and
    exported html and images. I am now in Dreamweaver and am not 100%
    sure what to do. I have been watching several tutorials and read
    that you need to make div tags. I have a background image (notepad
    image) that I want to place text over for my main content. I'm not
    sure if I should create the text in Photoshop or in Dreamweaver? I
    know it will probably be a lot easier to edit if I did the content
    in Dreamweaver but I can't seem to get it right. Can someone
    explain how I do the div tags using CSS? Is it OK to use photoshop
    to create the text and if so, is it hard to edit? Please give me
    your thoughts.

    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:g4ufet$lo3$[email protected]..
    >>>I am now in Dreamweaver and am not 100% sure what
    to do
    >
    > I am. Go back to Photoshop and export (save for web)
    ONLY the graphics. NO
    > HTML. Then construct your site in DW. Photoshop and
    other graphic apps
    > create horrid HTML that will cause you countless
    problems.
    >
    > There is a tutorial on Adobe's site explaining how to go
    from a Fireworks
    > comp to a properly designed web page. I don't have the
    link but someone
    > here will probably post it. In the mean time go to
    Adobe's site and search
    > on Fireworks comp.
    >
    > --
    >
    > Walt
    >
    >
    > "lpaquinhand" <[email protected]> wrote
    in message
    > news:g4ubo4$i15$[email protected]..
    >>I created a website using Photoshop. I created the
    slices and exported
    >>html
    >> and images. I am now in Dreamweaver and am not 100%
    sure what to do. I
    >> have
    >> been watching several tutorials and read that you
    need to make div tags.
    >> I
    >> have a background image (notepad image) that I want
    to place text over
    >> for my
    >> main content. I'm not sure if I should create the
    text in Photoshop or
    >> in
    >> Dreamweaver? I know it will probably be a lot easier
    to edit if I did
    >> the
    >> content in Dreamweaver but I can't seem to get it
    right. Can someone
    >> explain
    >> how I do the div tags using CSS? Is it OK to use
    photoshop to create the
    >> text
    >> and if so, is it hard to edit? Please give me your
    thoughts.
    >>
    >
    >

  • Strategy for using device on Mac & Windows?

    I just started a new job and am back in the wonderful world of Windows. I still use macs [PowerPC of various types] at home and will try to get a MacBook at work after I have been there a little while.
    Meanwhile, however, I am stuck with deciding how to go forward with syncing:
    I can get all my contacts syncing via Plaxo.
    That leaves me with my appointments:
    I have not currently worked-out how to get my a mac through the corporate VPN, so I can't try any of the solutions that claim to be able to sync with an Exchange Server.
    I tried the option of using my Sony Ericsson K750i as an intermediary, but that screwed things up because it only supports a single calendar. Otherwise it worked quite well. (I guess I could merge my personal and work activities into one calendar - after all they are one and the same on the phone - but that seems a last resort especially as I don't want to load-up all my personal appointments to Exchange.)
    Any ideas would be gratefully received!

    I have just discovered that I can attach my iTouch ( which is used on a Mac ) to both a Mac & Windows without having to 're-format' . One this is great as I was under the impression that you could only use an iPod on only one or the other 'but' not both with-out re-formatting.
    All new(er) iPods come Windows formatted straight out of the box, and as a Mac can read a Windows formatted iPod that's why you can use it on both platforms without the need to reformat. So maybe yours is still Windows formatted? Some folks who use Macs leave them like that.
    Older iPods (I think) were Mac formatted out of the box and so wouldn't work natively on Windows because Mac formatted iPods cannot be read by Windows without the need to use 3rd party software, so the answer is if you want to use it on both platforms without using additional software, then leave it Windows formatted.
    Various iTunes/iPod updates along the way have nothing to do with this.
    Hope this sheds some light on your question.

Maybe you are looking for

  • How to find out that the card in a given NIDAQ slot is a DSA card?

    In the description of DAQ_Op(...) function in the traditional NIDAQ function reference one reads: "buffer" is an integer array. "buffer" has a length equal to or greater than count. When DAQ_Op returns with an error number equal to zero, buffer conta

  • Can an LCD TV work as a Broadcast Monitor thru Matrox Mini for Color?

    Hey guys, since the actual Broadcast monitors are so expensive, will an LCD tv work as a broadcast monitor thru Matrox Mini for Apple Color? Thanks, CJ

  • EMac Monitor Calibration Limits!

    I have just invested in the ColorEyes Monitor Profiling system for this eMac and a G4 but find that the eMac's built in monitor has no independant control of anything other than contrast and brightness. For serious calibration outside of using the Di

  • HT5463 Do Not Disturb feature not working?

    I have upgraded to iPhone 5 but no matter what I do with the settings on the Do Not Disturb calls still come through.  Is this a desigb

  • How Unpacking a tar.gz file in unix?

    Please...help me....i know that it is no a unix forum...but i don't know how reach it....and i wish to unUnpacking a tar.gz file in unix that are some java programs.... Thanks a lot... Mary