Flex 2 with FDS in Chrome

I have an application that was developed in Flex 2 using FDS for communications.  I've upgraded to Flash Play 11,0,1,152 in Google Chrome and I can no longer connect to my project either running locally on my machine or on the production site.  It runs fine in Firefox and IE.  Are there any settings in Chrome that I need to be aware of?
Thanks,
Tom

Actually, it does not work in IE either.
I installed the 32-bit version for 32-bit IE and it goes to the page and hangs.  Now, Chrome does nothing.  It used to show the application and then FDS could not connect, now it isn't even loading the app.

Similar Messages

  • Please help me, I need to use Flex with CF

    Hi everyone,
    I am starting to retract my brain from an intense 2 days to
    figure out how to use Flex with Coldfusion. I am using Coldfusion 8
    Beta (this part is good, don't need help for CF itself). I am also
    using Flex Builder 2 (with chart but this not the topic). I
    installed FDS 2.5 before to install ColdFusion 8 but I think CF8
    have is own FDS or something like that... anyway, it might help to
    mention it!
    Well, I tried HTTPService, RemoteObject, WebSer vice -
    NOTHING WORKS!!! Argh! Did I mention I spent 2 days? ;-)))
    Well, I start with the basic: a login form with an email (as
    a username) and a password to be validated. I have a CFC to do the
    validation and return a simple message (string): "OK' when it is
    valid and a custom message when it is not valid; depending if it is
    the password and/or the email which is not valid.
    I always got an error. Since the error is different depending
    of the method I use, I will explain the latest method I used in
    this message and try to concentrate on that method specifically!
    The method is WebService and here is the error:
    faultCode:Server.Error.Request
    faultString:'HTTP request error'
    faultDetail: 'Error: [IOErrorEvent type="ioError"
    bubbles:false cancelable=false eventPhase=2
    text="Error #2032: Stream Error .
    URL=http://localhost:8501/iDashboard/login.cfc"].
    URL: http://localhost:8501/iDashboard/login.cfc'
    Any help will be very useful!!!
    Thank's

    Cyber,
    This may be what you are looking for. It worked well for me.
    Flex is sweet, but with the number of people confused about setup
    with CF they sure aren't making any friends.
    Flex/ColdFusion
    setup

  • Flex 2, FDS 2.5 and CF 8: Still can't execute any kind of WebService!!!

    Hi everyone,
    I am starting to retract my brain from an intense 2 days to figure out how to use Flex with Coldfusion. I am using Coldfusion 8 Beta (this part is good, don't need help for CF itself). I am also using Flex Builder 2 (with chart but this not the topic). I installed FDS 2.5 before to install ColdFusion 8 but I think CF8 have is own FDS or something like that... anyway, it might help to mention it!
    Well, I tried HTTPService, RemoteObject, WebSer vice - NOTHING WORKS!!! Argh! Did I mention I spent 2 days? ;-)))
    Well, I start with the basic: a login form with an email (as a username) and a password to be validated. I have a CFC to do the validation and return a simple message (string): "OK' when it is valid and a custom message when it is not valid; depending if it is the password and/or the email which is not valid.
    I always got an error. Since the error is different depending of the method I use, I will explain the latest method I used in this message and try to concentrate on that method specifically! The method is WebService and here is the error:
    faultCode:Server.Error.Request
    faultString:'HTTP request error'
    faultDetail: 'Error: [IOErrorEvent type="ioError"
    bubbles:false cancelable=false eventPhase=2
    text="Error #2032: Stream Error . URL=http://localhost:8501/iDashboard/login.cfc"].
    URL: http://localhost:8501/iDashboard/login.cfc'
    Any help will be very useful!!!
    Thank's
    P.S.: I succeed to execute a HTTPService only if I call a XML file.

    You can connect Flex to CF with out the use of LCDS(FDS)<br />So a better place to look for answers to you question would be the Flex forums.<br />with that said make sure your Flex project is setup to use Coldfusion Flash Remoting Services.<br /><br />Then create a remote object in your mxml file<br /><mx:RemoteObject<br />      id="serv"<br />      destination="ColdFusion"<br />      source="path.toYour.cfc" <br />      showBusyCursor="true">  <br />     <mx:method name="nameOfFunctionOnCFC" result="resultHandlerFunction(event)" fault="Alert.show(event.fault.message)"/><br />   </mx:RemoteObject><br /><br />create the handler function<br /><br />private function resultHandlerFunction(event:Event):void{<br />     //do something with your results<br />}<br /><br />then make the call to the service<br /><br />serv.nameOfFunctionOnCFC(email,password);<br /><br />that should work if your paths to your CF server is correct.<br /><br />Russ

  • Flex 2, FDS 2.5 and CF 8

    Hi everyone,
    I am starting to retract my brain from an intense 2 days to
    figure out how to use Flex with Coldfusion. I am using Coldfusion 8
    Beta (this part is good, don't need help for CF itself). I am also
    using Flex Builder 2 (with chart but this not the topic). I
    installed FDS 2.5 before to install ColdFusion 8 but I think CF8
    have is own FDS or something like that... anyway, it might help to
    mention it!
    Well, I tried HTTPService, RemoteObject, WebSer vice -
    NOTHING WORKS!!! Argh! Did I mention I spent 2 days? ;-)))
    Well, I start with the basic: a login form with an email (as
    a username) and a password to be validated. I have a CFC to do the
    validation and return a simple message (string): "OK' when it is
    valid and a custom message when it is not valid; depending if it is
    the password and/or the email which is not valid.
    I always got an error. Since the error is different depending
    of the method I use, I will explain the latest method I used in
    this message and try to concentrate on that method specifically!
    The method is WebService and here is the error:
    faultCode:Server.Error.Request
    faultString:'HTTP request error'
    faultDetail: 'Error: [IOErrorEvent type="ioError"
    bubbles:false cancelable=false eventPhase=2
    text="Error #2032: Stream Error .
    URL=http://localhost:8501/iDashboard/login.cfc"].
    URL: http://localhost:8501/iDashboard/login.cfc'
    Any help will be very useful!!!
    Thank's
    P.S.: I succeed only to execute a HTTPService when I call a
    XML file, but nothing from ColdFusion. :-(

    I successfully used ColdFusion to generate XML as a response
    to an HTTPService request in an mxml file, but only after turning
    off debug output on ColdFusion Server. (The debug output was being
    appended to the XML response and causing a similar error as what
    you are seeing.) I don't know if that helps. I am having a problem
    figuring out how to pass a variable in the HTTPService request.
    Can't figure out if it gets passed in as 'Request.<variable>'
    or what. But I can at least provide an example that works if you
    don't need to pass any values to the CFML template.

  • Flex 2, FDS 2.5 and CF8

    Hi everyone,
    I am starting to retract my brain from an intense 2 days to
    figure out how to use Flex with Coldfusion. I am using Coldfusion 8
    Beta (this part is good, don't need help for CF itself). I am also
    using Flex Builder 2 (with chart but this not the topic). I
    installed FDS 2.5 before to install ColdFusion 8 but I think CF8
    have is own FDS or something like that... anyway, it might help to
    mention it!
    Well, I tried HTTPService, RemoteObject, WebSer vice -
    NOTHING WORKS!!! Argh! Did I mention I spent 2 days? ;-)))
    Well, I start with the basic: a login form with an email (as
    a username) and a password to be validated. I have a CFC to do the
    validation and return a simple message (string): "OK' when it is
    valid and a custom message when it is not valid; depending if it is
    the password and/or the email which is not valid.
    I always got an error. Since the error is different depending
    of the method I use, I will explain the latest method I used in
    this message and try to concentrate on that method specifically!
    The method is WebService and here is the error:
    faultCode:Server.Error.Request
    faultString:'HTTP request error'
    faultDetail: 'Error: [IOErrorEvent type="ioError"
    bubbles:false cancelable=false eventPhase=2
    text="Error #2032: Stream Error .
    URL=http://localhost:8501/iDashboard/login.cfc"].
    URL: http://localhost:8501/iDashboard/login.cfc'
    Any help will be very useful!!!
    Thank's
    P.S.: I succeed to execute a HTTPService only if I call a XML
    file.

    Sorry, I made a mistake as the error mentioned before is not
    a real error. It was an error because the service of ColdFusion 8
    was not really stopped!
    It has no error:
    C:\ColdFusion8\bin>cfstart
    Listening for transport dt_socket at address: 5005
    Starting Macromedia JRun 4.0 (Build 108472), coldfusion
    server
    07/12 14:36:40 warning Unable to open
    C:\ColdFusion8\runtime/lib/license.propert
    ies
    07/12 14:36:41 info JRun Naming Service listening on *:2930
    07/12 14:36:42 info No JDBC data sources have been configured
    for this server (s
    ee jrun-resources.xml)
    07/12 14:36:42 info JRun Web Server listening on *:8501
    07/12 14:36:42 info Deploying enterprise application
    "Adobe_ColdFusion_8" from:
    file:/C:/ColdFusion8/
    07/12 14:36:42 info Deploying web application "Adobe
    ColdFusion 8" from: file:/C
    :/ColdFusion8/
    07/12 14:36:44 INFO License Service: Flex 1.5 CF Edition
    enabled
    07/12 14:36:44 user JSPServlet: init
    07/12 14:36:44 INFO Starting Flex 1.5 CF Edition
    07/12 14:36:45 user ColdFusionStartUpServlet: init
    07/12 14:36:45 user ColdFusionStartUpServlet: ColdFusion:
    Starting application s
    ervices
    07/12 14:36:45 user ColdFusionStartUpServlet: ColdFusion: VM
    version = 1.6.0_01-
    b06
    07/12 14:36:45 Information [main] - Starting logging...
    07/12 14:36:45 Information [main] - Starting license...
    07/12 14:36:47 Information [main] - Invalid ColdFusion 8
    license.
    07/12 14:36:47 Information [main] - Developer Edition enabled
    07/12 14:36:47 Information [main] - Starting crypto...
    07/12 14:36:47 Information [main] - Starting security...
    07/12 14:36:47 Information [main] - Starting scheduler...
    07/12 14:36:47 Information [main] - Starting WatchService...
    07/12 14:36:47 Information [main] - Starting debugging...
    07/12 14:36:47 Information [main] - Starting sql...
    07/12 14:36:47 Information [main] - Pool Manager Started
    07/12 14:36:48 Information [main] - Starting mail...
    07/12 14:36:48 Information [main] - Starting runtime...
    07/12 14:36:48 Information [main] - CORBA Configuration not
    enabled
    07/12 14:36:48 Information [main] - Starting cron...
    07/12 14:36:48 Information [main] - [Synchro PrivateDNS Basic
    Data] has run once
    before, and will not be scheduled.
    07/12 14:36:48 Information [main] - Starting registry...
    07/12 14:36:48 Information [main] - Starting client...
    07/12 14:36:49 Information [main] - Starting xmlrpc...
    07/12 14:36:49 Information [main] - Starting graphing...
    07/12 14:36:49 Information [main] - Starting verity...
    07/12 14:36:49 Information [main] - Starting archive...
    07/12 14:36:49 Information [main] - Starting document...
    07/12 14:36:49 Information [main] - Starting eventgateway...
    07/12 14:36:49 Information [main] - Starting Event Backend
    Handlers.
    07/12 14:36:49 Information [main] - Initialized
    EventRequestDispatcher with a Th
    read Pool size of 1.
    07/12 14:36:49 Information [main] - Initializing
    EventRequestHandler
    07/12 14:36:49 Information [main] - Starting Event Gateways.
    07/12 14:36:49 Information [main] - Starting FlexAssembler...
    07/12 14:36:50 Information [main] - Starting .NET...
    07/12 14:36:50 Information [main] - Starting Monitoring...
    07/12 14:36:50 Information [main] - ColdFusion started
    07/12 14:36:50 user ColdFusionStartUpServlet: ColdFusion:
    application services a
    re now available
    07/12 14:36:50 user CFMxmlServlet: init
    07/12 14:36:50 user CFMxmlServlet: Macromedia Flex Build:
    87315.134646
    07/12 14:36:50 INFO Macromedia Flex Build: 87315.134646
    07/12 14:36:52 user CFSwfServlet: init
    07/12 14:36:53 user CFCServlet: init
    07/12 14:36:53 user FlashGateway: init
    07/12 14:36:53 user MessageBrokerServlet: init
    07/12 14:36:56 user CFFormGateway: init
    07/12 14:36:56 user CFInternalServlet: init
    Server coldfusion ready (startup time: 19 seconds)

  • I like Firefox browser when I use my Yahoo mail reverts to "oreiginal/old " version from latest version and this does not bhappen with Exploer or Chrome

    Using Firefox browser I can convert to the newest version of Yahoo mail and for this conversion it works satisfactorily. If I close Yahoo mail , either going to another site or closing the Browser, next time I open Yahoo mail it has reverted to old version (occasionally this does not happen but 80% of time it reverts). This does not happen with Explorer or Chrome. I have ensured updated Firefox. Tried Yahoo Ask for answer but no luck.I like Firefox Browser.

    hi ghrobert39, it is an issue with the new yahoo layout,see :
    http://answers.yahoo.com/question/index;_ylt=Ah_K4HUp4sat2HACnDjjfLniDn1G;_ylv=3?qid=20121213000810AAUYfSE
    http://answers.yahoo.com/question/index;_ylt=AkaQjlpKRxhYzrk5rgeMkvviDn1G;_ylv=3?qid=20121212164112AASaQcC
    [http://help.yahoo.com/kb/index?locale=en_US&y=PROD_ACCT&page=content&id=SLN8821 Overview of the new Yahoo! Mail design]
    i hope this is the answer : http://answers.yahoo.com/question/index;_ylt=AjpJXHmHQWc_qTtD86_2imfiDn1G;_ylv=3?qid=20121213051550AAsOJ6g
    thank you

  • When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?

    When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?
    == This happened ==
    Every time Firefox opened

    try
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • I am running Mac OS 10.6.8 and my Quicktime plugin (7.6.6) works completely in Safari, with help in Chrome and not at all in FireFox, even with all other plugins disabled.

    Firefox will play QT movies from the Apple Trailers site and up until maybe two months ago, played QT movies and MP3 files from my personal site. I can't hear the MP3 file that auto-loads at:
    www.garysillmusic.com
    With other browsers:
    Chrome asks for permission to use the QT plugin for each site.
    Safari works fine.
    I uninstalled/re-installed FireFox and found that the QT plugin worked the first time it came to a page with recognizable media but never after that. Not after reloading or even after shutting down the computer and re-opening FireFox.

    Firefox will play QT movies from the Apple Trailers site and up until maybe two months ago, played QT movies and MP3 files from my personal site. I can't hear the MP3 file that auto-loads at:
    www.garysillmusic.com
    With other browsers:
    Chrome asks for permission to use the QT plugin for each site.
    Safari works fine.
    I uninstalled/re-installed FireFox and found that the QT plugin worked the first time it came to a page with recognizable media but never after that. Not after reloading or even after shutting down the computer and re-opening FireFox.

  • Integration of Adobe Flex with SAP Web Dynpro ABAP

    I am new to adobe flex development. i am following a tutorial prepared by
    Mr. Karthikeyan Venkatesan (Infosys Technologies Limited) Integration of Adobe Flex with SAP Web Dynpro ABAP-for ABAPers
    He used flex 3 to develop the flex application. i am using flex 4 downloaded from adobe(At a time Build release I used low version only 3.5). I followed all the steps. At a time of Run the data was not came.
    How to fetch the data?
    Please Guide how to proceed.

    Hi Laxmikanth,
    For Adebo Flex help..
    Please go through Thomas tutorial..
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10989ef6-968c-2b10-50a9-eb34a5267163&overridelayout=true
    and ...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307b434f-ff32-2b10-e885-991247270480?quicklink=index&overridelayout=true
    Hope it might helps you
    Thanks,
    Kris.

  • Can I with Javascript force Chrome users to open a PDF with Acrobat

    I have built a document in InDesign and exported to an Interactive PDF. I originally had issues with acrobat highlighting interactive buttons with a blue box but was able to get around this with a couple simple JavaScript lines that disabled this feature then re-enabled on closing. You can view the thread with my resolution here:
    Button Highlight in Interactive PDF from InDesign CC
    Great but now I have another issue. If the user opens with Chrome and has not disabled "Chrome's" PDF viewer the above JavaScript is ignored or not functional. It there a way with JavaScript or some other method to force the PDF to be opened with Acrobat in Chrome?
    I Miss FLASH this project would have been 100 times easier with action script and consistent across browsers ... curse you Steve Jobs.

    You need to not just think about Chrome. There is
    - FireFox
    - Microsoft Reader (comes with Windows 8)
    - Preview (comes with Mac)
    - iPad native PDF viewe
    - Android native PDF viewer
    Anyone getting a computer or tablet today can read PDFs without getting Adobe Reader and you need to give them a pretty compelling reason for them to download Adobe Reader to do what (they believe that) they can already do. I think it's the death knell for PDF forms.

  • Flex with jsf Application

    Hi
      I am new to flex and i have a knowledge on jsf .We got a requriment to integrate the flex with jsf .
      I googled and i developed the sample application using the fiji (Exadel ) .
      When i an running the application in the jboss I GOT EMPTY page then after deselecting the check box of 'blockjavascript' in the browser
      am able to see the swf file in the page
    can any one help me..
    My Project
    The   mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="1024" height="715" xmlns:ns1="*">
    <mx:Form x="22" y="47" width="1200" height="680">
    </mx:Form>
       <mx:Button x="22" y="5" label="This is Prapansolution" width="280"/>
    </mx:Application>
    The .jsp
           <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:fiji="http://exadel.com/fiji"
              xmlns:a4j="http://richfaces.org/a4j"
              xmlns:rich="http://richfaces.org/rich"
              xmlns:ui="http://java.sun.com/jsf/facelets"
               version="2.0">
             <f:view><h:form id="myForm">
              <fiji:swf src="/faces/FirstFlexApp.swf" id="demonew"  bgcolor="#FFFFFF" width="820" height="480">
              <f:param name="text1" value="Hello" />
             </fiji:swf> </h:form></f:view>

    "vikbar" <[email protected]> wrote in
    message
    news:gb0tug$7je$[email protected]..
    > Hi Amy,
    >
    > Isnt the HistoryManager approach more specific to Flex
    application i.e if
    > user
    > is just navigating with in the flex application? In my
    case the user will
    > navigate between a JSF page which does not have any SWF
    file and the
    > another
    > one which has swf file embedded. Now everytime when the
    suer moves to the
    > flex
    > embedded JSF page from the Non Flex JSF page these are
    the steps which are
    > always going to happen :
    >
    > 1.) System Manager will get initialized and will create
    PreLoader
    > instance.
    > 2.) The preLoader will then try to download the swf
    file. Now since this
    > is
    > the second time the user is coming back to the flex page
    so the broswer
    > would
    > have already cached this swf, so Preloader will skip the
    downloading
    > swf/RSl
    > step and hence you wont see any initialization progress
    bar.
    >
    > 3.) New Application object will get instantiated and
    will go through its
    > whole
    > lifecycle.
    >
    > So, I guess historyManager approach will work only if
    the user stays on
    > the
    > flex application only and navigates with in flex
    application itself(so in
    > that
    > case if the user clicks back then it knows which flex
    component or view to
    > display), but in my case user will completely move away
    from flex page to
    > a
    > JSF page and then will try to come back.
    >
    You'd need to put the right stuff in the url to make it work,
    just like if
    you were calling a page that's expecting GET params. I don't
    really use the
    HistoryManager, so you'll need to either look into this
    yourself or ask
    someone who knows more about it.
    HTH;
    Amy

  • Flex with Eclipse WST

    Hi I'am new to Flex, I like to get started using Flex,
    ActionScript3 using Eclipse IDE.. Iam looking for some tutorial or
    workshop article how to get Flex with Eclipse IDE.

    Hi,
    Are you talking about using the Flex Plugin or the Flex_SDK?
    Not sure about the plugin but you can check out my post on
    what I had to do to get the sdk to work with Eclipse 3.3 at
    http://www.plentifuldesigns.com/?p=13
    Hope this helps
    - Keith

  • Flex with Jboss

    Hi Friends
    I'm developing Flex with java using Blaze-DS under the
    Spring MVC. I've problem in using Jboss, Based on BlazeDS
    Installation guide
    http://opensource.adobe.com/wiki/display/blazeds/Installation+Guide
    configure the jboss with Flex.There is no problem with Flex running
    in Jboss but it couldn't establish connection and business logic
    with java, The Jboss server couldn't through any errors. These same
    war file run under the tomcat server. So please help me to solve
    this problem.
    Thanks&Regrads
    Prakasam

    I don't have any experience with Spring MVC but I was using
    JBoss with Blaze-DS without a problem.
    so my next question is, can you make a echo to work??
    eg, make a function that returns the input string back to the
    flex client.
    Ries

  • Using Flex with JSPDynPage

    Hi,
    Can we develop a JSPDynPage component, using Adobe Flex as the UI instead of using HTMLB? (by embedding flex components in the jsp file). Is it possible to call methods in other java files from a flex application?
    Did anyone try to develop a JSPDynPage component this way?
    Regards,
    Sudhir

    Hi,
    Pls check out these links below for this info -
    Adobe Flex with RFC - 
    Binding Data through function module in adobe to display charts
    How to connect to SAP Database from a Adobe flex application?
    Adobe flex and Sap
    Adobe Flex within SAP NetWeaver Developer
    Regards
    Lekha

  • Using Flex with Microsoft Project

    I am absolutely brand new to FLEX. What I saw on the Adobe
    site was a data chart that could be drilled down to expose
    additional layers of "contriburory detail" for the master graph.
    What I am wondering is if it is possible to do something
    similar using Micrsoft Project Data as the basis. MS Project will
    allow users to save the file as XML. So, all the data should be
    available in a form understandable to FLEX.
    Here's the tricky part (and I can add more detail if needed).
    Project will create a summary line (at some level of indentue) and
    show you a calculated %Complete such as 47%. So, level of indenture
    1 I have the major summary tasks of the project at various status
    of %Complete. I believe FLEX can make some type of bar or pie chart
    out of that for me. What I want to do is click on a "Level1"
    indenture and have it expose the Level2 indure that contributes to
    that 47%. Then drill on one of the Level2's to Level3 .... to Level
    "n".
    This needs to be accomplished in "stand alone" fashion so the
    ultimate user can launch a desktop application and tell the
    application the name of the Microsoft Project XML file. We will not
    be able to use Client/Server ... client side only with the file
    located either locally or at least on a network drive.
    Can this be done? Has anyone looked at a MS Project XML
    schema to see if there is sufficeint information available?
    OK, now the blunt truth. It ain't %Complete that I care
    about. What I care about is BCWS, BCWP, ACWP, %Complete, and a few
    other parameters. These are the "Earned Value Fields". If you do
    not know what they are, don't worry about it just now .... it is
    really all just time phased data.
    Can anyone give me some advice or an opinion? TIA.
    Jim

    Hi,
    Pls check out these links below for this info -
    Adobe Flex with RFC - 
    Binding Data through function module in adobe to display charts
    How to connect to SAP Database from a Adobe flex application?
    Adobe flex and Sap
    Adobe Flex within SAP NetWeaver Developer
    Regards
    Lekha

