Trying to figure out this error

I have a Flex website that I created and I'm getting the
following error when I try to call to my ColdFusion RemoteObjects:
[RPC Fault faultString="Send failed"
faultCode="Client.Error.MessageSend"
faultDetail="Channel.Connect.Failed error
NetConnection.Call.Failed: HTTP: Failed: url: '
http://reevespro.com/flex2gateway/'"
I haven't a clue where or to fix. And I have no idea why it's
trying to call flex2gateway, the directory doesn't exist. Anyone
have a clue?
Thanks

Hi,
If you are using the ColdFusion adapter for BlazeDS/LCDS,
please open remoting-config.xml and see which channel your Remoting
destination is using. In services-config.xml, you should be able to
find channel used above configured. You should be modifying the end
point URL of the channel.
Hope this helps.

Similar Messages

  • Trying to figure out this setup...

    I currently have an Airport Express (AX) from a few years back.  I'm interested in getting the new Airport Extreme (AE) for improved range and speeds, guest network, etc.
    My cable internet enters my house right by my home theater.  So, I have the modem there plugged into my AX.  My Mac across the room gets wireless from the AX (along with our iDevices), and sends Airplay back to the AX which is connected to my stereo.
    If I put in an AE after my modem, it will then put out the network for my Mac, and I will have my AX right next to it for Airplay.  Does it make sense to have the AE and AX next to each other?  Is there any easier way to setup Airplay?  I feel like it's a waste to have the AX right there, rather than using it somewhere else in the house to extend the network, but I can't figure out a better setup.
    Thanks for any and all help!!!
    Brian

    Do you mean connect the AE and AX via ethernet?
    Yes
    Is Airplay then going through the AE to the AX?
    AirPlay goes through the main router first before it reaches the AX, no matter whether you are using wireless or Ethernet to connect.
    Will the wireless on the AX then be disabled somehow, since the AE will be putting out the network?
    There's no reason to have two routers that are close together both putting out a wireless signal, so the wireless on the AX would be disabled to avoid the potential for wireless interference that is likely to occur when two wireless routers are in close proximity.

  • I keep getting different errors when i try to upgrade why? i have been 5 hours trying to figure out this ? im soo freaked

    help please.
    im on firmwere 4.3.5 im trying to go up to 5.0...

    Windows 7 includes DirectX 11 in its baseline and it is not necessary to install another version of it.  Your problems may be caused by the installation of the version of DirectX you installed.  Uninstall the one you installed and see if you
    still have the errors.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Trying to figure out, "Unknown Error Occurred (4280)

    I've been trying to burn discs for months without any success. Any help would be much appreciated. These are the specs of my CD Rom Drive:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    MEDIONPC AWRDACPI
    iTunes 7.2.0.35
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    LowerFilters: PxHelp20 (2.0.0.0), AFS2K (3.1.21.0), ASAPIW2K (6.0.0.1), PFC (2.5.0.196), MXLW2K (1.0.1.104), CDR4_XP (8.0.0.212),
    UpperFilters: GEARAspiWDM (2.0.6.1), Cdralw2k (8.0.0.212),
    Current user is an administrator.
    Video Display Information:
    GeForce4 MX 440 with AGP8X
    Connected Device Information:
    DiskDrive, ST3120022A, Bus Type ATA, Bus Address [0,0]
    DiskDrive, Medion Flash XL MMC/SD USB Device, Bus Type USB
    DiskDrive, Medion Flash XL CF USB Device, Bus Type USB
    DiskDrive, Medion Flash XL MS USB Device, Bus Type USB
    DiskDrive, Medion Flash XL SM USB Device, Bus Type USB
    CDROM, PIONEER DVD-RW DVR-105, Bus Type ATA, Bus Address [0,0]
    CDROM, SONY DVD-ROM DDU1612, Bus Type ATA, Bus Address [1,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    E: SONY DVD-ROM DDU1612, Rev DYS1
    Drive is empty.
    F: PIONEER DVD-RW DVR-105, Rev 1.21
    Drive is empty.
    The last failed audio CD burn had error code 4280(0x000010b8). It happened on drive F: PIONEER DVD-RW DVR-105 on CDR media at speed 4X.
      Windows XP  

    Hi,
    If you are using the ColdFusion adapter for BlazeDS/LCDS,
    please open remoting-config.xml and see which channel your Remoting
    destination is using. In services-config.xml, you should be able to
    find channel used above configured. You should be modifying the end
    point URL of the channel.
    Hope this helps.

  • Can't figure out this error...

    The assignment is to create a program that uses a class to store information about DVDs and then diplay the information.
    One error is "cannot find symbol, symbol: constructor Dvd(), location: class Dvd, Dvd mydvd = new Dvd();
    The other error is "cannot find symbol, symbol method calculateValue(), location class DvdTest, System.out.println("The value in inventory is $", calculateValue() );
    Here's my code:
    {code// EmployeeInfo class created by Michelle Groves
    // Last edited April12 09
    public class DvdTest
       public static void main(String args [])
    Dvd mydvd = new Dvd();
    Dvd[] prodArray = new Dvd[2]; // creat an array
    prodArray[0] = new Dvd( 231562, 7.49, 2, "Cars" );
    prodArray[1] = new Dvd( 231562, 7.49, 2, "Toy Story" );
    // Displays first element's info
    System.out.println("The stock number is " + prodArray[0].getstockedDvds());
    System.out.println("Priced at " + prodArray[0].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[0].getstockedDvds());
    System.out.println("The title is " + prodArray[0].getdvdName());
    // Displays second element's info
    System.out.println("The stock number is " + prodArray[1].getstockedDvds());
    System.out.println("Priced at " + prodArray[1].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[1].getstockedDvds());
    System.out.println("The title is " + prodArray[1].getdvdName());
    System.out.println("The value in inventory is $", calculateValue() );
    } //end main
    } // end class
    class Dvd
    private int dvdNumber; // DVD Product Number
    private double dvdPrice; // price of DVD
    private double stockedDvds; // number of units in stock
    private String dvdName; // name of DVD
    public Dvd( int dvdNumber, double dvdPrice, double stockedDvds,
    String dvdName ) // constructor for dvd
    dvdNumber = 0;
    dvdPrice = 0.0;
    stockedDvds = 0.0;
    dvdName = "";
    } // end constructor
    // method to set DVD number
    public void setdvdNumber( int dvdNumber )
    dvdNumber = dvdNumber; // store DVD number
    } // end method setdvdNumber
    // method to retrieve DVD number
    public double getdvdNumber()
    return dvdNumber;
    } // end method getdvdNumber
    // method to set DVD price
    public void setdvdPrice( double dvdPrice )
    dvdPrice = dvdPrice;
    } // end method setdvdPrice
    // method to retrieve DVD price
    public double getdvdPrice()
    return dvdPrice;
    } // end method getdvdPrice
    // method to set stocked number of DVDs
    public void setstockedDvds( double stockedDvds )
    stockedDvds = stockedDvds;
    } // end method setstockedDvds
    // method to retrieve stocked number of DVDs
    public double getstockedDvds()
    return stockedDvds;
    } // end method getstockedDvds
    // method to set DVD Name
    public void setdvdName( String dvdName )
    dvdName = dvdName;
    } // end method setdvdName
    // method to retrieve DVD name
    public String getdvdName()
    return dvdName;
    } // end method getstockedDvds
    // method to calculate pay for week
    public double calculateValue()
    return dvdPrice * stockedDvds;
    } // end method total
    } // end class

    Here's my code a little more readable:
    // EmployeeInfo class created by Michelle Groves
    // Last edited April12 09
    public class DvdTest
    public static void main(String args [])
    Dvd mydvd = new Dvd();
    Dvd[] prodArray = new Dvd[2]; // creat an array
    prodArray[0] = new Dvd( 231562, 7.49, 2, "Cars" );
    prodArray[1] = new Dvd( 231562, 7.49, 2, "Toy Story" );
    // Displays first element's info
    System.out.println("The stock number is " + prodArray[0].getstockedDvds());
    System.out.println("Priced at " + prodArray[0].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[0].getstockedDvds());
    System.out.println("The title is " + prodArray[0].getdvdName());
    // Displays second element's info
    System.out.println("The stock number is " + prodArray[1].getstockedDvds());
    System.out.println("Priced at " + prodArray[1].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[1].getstockedDvds());
    System.out.println("The title is " + prodArray[1].getdvdName());
    System.out.println("The value in inventory is $", calculateValue() );
    } //end main
    } // end class
    class Dvd
    private int dvdNumber; // DVD Product Number
    private double dvdPrice; // price of DVD
    private double stockedDvds; // number of units in stock
    private String dvdName; // name of DVD
    public Dvd( int dvdNumber, double dvdPrice, double stockedDvds,
    String dvdName ) // constructor for dvd
    dvdNumber = 0;
    dvdPrice = 0.0;
    stockedDvds = 0.0;
    dvdName = "";
    } // end constructor
    // method to set DVD number
    public void setdvdNumber( int dvdNumber )
    dvdNumber = dvdNumber; // store DVD number
    } // end method setdvdNumber
    // method to retrieve DVD number
    public double getdvdNumber()
    return dvdNumber;
    } // end method getdvdNumber
    // method to set DVD price
    public void setdvdPrice( double dvdPrice )
    dvdPrice = dvdPrice;
    } // end method setdvdPrice
    // method to retrieve DVD price
    public double getdvdPrice()
    return dvdPrice;
    } // end method getdvdPrice
    // method to set stocked number of DVDs
    public void setstockedDvds( double stockedDvds )
    stockedDvds = stockedDvds;
    } // end method setstockedDvds
    // method to retrieve stocked number of DVDs
    public double getstockedDvds()
    return stockedDvds;
    } // end method getstockedDvds
    // method to set DVD Name
    public void setdvdName( String dvdName )
    dvdName = dvdName;
    } // end method setdvdName
    // method to retrieve DVD name
    public String getdvdName()
    return dvdName;
    } // end method getstockedDvds
    // method to calculate pay for week
    public double calculateValue()
    return dvdPrice * stockedDvds;
    } // end method total
    } // end class

  • Dreamweaver Newbie making first site.  Trying to figure out this CSS thing...

    This is my first attempt and first site with DW and am having some newbie issues.  The website is www.accuvisionvideo.com.  The site is based on a DW template I picked up from a website.  If you go to the page you will see a menu on the left hand side and the body of the page mostly in the middle.  I am using Studio VII pop menu magic for that menu.  I want to make the thing horizontal, but still keep the side bar area (the photos and such underneath the menu)  However when I make the menu horizontal it removes everything from the left side space and does not give me the option to work in there any more.  How do I place images and text in the left column?  If I am not mistaken its a CSS thing...Also is there anyway to place images anywhere on the page.  Now when I insert an image it seems to have to be either fltlft or fltrt, I can't put multiple images on the same line?   Anyway I know these are noob questions, thank for any help guys.

    GasMaskProductions wrote:
    This is my first attempt and first site with DW and am having some newbie issues.  The website is www.accuvisionvideo.com.  The site is based on a DW template I picked up from a website.  If you go to the page you will see a menu on the left hand side and the body of the page mostly in the middle.  I am using Studio VII pop menu magic for that menu.  I want to make the thing horizontal, but still keep the side bar area (the photos and such underneath the menu)  However when I make the menu horizontal it removes everything from the left side space and does not give me the option to work in there any more.
    The PVII menu will insert into any div on your page.  What you need to do is create a brand new div just below your header div and insert the pvii menu into that div.  This way the new div won't take any styles from any of the current div styles on the page.
    How do I place images and text in the left column?  If I am not mistaken its a CSS thing...Also is there anyway to place images anywhere on the page.  Now when I insert an image it seems to have to be either fltlft or fltrt, I can't put multiple images on the same line?   Anyway I know these are noob questions, thank for any help guys.
    If the images are too wide, they will drop down to the next line (like the images at the bottom of the entry page now.)
    the fltlft and fltrt,are classes, that float and image to the left or to the right, so you can have text surrounding the image.
    Also, for such a simple page you have over 78 errors when you put the page throught he html validator:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.accuvisionvideo.com%2F
    The majority of them will certainly need fixing before creating any further pages using a similar layout.
    Just notice this also:
    .style5
                                        font-family :
                                        "Charlemagne Std";
                                        font-size :
                                        xx-large;
                                        color :
                                        #000000;
    That's not a web-safe font, if someone doesn't have that on their system, they will not see that font, they'll be served the default font
    of their browser set.
    More about Web Safe Fonts:
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/

  • Been sat here for the past 5 hours trying to figure out why itunes wont download, it says error and something to do with Microsoft? Help me please.. getting a bit bored?

    been sat here for the past 5 hours trying to figure out why itunes wont download, it says error and something to do with Microsoft version? Help me please.. getting a bit bored?

    i have this problem too
    my dad thinks its because itunes is getting overloaded

  • I am trying to figure out how I can get my library transferred to the Honda Accord 16gb hard drive?  I have purchased music of off I tunes and do not have the physical CD.  Anybody with any suggestions on how this can be done?

    I am trying to figure out how I can transfer my library to my new 2014 honda accord that has an internal 16gb hard drive.  The manual for the car says that it needs to be original CD's but I have purchased alot of the albums/songs I have from I tunes therefore not having the original CD.  Can someone help me with this as I dont want to load each CD into the player to record and have some albums that I purchased off of I tunes that I would like to be on the hard drive.
    Thanks Any Help is appreciated.

    If Honda says you need the original CDs, you need the original CDs.

  • My iPhone 4S is not showing up in iTunes.  I've never had this issue before, but I'm finding it a little frustrating trying to figure out how to rectify the situation.  Any suggestions would be greatly appreciated.

    My iPhone 4S is not showing up in iTunes.  I've never had this issue before, and I'm finding it a little frustrating trying to figure out how to rectify the situation.  If anyone knows how to fix this problem, please advise.  Otherwise any suggestions would be greatly appreciated.

    Hi Josie,
    I understand that you are having issues with iTunes recognizing your iPhone 4S. Let's see if we can tackle this.
    The following resource will provide helpful steps in resolving this issue, pay specific attention to Steps 3-6 as these usually resolve this sort of issue.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Thanks,
    Matt M.

  • I am trying to figure out how to clear my massage backlog of messages on Messages for Mavericks OS. I believe a lot of space is taken up by this running in the background keeping recent messages loaded. Especially with all the gif files I've been sending

    I am trying to figure out how to clear my massage backlog on Messages for Mavericks OS. I believe a lot of space is taken up by this running in the background keeping recent messages loaded. Especially with all the gif files I've been sending. Is there a way to select all and deleter? Please help! Can't find anyone who looks to do the same just lots of manuals for using the app on iphones and ipads.
    Thanks

    I am trying to figure out how to clear my massage backlog on Messages for Mavericks OS. I believe a lot of space is taken up by this running in the background keeping recent messages loaded. Especially with all the gif files I've been sending. Is there a way to select all and deleter? Please help! Can't find anyone who looks to do the same just lots of manuals for using the app on iphones and ipads.
    Thanks

  • Hi - Re Keynote  I'm trying to figure out how to create a music album on USB flash drive. What I want is a background picture with 'click-buttons' to play each track listed, also similar for embedded videos and photos etc.  Is this possible with Keynote ?

    Hi - Re Keynote  I'm trying to figure out how to create a music album (as an artist) on USB flash drive, (accessible by both Mac and PC). What I want is a background picture with 'click-buttons' to play each track listed, and play in order (like a cd) - also similar for embedded videos and photos etc. This should all be on the one page.  
    Is this possible with Keynote, or any other software package for Mac (am using Macbook Pro) ?
    Gav 88

    Hi there,
    Yikes, it sounds like you've been doing a lot of work on this project... Unfortunately, however, this isn't the Adobe Encore forum, but the Acrobat.com forum. While it seems like an exciting question, we're not able to address issues pertaining to other Adobe products and services. Here's a link to the Adobe Encore forum, where you're more likely to get help for this specific issue:
    http://forums.adobe.com/community/encore
    Sorry not to be of more specific help to you. Best of luck!
    Kind regards,
    Rebecca

  • Been using Macs since classic. Using MBP, OS 10.7.5. Trying to figure out how to print/save folder contents (Name, Date Modified, Size Kind) of entire (non-visible) folder? Any apps that can do this?

    Been using Macs since before classic. Using MBP, OS 10.7.5. Trying to figure out how to print/save folder contents including what's not visible on screen (Name, Date Modified, Size Kind) in entire folder?
    Screen shots are getting old hat.
    Tried select all, copy, paste into pages, but it didn't display date modified, size & kind, and also included images of selected files, which is too large. 
    Any apps/shortcuts/utilities that can do this?  Thanks in advance.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • Os7 granddaughter has disabled my phone trying to figure out password how do I fix this.

    Just updated to OS7 with a password. 4 yr old grand daughter ear just disabled my iPhone trying to figure out the password. I can only make emergency calls!!! How do I fix my phone?

    iOS: Forgotten passcode or device disabled after entering ... - Support

  • Trying to figure out what's using my RAM

    A couple of weeks ago I starting to notice that my memory was getting chewed up slowly until I'd hit around 20MB remaining. the only way that I could free up the space is through 3rd party memory utilities such as FreeMemory. It appears on further inspection memory appears to go inactive, but this isn't very healthy, yet very odd, so I'm trying to figure out if there's a memory leak somewhere.
    Any help would be wonderful. Below is my Etracheck log. I've attempted to remove alll external hard drives and other devices connected via either thunderbolt and USB with no change. Rebooted a few times however the memory gets eaten right up again.
    My initial thought was that it's somehow VMWare however my Windows 7 instance is running at a fixed rate, and even with the instance shut down, my computer would still eat up any available memory.
    Thank you!
    Hardware Information:
        iMac (27-inch, Mid 2011)
        iMac - model: iMac12,2
        1 3.4 GHz Intel Core i7 CPU: 4 cores
        16 GB RAM
    Video Information:
        AMD Radeon HD 6970M - VRAM: 2048 MB
    System Software:
        OS X 10.9.2 (13C64) - Uptime: 0 days 19:6:22
    Disk Information:
        ST31000528AS disk0 : (1 TB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) / [Startup]: 999.35 GB (609.08 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        OPTIARC DVD RW AD-5680H 
    USB Information:
        HP External HDD 2 TB
            HP SimpleSave (disk8s1) /Volumes/HP SimpleSave: 2 TB (202.96 GB free)
        Western Digital Ext HDD 1021 2 TB
            WD (disk6s1) /Volumes/WD: 2 TB (683.89 GB free)
        Initio   WD20EARX-32PASB0 2 TB
            EFI (disk2s1) <not mounted>: 209.7 MB
            disk2s2 (disk2s2) <not mounted>: 2 TB
            Boot OS X (disk2s3) <not mounted>: 134.2 MB
        Initio   WD15EARS-00Z5B1  1.5 TB
            MUSIC (disk1s1) /Volumes/MUSIC: 1.5 TB (347.84 GB free)
        Western Digital Ext HDD 1021 1 TB
            Elements (disk5s1) /Volumes/Elements: 1 TB (119.86 GB free)
        Seagate FreeAgent 500.11 GB
            EFI (disk4s1) <not mounted>: 209.7 MB
            FA (disk4s2) /Volumes/FA: 499.76 GB (350.5 GB free)
        Western Digital My Passport 0748 1 TB
            My Passport (disk7s1) /Volumes/My Passport: 1 TB (710.73 GB free)
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. iPad
        Brother MFC-495CW
        Logitech USB Receiver
        Logitech USB Receiver
        Apple Computer, Inc. IR Receiver
        Apple Internal Memory Card Reader
    FireWire Information:
    Thunderbolt Information:
        Apple Inc. thunderbolt_bus
    Configuration files:
        /etc/hosts - Count: 30
    Kernel Extensions:
        com.kaspersky.kext.klif    (3.0.3a40)
        com.kaspersky.nke    (1.6.3a13)
        com.logmein.driver.LogMeInSoundDriver    (1.0.0)
        com.splashtop.driver.SRXDisplayCard    (1.6 - SDK 10.7)
        com.silex.driver.sxuptp    (1.5.1)
        com.splashtop.driver.SRXFrameBufferConnector    (1.6 - SDK 10.7)
        com.kaspersky.kext.kimul.44    (44)
        com.kaspersky.kext.mark.1.0.5    (1.0.5)
        com.regularrateandrhythm.driver.RowmoteIREmu    (1.0)
        com.tuxera.filesystems.tufsfs.fusefs_txantfs    (2012.4.17)
        com.vmware.kext.vmci    (90.5.7)
        com.vmware.kext.vsockets    (90.5.7)
        com.vmware.kext.vmnet    (0133.15.45)
        com.vmware.kext.vmx86    (0133.15.45)
        com.vmware.kext.vmioplug.12.1.12    (12.1.12)
    Launch Daemons:
        [System]    com.adobe.fpsaud.plist 3rd-Party support link
        [System]    com.adobe.SwitchBoard.plist 3rd-Party support link
        [System]    com.bjango.istatmenusdaemon.plist 3rd-Party support link
        [System]    com.disc-soft.DAEMONTools.PrivilegedHelper.plist 3rd-Party support link
        [System]    com.google.keystone.daemon.plist 3rd-Party support link
        [System]    com.kaspersky.kav.plist 3rd-Party support link
        [System]    com.logmein.logmeinserver.plist 3rd-Party support link
        [System]    com.logmein.raupdate.plist 3rd-Party support link
        [System]    com.microsoft.office.licensing.helper.plist 3rd-Party support link
        [System]    com.oracle.java.Helper-Tool.plist 3rd-Party support link
        [System]    com.parallels.desktop.launchdaemon.plist 3rd-Party support link
        [System]    com.splashtop.streamer-daemon.plist 3rd-Party support link
        [System]    com.teamviewer.teamviewer_service.plist 3rd-Party support link
        [System]    com.timesoftware.timemachineeditor.backupd-auto.plist 3rd-Party support link
        [System]    org.macosforge.xquartz.privileged_startx.plist 3rd-Party support link
        [System]    xxx.qnation.PeerGuardian.kextload.plist 3rd-Party support link
    Launch Agents:
        [System]    com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
        [System]    com.Affinegy.InstaLANa.plist 3rd-Party support link
        [System]    com.bjango.istatmenusagent.plist 3rd-Party support link
        [System]    com.google.keystone.agent.plist 3rd-Party support link
        [System]    com.kaspersky.kav.gui.plist 3rd-Party support link
        [System]    com.logmein.logmeingui.plist 3rd-Party support link
        [System]    com.logmein.logmeinguiagent.plist 3rd-Party support link
        [System]    com.logmein.logmeinguiagentatlogin.plist 3rd-Party support link
        [System]    com.oracle.java.Java-Updater.plist 3rd-Party support link
        [System]    com.parallels.desktop.launch.plist 3rd-Party support link
        [System]    com.parallels.DesktopControlAgent.plist 3rd-Party support link
        [System]    com.parallels.vm.prl_pcproxy.plist 3rd-Party support link
        [System]    com.splashtop.streamer-for-root.plist 3rd-Party support link
        [System]    com.splashtop.streamer-for-user.plist 3rd-Party support link
        [System]    com.teamviewer.teamviewer.plist 3rd-Party support link
        [System]    com.teamviewer.teamviewer_desktop.plist 3rd-Party support link
        [System]    net.culater.SIMBL.Agent.plist 3rd-Party support link
        [System]    org.macosforge.xquartz.startx.plist 3rd-Party support link
    User Launch Agents:
        [not loaded]    com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
        [not loaded]    com.adobe.ARM.[...].plist 3rd-Party support link
        [not loaded]    com.adobe.ARM.[...].plist 3rd-Party support link
        [not loaded]    com.eltima.Folx.Agent.plist 3rd-Party support link
        [not loaded]    com.macpaw.CleanMyMac.helperTool.plist 3rd-Party support link
        [not loaded]    com.macpaw.CleanMyMac.trashSizeWatcher.plist 3rd-Party support link
        [not loaded]    com.macpaw.CleanMyMac.volumeWatcher.plist 3rd-Party support link
        [not loaded]    com.spotify.webhelper.plist 3rd-Party support link
        [not loaded]    com.valvesoftware.steamclean.plist 3rd-Party support link
        [not loaded]    ws.agile.1PasswordAgent.plist 3rd-Party support link
    User Login Items:
        Adium
        Firefox
        Thunderbird
        Vidalia
        [PC ~ Multi9] Football Manager 2010.iso
        iTunesHelper
        MagiCal
        Connect360Helper
        Kodak EasyShare Wireless Listener
        GrowlHelperApp
        Microsoft Database Daemon
        Weather Vane
        VMware Fusion Helper
        Dropbox
        Spotify
        Octoshape
        SIMBL Agent
        iSkysoft Helper Compact
        pCloud
        OpenDNS Updater
        smcFanControl
        TSPrint Client
        Rowmote Helper
    Internet Plug-ins:
        AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 3rd-Party support link
        Flash Player: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
        AdobePDFViewer: Version: 11.0.06 - SDK 10.6 3rd-Party support link
        LogMeInSafari32: Version: 1.0.530 3rd-Party support link
        googletalkbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 3rd-Party support link
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        LogMeInSafari64: Version: 1.0.530 3rd-Party support link
        FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
        NPTWCP: Version: (null) - SDK 10.5 3rd-Party support link
        CitrixICAClientPlugIn: Version: 11.2.0 3rd-Party support link
        Silverlight: Version: 5.1.20513.0 - SDK 10.6 3rd-Party support link
        LogMeIn: Version: 1.0.530 3rd-Party support link
        FolxNetscapePlugIn: Version: Unknown
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 3.0.0.126   - SDK 10.8 3rd-Party support link
        o1dbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
        SharePointBrowserPlugin: Version: 14.3.6 - SDK 10.6 3rd-Party support link
        JavaAppletPlugin: Version: Java 7 Update 21 Outdated! Update
        z: Version: (null) - SDK 10.5 3rd-Party support link
    Safari Extensions:
        Dashlane: Version: 2.3.2.52081
        iTube Studio: Version: 4.1.0.2
        Kaspersky URL Advisor: Version: 8.0.5
        Virtual Keyboard: Version: 14.0
        YouTube Downloader: Version: 4.8.0.0
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 2.0 - SDK 10.9
        AppleAVBAudio: Version: 203.2 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
        TuneUp Visualizer: Version: 2.2.0 3rd-Party support link
        AudioScrobbler: Version: 3.0.4 3rd-Party support link
    User Internet Plug-ins:
        Dashlane: Version: Dashlane 1.0.0 - SDK 10.7 3rd-Party support link
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 3rd-Party support link
        FolxNetscapePlugIn: Version: Unknown
        OctoshapeWeb: Version: 1.0 - SDK 10.8 3rd-Party support link
    3rd Party Preference Panes:
        Citrix Online Plug-in  3rd-Party support link
        Connect360  3rd-Party support link
        Flash Player  3rd-Party support link
        Flip4Mac WMV  3rd-Party support link
        Growl  3rd-Party support link
        Java  3rd-Party support link
        MacFUSE  3rd-Party support link
        Perian  3rd-Party support link
        Tuxera NTFS  3rd-Party support link
    Old Applications:
        Microsoft Language Register:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
        /Users/[redacted]/Library/Application Support/Helper
            iSkysoft Helper Compact:    Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
            Aimersoft Helper Compact:    Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
        SLLauncher:    Version: 1.0 - SDK 10.5 3rd-Party support link
            /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        PwnageTool:    Version: 4.3.3 - SDK 10.4 3rd-Party support link
            /Users/[redacted]/Desktop/iOS4 Jailbreaking/PwnageTool.app
        /Applications/Microsoft Office 2011
            Microsoft PowerPoint:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Excel:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Outlook:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Word:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Document Connection:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
        DockPlistEdit:    Version: 7.0 - SDK 10.5 3rd-Party support link
            /Library/Parallels/Uninstaller/Parallels Hypervisor/DockPlistEdit.app
        /Applications/Microsoft Office 2011/Office
            Microsoft Graph:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Database Utility:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Office Reminders:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Upload Center:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            My Day:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            SyncServicesAgent:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Open XML for Excel:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Alerts Daemon:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Database Daemon:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Chart Converter:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Clip Gallery:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
        Meteorologist:    Version: 1.5.6 - SDK 10.4 3rd-Party support link
        Lithium Core Admin:    Version: 5.0.15 - SDK 10.5 3rd-Party support link
        Microsoft Communicator:    Version: 13.1.3 - SDK 10.5 3rd-Party support link
        Lithium Console:    Version: 5.0.15 - SDK 10.5 3rd-Party support link
        SpotiMy:    Version: 1.1 - SDK 10.0 3rd-Party support link
        Rowmote Helper:    Version: 3.4.1 - SDK 10.5 3rd-Party support link
        iPhone Explorer:    Version: 2.1.0.1 - SDK 10.0 3rd-Party support link
        Data Rescue 3:    Version: 3.2 - SDK 10.4 3rd-Party support link
        Rivet:    Version: 2.8.0 - SDK 10.5 3rd-Party support link
        Remote Desktop Connection:    Version: 2.1.2 - SDK 10.5 3rd-Party support link
        Solver:    Version: 1.0 - SDK 10.5 3rd-Party support link
            /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        dynamiclinkmanager:    Version: 6.0.0 - SDK 10.5 3rd-Party support link
            /Library/Application Support/Adobe/Common/dynamiclink/CS6/dynamiclinkmanager.app
        dynamiclinkmediaserver:    Version: 6.0.1 - SDK 10.5 3rd-Party support link
            /Library/Application Support/Adobe/Common/dynamiclinkmediaserver/1.0/dynamiclinkmediaserver.app
        iSkysoft Helper Compact:    Version: 2.2.5.6 - SDK 10.5 3rd-Party support link
            /Applications/iSkysoft Helper Compact/iSkysoft Helper Compact.app
        Microsoft AutoUpdate:    Version: 2.3.6 - SDK 10.4 3rd-Party support link
            /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
        Audacity:    Version: 1.3.13.0 - SDK 10.4 3rd-Party support link
            /Applications/Audacity/Audacity.app
        /Library/Application Support/Microsoft/MERP2.0
            Microsoft Error Reporting:    Version: 2.2.9 - SDK 10.4 3rd-Party support link
            Microsoft Ship Asserts:    Version: 1.1.4 - SDK 10.4 3rd-Party support link
        SA Color Finesse 3 UI:    Version: 3.0.6(275) - SDK 10.5 3rd-Party support link
            /Applications/Adobe After Effects CS6/Plug-ins/Effects/Synthetic Aperture/(CF3 Support)/SA Color Finesse 3 UI.app
    Time Machine:
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 930.71 GB Disk used: 363.47 GB
        Destinations:
            Untitled [Local] (Last used)
            Total size: 2 
            Total number of backups: 59
            Oldest backup: 2013-12-15 08:32:21 +0000
            Last backup: 2014-03-23 19:01:48 +0000
            Size of backup disk: Adequate
                Backup size 2  > (Disk used 363.47 GB X 3)
        Time Machine details may not be accurate.
        All volumes being backed up may not be listed.
    Top Processes by CPU:
           158%    vmware-vmx
           139%    Adium
            38%    plugin-container
             7%    thunderbird
             6%    firefox
    Top Processes by Memory:
        3.55 GB    vmware-vmx
        1.01 GB    firefox
        410 MB    thunderbird
        262 MB    kav
        229 MB    plugin-container
    Virtual Memory Information:
        1.03 GB    Free RAM
        5.20 GB    Active RAM
        5.07 GB    Inactive RAM
        4.44 GB    Wired RAM
        5.09 GB    Page-ins
        1.01 GB    Page-outs

    You have waaaaaay, waaaaaay too much software and "garbageware" installed on your Mac!
    Plus, you are treating your Mac too, tooo much like a Windows PC!
    Are you a former WindowsPC user?
    You do not need all of this software crap and "garbageware" you have installed on your Mac.
    How many applications do you run simultaneously in the background while working in another application?
    With 16 GBs of RAM, you should not be experiencing any memory Page out issues. Yet, you have over a GB of memory Page outs!
    You are, probably running tooo many applications at once. You need to cut back the amount of open applications that you have up and running concurrently OR install even MORE RAM!
    Your year and model Mac can take up to 32 GBs of RAM.
    Correct and reliable Mac RAM can be purchased from online Mac RAM sources Crucial memory or OWC (macsales.com).
    Unless you are running Kaspersky antivirus software under your Windows setup, completely uninstall this from OS X per instructions on the developer's website.
    OS X does not need antivirus software. Antivirus software can slow down the normal operation of OS X and have adverse and negative effects on performance and operation of OS X.
    Compleley uninstall CleanMyMac per the instructions on the developer's website.
    http://macpaw.com/support/cleanmymac/knowledgebase/how-to-uninstall-cleanmymac-2
    Again, you have waaaaay toooo many user startup/login items!
    You need to really, REALLY, look at these at determine what you need to have launch at startup or Login.
    You really need to whittle this waaaay down!
    All of these items launching at startup/login is causing a large part of your Mac slowdowns.
    Add or remove automatic items
    Choose Apple menu > System Preferences, then click Users & Groups.
    Select your user account, then click Login Items.
    Do one of the following:
    Click Add below the list on the right, select an app, document, folder, or disk, then click Add.If you don’t want an item’s windows to be visible after login, select Hide. (Hide does not apply to servers, which always appear in the Finder after login.)
    Select the name of the item you want to prevent from opening automatically, then click Delete below the list on the right.
    Google software is ,currently, not 100% compatible/compliant with OS X Mavericks. Especially Google Chrome and Drive.
    So, uninstall all Google software per the instructions on Google's website until Google posts an "official" fix/update for these.
    If you do not like Apple's Safari Web browser, try using Mozilla Firefox, instead. Mozilla constantly updates FireFox and there is a new update available.
    Also, Telestream Flip4Mac plugin is an issue on OS X Mavericks. If there is no Mavericks update for this plugin, then completely unistall this plugin per instructions on the Telestream website. Use the newest version of VLC player, instead.
    Completely Uninstall MacFUSE. There hasn't been any updates for this in a couple of years and is outdated and incompatible with Mavericks. Uninstall per instructions on the developer's website, also.
    You need to update all of your third party software if there are OS X Mavericks updates that can be applied.
    You may need to,ACTUALLY,  go to the third party developers' websites if there are no updates through the Mac App Store.
    Update all of your Web browser Internet plugins, extensions and add ons, also.
    Also, if you have any connected third party devices, like non-Apple keyboards, mice, drawing tablets, hubs, card  readers, etc, you need to go to the device makers' websites' and update the drivers for these devices to OS X Mavericks compatible versions, if available, applicable and needed.
    Good Luck to you!

  • Trying to figure out how to print four postcards per two-sided page.

    I've been a Mac user for a little over a year, and I love it, but with this latest (2014, OS X) version of Pages, I cannot find out how to set up my document so it will print four, two-sided postcards. The only postcard templates are two per page, and it feels like I've gone to the end of the application and back trying to figure out the answer.
    Any help would be greatly appreciated!
    :Danul

    Just adding to Viking's reply.
    The trick is to get the second page (the back) to print behind the first set (the front) when you feed the paper back into the printer or use the duplexing function, if your printer has that.
    Desktop printers do not feed paper very accurately so it is hard to align the two. It will pay to test if there is a consistent error in positioning and move the 2nd set to allow for it.
    Best to aim for the centre of your paper stock, so adjust the artwork to have the two samples head to head exactly in the centre of the page with a 10mm or 3/8th inch gap between them. You can do this using the Graphics Inspector to position them and rotate the top postcard 180°.
    Step by step:
    1. Group and rotate the top postcard 180°
    2. Position it with 10mm or 3/8th inch gap above the 2nd postcard
    3. Group the two postcards and centre the set on the page
    4. Do the same to the back set
    5. Print the front set
    6. Tumble turn or rotate the paper (test for what works) and put back into the printer to print the back set
    7. Test by printing simple boxes the right size and shape to see how they align. Move template on the page to allow for any errors the printer makes.
    For a set of 4 follow above on a landscape page, with another pair next to this one.
    8. If there is only one design for the postcard (1 front and one back) they can be on the same page, head to head (see above) and when you feed the paper back in the printer, the back should print behind the front and the front behind the back to make up two double sided postcards.
    Simply test, using dummies to indicate paper direction, rectangles with F & B in the centre, and take note which direction, and side up needs to go into the printer for what result. Then keep that information handy by the printer, with step by steps to repeat them.
    Peter

Maybe you are looking for

  • Magsafe indicator faint/dim and blinking amber/green

    I am working on a Macbook purchased in November 2008. Until now, no problems, but this morning after a full night's charge, I ran it for about two hours without being plugged in. When I plugged it in to charge, the indicator light on the magsafe woul

  • Why does my apple tv take so long to download tv shows

    Having trouble with tv shows that I purchased not downloading to apple tv.  Read on one post about going into the gateway of the router and changing a setting that should make it work. We have Comcast and it said that there's an issue with Comcast an

  • Videos with long titles

    When I view a list of videos it only shows a certain number of characters before it cuts off. I have TV shows which have long names and I have the EP number at the end and I can't see which one it is. Is there any way to scroll the names?

  • Why can not I call the Sysprep on the MDT Task sequence created ?

    Good afternoon gentlemen, Please help me ! I'm days trying to unravel this problem , any task that I create and call on the relevant equipment, is the right procedure for all steps and ends with the successfully completed task window, nothing happens

  • MEASUREMENTS IN ACTIVITY USAGE PROFILE

    Please see enclosed link 'printscreen', how is it possible to see, in the Activity Usage Profile, the measurements (hours or manpower,etc.) in the chart blocks, specific per month? And P6 does not show the actual hours + curve (actual progress till J