Change include file with click

how could i,
with a click on a button,
switch an include file with another include file.?
like, a list of categories to the right
and the code for a gallery to the left,
the IMG SOURCE code is the include,
and so when i click on an item in the categories list, the img sources include changes to the new one
please

Changing an included file will require javascript because you need client side interaction.  Have you considered Spry Datasets?
The following is a video that shows a basic example with the Spry Data sets:
http://www.adobe.com/designcenter/dreamweaver/articles/lrvid4047_dw.html
See if that is something that you are looking for.

Similar Messages

  • Change include file paths

    change include file paths

    Hi Palm566,
    Thank you for posting in MSDN forum.
    About you issue, could you please tell me more detail message about your issue?
    For example, where did you want to change the file path?
    What file you want to change the path?
    To further help you solve this issue, I suggest you can share more message about your issue.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Include file with variable

    Hi,
              When I a include of a file in a jsp file it could look like this:
              <%@ include file="/jsp/ram01/login_ram2.jsp" %>
              Would it be possible to replace file value with a variable ? I tried but it
              does not seem to work.
              ...Thanks Per
              

    Hi,
              The include directive (<%@ include ... %>) is a translation-time activity which
              is not processed in the context of a particular request (although JSP
              compilation is normally done in the context of a request being submitted for
              the page). As Ruslan points out, the include action (<jsp:include .../>) does
              allow a jsp expression for the page specification -- this is because the
              include action is a runtime inclusion. The short story is that <%@ include ...
              %> is not an abbreviation for <jsp:include ... /> -- they have different
              semantics.
              Hope this clears up any confusion,
              Robert
              Per Lovdinger wrote:
              > Hi,
              > When I a include of a file in a jsp file it could look like this:
              >
              > <%@ include file="/jsp/ram01/login_ram2.jsp" %>
              >
              > Would it be possible to replace file value with a variable ? I tried but it
              > does not seem to work.
              >
              > ...Thanks Per
              

  • Changing Path file with iterations over loop

     Hi there -- I need some help with changing a file name with every iteration of a for loop, eg;
    Iteration 1, file path = iteration1.lvm
    Iteration 2, file path = iteration2.lvm
    etc
    etc...
    I've attached a picture of the loop and the file name, along with the vi.
    Please help!
    Thanks
    Attachments:
    NI Help.png ‏3743 KB
    Discrete Scan.vi ‏1035 KB

    Hi Maryam,
    for one solution see the attached picture. In the Express vi which you are use, you can use the option to automatically create new filenames if the connected filename already exists.
    Mike
    Message Edited by MikeS81 on 04-10-2008 02:09 PM
    Attachments:
    Unbenannt.PNG ‏15 KB

  • Problems using a php include file with an Add-on Domain.

    Hello,
    I am having an issue getting a php include file to work with a new add-on domain I am working on getting up and running.
    This include file is one that supplies the rest of the php code to a contact form page.  It works as it should for my original domain, same file no difference.  I made sure that the files hosted on the remote server had all read, write, execute permissions turned on.
    I have tried putting the include file in several different locations as a test, such as:
    I don't remember the exact name of the include file at the moment, as I'm at work so I will designate it below as 'includefile.php'.
    file path for add-on domain - ../public_html/lorentzpainting/includes/includefile.php
    alternatives I tried moving the file to - ../public_html/lorentzpainting/includefile.php
    When none of those options worked, I tried just pointing the path towards other places on the server that have the include file such as:
    ../public_html/includes/includefile.php
    ../public_html/includefile.php
    What can I do here?  Should I just give up on using the include and put all the code back in the page?  Doesn't seem like it should be this complicated, it works perfectly fine for my other site.. and still does.
    Thanks ahead of time to those who may assist me.

    here is the contents of the include file:
    <?php
    if (isset($_SERVER['SCRIPT_NAME']) && strpos($_SERVER['SCRIPT_NAME'],
    '.inc.php')) exit;
    // remove escape characters from POST array
    if (PHP_VERSION < 6 && get_magic_quotes_gpc()) {
      function stripslashes_deep($value) {
        $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
        return $value;
      $_POST = array_map('stripslashes_deep', $_POST);
      // assume that there is nothing suspect
        $suspect = false;
        // create a pattern to locate suspect phrases
        $pattern = '/Content-Type:|Bcc:|Cc:/i';
          // function to check for suspect phrases
      function isSuspect($val, $pattern, &$suspect) {
        // if the variable is an array, loop through each element
        // and pass it recursively back to the same function
        if (is_array($val)) {
          foreach ($val as $item) {
            isSuspect($item, $pattern, $suspect);
        else {
          // if one of the suspect phrases is found, set Boolean to true
          if (preg_match($pattern, $val)) {
            $suspect = true;
    //check the $_POST array and any subarrays for suspect content
    isSuspect($_POST, $pattern, $suspect);
        if (!empty($_POST['url'])) {
            $suspect = true;
        if ($suspect) {
            $mailSent = false;
            unset($missing);
        } else {
        //process the $_POST variables
        foreach ($_POST as $key => $value) {
            // assign to temporary variable and strip whitespace if not an array
            $temp = is_array($value) ? $value : trim($value);
            // if empty and required, add to $missing array
            if (empty($temp) && in_array($key, $required)) {
                array_push($missing, $key);
            } elseif (in_array($key, $expected)) {
                // otherwise, assign to a variable of the same name as $key
                ${$key} = $temp;
        //validate the email address
        if (!empty($email)) {
            // regex to identify illegal characters in email address
    $checkEmail = '/^[^@]+@[^\s\r\n\'";,@%]+$/';
    //reject the email address if it doesn't match
    if (!preg_match($checkEmail, $email)) {
        $suspect = true;
        $mailSent = false;
        unset($missing);
    //go ahead only if all required fields OK
        if (!$suspect && empty($missing)) {
    //initialize the $message variable
            $message = '';
    // loop through the $expected array
            foreach($expected as $item) {
    // assign the value of the current item to $val
                if (isset(${$item}) && !empty(${$item})) {
                    $val = ${$item};
                } else {
    // if it has no value, assign 'Not selected'
                    $val = 'Not selected';
    // if an array, expand as comma-sparated string
                if (is_array($val)) {
                    $val = implode(',', $val);
    // add label and value to the message body
      $message .= ucfirst($item).": $val\r\n\r\n";
    //limit line length to 70 characters
        $message = wordwrap($message, 70);
    //create Reply-To header
        if (!empty($email)) {
            $headers .= "\r\nReply-To: $email";
    // send it
        $mailSent = mail($to, $subject, $message, $headers);
        if ($mailSent) {
    // $missing is no longer needed if the email is sent, so unset it
            unset($missing); echo('Thank you for contacting Common Wealth Web Solutions');
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>

  • Change Open With for all files with a specific extension

    Hi, I've been using OS X for quite some time, but more recently cannot see how you do the following which is proving frustrating:
    * Open Get Info for a file,
    * Use the drop down under Open With to choose Other,
    * Select an appropriate application that wasn't on the drop down list (in this case Smultron text editor for CSV files),
    * Press the Change All button and the drop down turns back to Excel which was the previous default.
    So basically, how do I change all files with CSV extension to Smultron when Smultron wasn't in the list of Open With items and I have to use Other from the list. This is repeatable for any file type with any application that isn't listed and is on both my iMac and my work's MacBook. Try it yourself and you'll see what I mean!!
    Thanks

    Stuart Mchattie wrote:
    Thanks NeroWolf,
    Your solution does work for that single file, but doesn't change the system wide association of that file extension with a particular application. It is because this works that I believe the problem I am having is uncircumventable and is in fact a bug in the OS. Could anyone else confirm this?
    Cheers,
    Stuart
    It might be a bug. What I found is that the icon does not change unless I log out/in or reboot, even when the app normally puts an icon on the file.
    For example if I change an audio file to always open with VLC, it does even though the icon remains as before. However, even though clicking plays the audio with VLC, if I right click the file and select "Open With" it still says iTunes (app) default which is incorrect.
    Message was edited by: nerowolfe

  • UIX: Problem with the include file

    Hello,
    I am totally lost here. I am trying to follow the example of including a code snippet in an uix file from the user guide at: http://download-west.oracle.com/otn_hosted_doc/jdeveloper/904preview/uixhelp/uixdevguide/includes.html
    The parent file that I have is as follows ( test.uix )
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    </provider>
    <contents>
    <document>
    <metaContainer>
    <!-- Set the page title -->
    <head title="test"/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <form name="form0">
    <contents>
    <pageLayout title="test">
    <corporateBranding>
    <image source="" destination="http://oracle.com"/>
    </corporateBranding>
    <productBranding>
    <image source="" destination="http://oracle.com"/>
    </productBranding>
    <tabs>
    <tabBar>
    <contents>
    <link text="tab1" destination=""/>
    </contents>
    </tabBar>
    </tabs>
    <pageHeader>
    <globalHeader>
    <contents>
    <link text="page header" destination=""/>
    </contents>
    </globalHeader>
    </pageHeader>
    <globalButtons>
    <include ctrl:node="testinclude"/>
    </globalButtons>
    <copyright>
    <styledText text="Copyright Oracle 2006"
    styleClass="OraCopyright"/>
    </copyright>
    <privacy>
    <link text="Privacy Statement" destination=""/>
    </privacy>
    <contents/>
    <pageButtons/>
    <start/>
    <end/>
    <about/>
    </pageLayout>
    </contents>
    </form>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    </handlers>
    </page>
    The include file that I have is as follows ( testinclude.uix )
    <?xml version="1.0" encoding="windows-1252"?>
    <globalButtonBar xmlns="http://xmlns.oracle.com/uix/ui">
    <contents>
    <globalButton text="first button"/>
    <globalButton text="second button"/>
    </contents>
    </globalButtonBar>
    When I try to compile the test.uix ( which is my parent file ) I get the following error message:
    Warning(45,59): test.uix: Parsing error, line 45, column 59: attributes in the namespace:http://xmlns.oracle.com/uix/ui are only allowed with the "data" expressionLanguage
    How can I resolve this ?
    This is what I am trying to do - and maybe there is a better way:
    I have an application with two tabs, each tab has two (or more) subTabs/PageHeaders. Each pageHeader has a sideNav with atleast three elements. Each of the element goes to a differnt page. So far I have managed to create a template for the tabs and the pageHeaders. I do the switch for the pageheaders using the switcher element with the tabSelectedIndex as my "case". However I could not figure out a way to do the switcher based on the tab and the page header selected ( two conditions ), hence I thought of writing an include file with the sideNav and including it in the code corresponding to the page headers ( the code that I have posted is a very simple globalButton include - this is the most simplest thing that I could think of to experiment )
    Thanks !

    Perhaps if you try like this
    <sideBar rendered="${uix.rootAttr.indiceTopo != -1}" width="220">
    <contents>
    <include rendered="${uix.rootAttr.indiceTopo == 0}"
    node="${ctrl:parsePage(uix,'/MeuAmbiente/menuMeuAmbiente')}"/>
    <include rendered="${uix.rootAttr.indiceTopo == 1}"
    node="${ctrl:parsePage(uix,'/Declaracao/menuDeclaracao')}"/>
    note , this include tag is inside one mainTemplate.uit and see the rendered atribute is passed by parameter to this template.
    As a metter of fact menuMeuAmbiente.uix is only the stiledlist tag and it's styledItens, i have one menu<Module>.uix for each superior tab
    I hope this helps;

  • Include directive with import tags how to

    I mostly the same classes throughout many of my jsp pages. If I use the include directive to import the classes - it doesn't work. What is the proper directive / way / tag to include those tags? Sorry if I am not wording this properly. Here's an example:
    most of my classes use the following classes so I use the @import tag:
    <%@page import="web.urls.DisplayUrls"%>
    <%@page import = "web.beanObjects.display.DisplayPage"%>
    <%@page import="web.db.admin.TypesDbHandler"%>
    <%@page import="web.db.admin.CategoryDbHandler"%>
    I would like to put all of those in one file and only have one line of code so I don't have to cut & paste into every jsp page whenever there's a change:
    <%@include file="/include/imports.jsp"%>
    Unfortunately this isn't working, it's not recognizing the classes...
    Thanks!

    hi,
    since both the files are located in the same folder, why don't you try the following:
    <%@ include file="hello.jsp" %>
    hope this helps

  • Error save bios file with GPU-Z

    I updated the bios with the gop file provided by you (10-03-14) 220.rar, but with gpu-z I can not 'to save it because out bios reading not supported on this device. Do you have any solution, do you think the bios has been updated successfully. Thank you
    Request Uefi/gop bios
    1) Geforce 660 Ti 3gb Oc
    2) S/N 602-V282 14SB1209192955
    3) Bios : 80.04.4B.00.A2(P2004-0001)
    Use the attached.
    Decompress the provided .rar archive with Winrar: http://www.rarlab.com/download.htm
    Then flash the included file with Nvflash for dos: http://www.guru3d.com/files_details/nvflash_download.html
    To do so rename the included file to .rom and create a dos bootstick (https://forum-en.msi.com/index.php?topic=165175.0)
    Put nvflash and the vbios file on it and boot from the stick. Then type nvflash -4 -5 -6 gop.rom (if renamed vbios that way) and hit enter. Confirm the questions and let the tool flash.
    * 220.rar (119.98 kB - downloaded 8 times.)

    You requested the vbios in two threads, now you opened another thread and also bumped it. Please don't open multiple topics on the same issue and don't bump posts: >>Please read and comply with the Forum Rules.<<
    Did you follow the instiructions and is the card fully working?

  • How to activate my Include file

    Hi,
    I have an main file whish has a variable declared, we are using that variable in another include file, when i use that variablein the second include file and tried activate the second include file. It comes out with an error saying that 'variable not found'.
    How can i activate my include file with the variable declared?,
    Appreciate your help.
    Thanks

    Hi
    Your include program must be an include of a main program and the data declaration should have been done before the include statement.
    e.g.
    DATA: gv_var TYPE i .
    INCLUDE <my_include> .
    That way, when you want to activate your include it asks the main program to be considered as Nablan mentioned.
    *--Serdar

  • How to build a tuxedo client execute file with C++Builder?

    Hi,all.
    I can add include file with #include.Add include path and lib path to project option.Add
    libengine.lib,libfml.lib,libfml32.lib,libtux.lib to project file.I can build the
    project without error.And communicate with the local tuxedo server successfully.But
    I've failed to communicate with a remote tuxedo server.For I know that use buildclient
    -w to build a C windows client file.How to build a GUI client project with C++builder?
    Thanks.
    david

    David,
    For a /WS client, you need a different set of libraries than those you have listed.
    To see which, run buildclient -w -v
    Regards,
    Peter.
    david wrote:
    Hi,all.
    I can add include file with #include.Add include path and lib path to project option.Add
    libengine.lib,libfml.lib,libfml32.lib,libtux.lib to project file.I can build the
    project without error.And communicate with the local tuxedo server successfully.But
    I've failed to communicate with a remote tuxedo server.For I know that use buildclient
    -w to build a C windows client file.How to build a GUI client project with C++builder?
    Thanks.
    david

  • Can I change the File name of pics when capturing with iPhoto?

    Hi, I am a new user of Macbook and Mac OS, so, maybe this is a stupid issue.
    I have a sony cybershot and I was wondering if when I capture my pics from the camera with iPhoto I could change the name of the picture file?....or the filename will always be the one of the camera (f.e: DSCXXXXX) or I will have to change the name manually using Finder.
    I ask this because when I used to connect my camera into my old pc, windows activated the camera wizard and I could name all the pictures filename as the same and the wizard just capture them to my HD with that name just adding numbers (f.e: I named Miami trip, and the wizard named all of them Miami Trip 001, Miami Trip 002, and so on)
    Thank you

    kk74974
    You'll need to rename the files before importing them. So. move the files from the camera to a folder on the desktop (either by drag and drop or using Image Capture) and then use a file renaming utility such as  FileList to rename the files. Then continue your import. (iPhoto -> File -> Import to Library)
    The reason for this is because Filenames are irrelevant in iPhoto. You can add titles to the Photos, and, on export, use those titles as Filenames (check the possibilities in the File -> Export dialogue). You can also Batch Title photos using the Photos -> Batch Change command. This is what I do - on Import I name the Event (Italy 07) then when the pics are in use the Batch Change command to title the pics.
    Are you doing this to make your pics easier to find? There are three ways (at least) to get files from the iPhoto Window.
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser. Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Also, for 10.5 users: If you use the extended Open or Attach dialogue (with Column View) you can scroll to the bottom of the Shortcuts and find the Media browser there. Select any pic you want from there.
    Regards
    TD

  • Can't change all files to open with CS2 with CS3 installed

    I have InDesign CS2 and CS3 installed on my macbook (10.5). CS3 is buggy to the point where its unusable, but I need it installed because once in awhile I receive files saved in that format.
    I wanted to change, through any Get Info window, all Indesign files to Open With CS2 instead of CS3. Problem is, whenever I hit "apply to all files" the OS just instantly changes the program back to CS3.
    Anyone else having this problem?

    Let me be a bit clearer.
    When I installed CS3, it switched the "Open With" program association of all my CS2 files to CS3. This means the icons for all my CS2 files changed to CS3 icons. And when I double click on my CS2 files, they open in CS3, even if I already have CS2 open. If I have CS2 open, the system just starts opening CS3.
    Worse yet, upon installing CS3, all of my CS2 files were CHANGED to CS3 files (looking under "kind" in the "info" windows.
    I had thought I could just change all INDD files to asssociate with CS2, but when I go to "Get Info" on a file (CS2 or 3, doesn't matter which), and change the "Open with" to CS2, and hit "Change All", the "Open With" Just changes right back to CS3. Augh.
    For now, I just use the "Open" dialogue in CS2 or drag and drop the files. Pain in the rear. So I thought I'd post here.
    And though I don't want this to be a discussion of whether CS3 is buggy or not, I'll just say that my system was plagued by the CS3/Leopard NavSvcs and Hide bugs, (only a problem in Mac OS 10.5), both of which have been recognized by Apple and Adobe, as well as thoroughly blogged about by Tim Cole and MacFixit, and countless others.
    My favorite is this from the InDesign 5.0.2 Readme file:
    This update does not address recently identified issues running Adobe InDesign CS3 on Mac OS
    X Leopard (v10.5.1). Known issues include the following:
    Users are unable to hide InDesign CS3 using the cmd+h keyboard shortcut.
    InDesign CS3 may unexpectedly quit when using the Place, Save, Save As or Export
    commands using either the OS or Adobe dialog boxes.
    Unfortunately, there are no workarounds for these known issues.
    Yes, that's right. I'm one of those lucky folks who's experiencing the known bug where InDesign CS3 crashes when you try to open or save a file. I'm not a troll, I just simply can't use it! Haha.
    http://creativebits.org/leopard_vs_indesign_crashes_on_open_import_export_save_and_print
    http://blogs.adobe.com/indesignchannel/2008/02/indesign_leopard_update_vii.html
    http://discussions.apple.com/thread.jspa?threadID=1484712&tstart=6

  • Flash files with right click imported in dreamweaver files

    Flash files created with Captivate which contain rightclick
    functionality are imported to html files created in Dreamweaver. In
    other words, I don't use the html created by Captivate but another
    html file to build up a whole course. But now a couple of those
    flash files contain a right click and obviously I have to adjust
    the dreamweaver file with some of the script that William Heinz has
    created. I am not an HTML expert and I am not 100% confident that I
    can do with just endless try&error. Could anyone give me some
    hints?
    I suppose I need to use the second bit of William's article
    "the more complex requirement".
    When I insert the flash file this is what I get: (This is
    where I am suppose to make the changes????)
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0','widt h','746','height','591','title','Schedule
    Let
    Me','vspace','5','src','Resources/Sched_LM_skin','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','Resources/Sched_LM_skin'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="746" height="591" vspace="5" title="Schedule Let Me">
    <param name="movie" value="Resources/Sched_LM_skin.swf"
    />
    <param name="quality" value="high" />
    <embed src="Resources/Sched_LM_skin.swf" width="746"
    height="591" vspace="5" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash"></embed>
    </object></noscript>
    I am not sure what to do with the "<Body
    onload='javascript:init()..... "etc as suggested by William.
    Thanks for any advice on this!!!

    I hope there is one person out there who can help me with
    this issue.
    I have started from scratch and created a blank html with
    dreamweaver and inserted the flash file (with right click
    animation) created with Captivate.
    Then I made the adjustments as per Heinz and also included a
    ID=Captivate1 as the RightClick.js refers to that.
    The main difference between this html file and the html file
    created with Captivate, is that the Captivate one also has
    writedocument bit.
    Anyway, is there anybody in the world who can give me
    atip/hint/suggestion?????

  • Itunes 10.6.1.7 problem: when I change the file "media type" from 'Music' to 'Podcast' the file disapears from ITUNES. I do this via (1) right click, (2) select 'Get Info', (3) select 'options' tab, and (4) change media type. What is the problem?

    Itunes 10.6.1.7 problem: when I change the file "media type" from 'Music' to 'Podcast' the file disapears from ITUNES. I do this via (1) right click, (2) select 'Get Info', (3) select 'options' tab, and (4) change media type. What is the problem?

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

Maybe you are looking for

  • How can i create a Global Temporary Table inside a Stored Procedure....

    Hi... I need to create a Global Temporary Table inside a Stored Procedure.... I have no idea how to do that.... Please....if u can send me a sample, send to me.... Thanks a lot

  • BitmapData.draw is not rendering contents outside visible portion of Canvas

    My application has a Canvas with a bunch of elements on it and which has a scrollbar to see the full contents of it, i.e. the Canvas has a height of 200px, but the objects contained within extend past the 200px all the way to 400px. When I pass this

  • Strange phenomenon in grid view: Index numbers shown, but no pictures

    With some keywords the picture count is higher than the number of pictures (files) actually shown. In the film strip you firstly see pictures with index numbers, then you see only index numbers without a picture (a blank field). Does anybody has an i

  • How to config NACE to print for VA02 ?

    Hello gurus, In the transaction VA02 I need to print a billing request . but I do not know how to add new message type in the transaction NACE . ( document type Deb.MemoReq. f.Ctrct) . And in my system , when I use VA02, header output ...there is not

  • Move ame/pp preview folder

    I am running AME and PP CC 2014 on Windows 7 x64.  I have a folder C:\Users\%username%\Documents\Adobe\Adobe Media Encoder\Adobe Adobe Media Encoder Preview Files\8.PRV\ which fills my SSD very quickly with over 40GB of files with a short 40 minute e