Maybe you are looking for

  • Word for mac 2011 keyboard commands hang when network disk mounted

    After much trial and error, I have found that, for my system, at least, MS Word for Mac 2011 hangs on keyboard commands when a network disk is mounted on my desktop. Just wanted to alert all who get the beach ball when use keyboard commands in MS Wor

  • Unable to customize my portal masthead

    Hi, I am unable to customize my portal masthead. I can't download the par file like "System Administration -> Support -> Portal Runtime -> Browse Deployment -> WEB-INF -> deployment -> temp (or) pcd -> com.sap.portal.navigation.masthead.par.bak ". I'

  • How can I read the next e-mail when I delete or close the current one

    Is there a way to setup my preferences so that I can move to the next e-mail when I delete or close the current one? I could do this in Thunderbird and I really miss that feature. Thanks, Bob

  • I do *not* want iMovie to scan my iPhoto library - how?

    I have an enormous amount of short video clips in iPhoto, and I don't need iMovie to scan them. The problem is that it always want to scan iPhoto when I start iMovie. I looked in the preferences and there seems to be no way to tell iMovie to NOT scan

  • Display all calendars full-color?

    As the title suggests, I'm looking for a way to have different calendars and display all of them with the same full-color style (as opposed to the half-translucent). Any suggestions are incredibly welcome. Andrew T.