Fan View in Stack doesn't work

I'm enjoying the new Leopard features. However, suddenly when I put a folder in the dock to use as a "stack" the FAN view doesn't work. I just get a fan of dumb-looking lines. The grid view works. What gives?
Many thanks,
Tom

Glad to hear that. Sometimes preference files get corrupted, it happens. If you lost application icons from the Dock it's because they probably were 3rd party software, OR, the icons that aren't on the Dock by default in Leopard.
Nada! and thank you for the star.
Carolyn

Similar Messages

  • Views dropdown on list view web part doesn't work

    Thank you very much beforehand for any help with this issue, I really can't figure out what is going on.
    So, I have big list (36125 items and about 25 public views there) and view selector on list view web part just stopped respond there couple of days ago. You click on down arrow and nothing happens... There are no any java script errors in browser console,
    there are no any errors in ULS log. Profiler shows that request even is not sent to server when you click it to get list of views.
    At the same time, this web-part works correctly with other lists on this site. 
    Do you have any ideas?

    Hi,
    I understand that the view drop down doesn’t work for a specific list. Can you browse these publish views by manually change the view name in the URL? There are two view drop downs in the ribbon(one under the List tab and one under the browser tab). Are
    they all not working?
    It is a big list, you need to make sure that there are no more than 5000 items in a single view. Only 8 lookups can be added to a view at the same time. You need to make sure that these thresholds.
    For more information about these thresholds, please refer  to this site:
    Manage lists and libraries with many items:
    http://office.microsoft.com/en-us/sharepoint-foundation-help/manage-lists-and-libraries-with-many-items-HA010377496.aspx
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Legend Calendar view of VC doesn't work

    Hello,
    I have created a model which returning start date and end date of planned maintenance dates. I can show these dates in calendar view but when I try to add legend to this calendar not only I am not able to see any legend but also calendar is also empty, all dates are gone.
    But when I remove all legends the calendar shows all dates in the same color.
    I tried to find an answer for this issue on SDN and google but except 2 [not answered question |Visual Composer Calendar;on SDN, Couldn't find any usefull answer.
    I also reviewed these:
    http://help.sap.com/saphelp_gts72/helpdata/de/43/eca4ef15b22ae6e10000000a422035/content.htm
    http://help.sap.com/saphelp_rc10/helpdata/en/43/eeb0b2a3597062e10000000a1553f6/content.htm
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101?QuickLink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe?QuickLink=index&overridelayout=true
    It is very simple but it doesn't work!!!
    these are my settings;
    from date field = @Begda
    to date field = @endda
    Calendar range = Auto
    Legend placement = Below (not able to change)
    legend filtering = filter
    dynamic legend = not selected
    legend ID field = when dynamic legend is not selected this field is disabled
    the Table for legend:
    = 0
    Label = ABC  
    Color = #339966
    Condition = @SYSID=='ABC'
    I really can't figure this out!    your help will be highly appreciated
    Thanks.

    Your description is a bit sketchy, however a few thoughts (might actually start with step 4).
    1) make sure your cfm files and project is set up to be under your ColdFusion9 wwwroot.  So, on windows, if your project was called test, the correct folder would be c:\ColdFusion9\wwwroot\test, with the .cfm files under that directory.
    2) make sure you can bring up the ColdFusion9 administrator panel.  Under Servers, right-click the server you setup, and do "launch ColdFusion Administrator".  Make sure your local server is setup with the right passwords.
    3) check your project properties (right click on your project, select properties), and here make sure your project is referencing the server.  From there you should be able to switch from the Source|Firefox|IE tabs (that's what I have on Windows), and something should show up.  Also, when you run the .cfm file in an external browser.
    4) Step 1, however, should be verifyable OUTSIDE of CF Builder, with a path something like:
         http://localhost:8500/project-directory-name/example.cfm file
    Also of course make sure that http://localhost:8500/CFIDE does something.   That should tie it altogether, since when you do a launch/run from CF Builder, you can compare the address it puts in your browser, with the aforementioned addresses.
    Let us know what was wrong, so others can use your post.

  • ArrayDeque as a stack doesn't work as expected with complex objects

    Trying to use ArrayDeque as a strorage for complex values <PSList<PSol>> (i.e. Arraylists of structured Values PSol), this doesn't work as expected. The code below should produce different values of pSLWk, being stored on bkStack, which are then to be retrieved by pop() to the variables pSL1, pSL2, pSL3.
    However, retrieval only ends up with three identical data sets (variables) pS1,pS2, pS3.
            public PSList<PSol> pSL;
            private ArrayDeque<PSList<PSol>> bkStack=new ArrayDeque<PSList<PSol>>();
            pSLWk=new PSList<PSol>();       // Constructor copies some Array (static field) to the PSLists
            pSL=new PSList<PSol>();
            pSLAux=new PSList<PSol>(pSLWk);   // Constructor copies from existing PSList
            pSLWk.checkResult("pSLWk prior to setDefaults - modifies pSLWk !");
            setDefaults();                                                            // Modifies pSLWk only
            pSLWk.checkResult(" pSLWk after setDefaults");              // .. got changes (o.k.)
            pSL.checkResult(" pSL after setDefaults");                  // .. unchanged  (o.k.)
            pSL.checkResult(" pSLAux after setDefaults");               // .. unchanged  (o.k.)
            bkStack.push(new PSList<PSol>(pSLWk));                      // store changes in bkStack
            pSLWk.getEl(77).setVal(new StringBuffer("4"));              // change pSLWk again (value 4 @ 77)
            pSLWk.checkResult("pSLWk, after PUSH, THEN modify 4@77");   // .. got change (o.k.)
            pSL.checkResult("pSL after setVal 77");
            bkStack.push(pSLWk);                      // store changes in bkStack
            pSLWk.getEl(80).setVal(new StringBuffer("8"));              // change pSLWk again (value 8 @ 80)
            pSLWk.checkResult("pSLWk after setVal 8@80");               // .. got change (o.k.)
            pSL.checkResult("pSL after setVal 80");
            bkStack.push(new PSList<PSol>(pSLWk));                      // store changes in bkStack
            pSL1=new PSList<PSol>(bkStack.pop());
            pSL1.checkResult("pSL1 after 1st pop");
    //      pSL1=bkStack.pop()                                          // Straightforward way doesn't work either...
            pSL2=new PSList<PSol>(bkStack.pop());
            pSL2.checkResult("pSL2 after 2nd pop");
            pSL3=new PSList<PSol>(bkStack.pop());
            pSL3.checkResult("pSL3 after 3rd pSLWk=..pop()");Here the result from the code above:
    debug:
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSLWk prior to setDefaults - modifies pSLWk !
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2   63 <C.R.> pSLWk after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSL after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSLAux after setDefaults
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  463 <C.R.>pSLWk, after PUSH, THEN modify 4@77
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 77
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSLWk after setVal 8@80
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 80
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL1 after 1st pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL2 after 2nd pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL3 after 3rd pSLWk=..pop()
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSLWk prior to setDefaults - modifies pSLWk !
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2   63 <C.R.> pSLWk after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSL after setDefaults
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.> pSLAux after setDefaults
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  463 <C.R.>pSLWk, after PUSH, THEN modify 4@77
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 77
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSLWk after setVal 8@80
    1 8 9   4  5 42 9 7  5  2 6 4 923     1  7   3         86   7 5  3 69     2   63 <C.R.>pSL after setVal 80
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL1 after 1st pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL2 after 2nd pop
    128 96  4635 42 9 7945  2 6 47923     1  7   3 9       86   7 5  3 69     2  4638<C.R.>pSL3 after 3rd pSLWk=..pop()What's the problem with this ?
    Rem: I tried the simple approach as well:
    bkstack.push(pSLWk);
    ...

    Thank you for your comments, although I see we still don't have a common understanding of the problem.
    Firstly, I add the code for the PSList and the PSol classes, so you might find some problem with that:
         public class PSol     {
              private StringBuffer val;
              private int zI;
              private int sI;
              private int bI;
                        // == Konstruktor
              public PSol( StringBuffer v, int z, int s, int b )     {
                   this.val=v;
                   this.zI=z;
                   this.sI=s;
                   this.bI=b;
                        // == Getter,Setter
              public StringBuffer getVal()     {return val;}
              public int getZ()     {return zI;}
              public int getS()     {return sI;}
              public int getB()     {return bI;}
              public int getVSize()     {return val.length();}
              public void setVal(StringBuffer v)     {val=v;}
              public boolean hasVChar( StringBuffer ch, boolean delCh )     {
                   boolean bT=false;
                   StringBuffer fSt=getVal();
                   if (!(fSt.indexOf( ch.toString() )     == -1))     {
                        bT=true;
                        if (delCh)     {
                             setVal(fSt.deleteCharAt(fSt.indexOf( ch.toString() )));
                   return bT;
         }     // PSol
         public class PSList<E> extends ArrayList<PSol>     {
                   /**     Construktor 1: PSList(v,z,s,b) - makes list from single arrays
              private static final long serialVersionUID =  4711L;                         // ### JAVAC Warning! ###
            public PSList (String[] vS, int[] z, int[] s, int[] b) {
                   StringBuffer[] v=new StringBuffer[valDim];
                for (int i=0;i<valDim;i++)  {
                    v=new StringBuffer(vS[i]);
    //ArrayList<PSol> pSL=new ArrayList<PSol>;
                   for (int i=0; i<valDim; i++) {
                        this.add( new PSol( v[i], z[i], s[i], b[i] ) );
    /** Konstruktor2 : makes list from matrix array
    public PSList () {
    for (int j=0; j<nDim; j++) {
    for (int i=0; i<nDim; i++) {
    this.add( new PSol( new StringBuffer(sGuiArr[i][j]), i, j , i/locDim + (j/locDim)*locDim) );
                        /**     ------- Construktor 3 : PSList(PSList pS) - makes list as a copy of an existing one
    public PSList ( PSList<PSol> pX )     {
                   super (pX); // ArrayList-Constructor (Collection)
    // get Element <PSol>
    public PSol getEl ( int i )     {return get(i);}
         public int getCount()     {return size();}
         public int getTValLg()     {
                   int lg=0;
                   for (int i=0; i<getCount(); i++)     {
                        lg=lg + getEl(i).getVal().length();
                   return lg;
                        /**     ------- checkResult()     -     Check if alll elements are single char +dump
         public boolean checkResult(String messg)     {
                   boolean allOne=true;
                   for (int i=0; i<size(); i++)     {
                        if ( getEl(i).getVal().length() > 1 )     {
                             allOne=false;
                             System.out.print(" ");
                   else     {
                        System.out.print(getEl(i).getVal());
                   System.out.println("<C.R.>"+messg);
                   return allOne;
         }     // Class PSList
    Secondly, I don't really see what you mean by pointing out to 'only one "pSLWk" instance of PSList'. The variable pSLWk is the variable to be worked upon; after some change of the contents, I want to save this state of contents to the stack. When I pop that variable from the stack, I wouldn't want to restore it to pSLWK, but to some other variable, e.g. by public PSList<PSol> pSL1;
    pSL1=new PSList<PSol>(bkStack.pop());Again - to my understanding (which comes from old days of microprocessor coding... - there shouldn't be a need to know how the data came there, or what was the name of the variable who stored it there. And  : the implementation of ArrayDeque returns 'elements' of class E, not references !
    Thirdly, you're right, that the method of using a copy constructor for retrieval looks 'weird'. However - I had some other versions that didn't work either, e.g. the straightforward one, as I pointed out.
    And fourthly: yes, I'm almost sure that I'm messing up something somewhere. I went to this forum hoping to clarify that ... :)
    If you don't mind, could you please sketch a few lines of code, how to 'push' a complex variable to a ArrayDeque stack, and retrieve it - by 'pop()' - to some to other variable of the same class later ?
    Might make our discussion much easier, to see how things REALLY work.
    Thank you !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Applications folder in stack doesn't work properly

    Hi, I've installed the new Leopard 10.5 on both my macBook Pro and my new Imac 20".
    Once I put my applications folder as stack on the dock, every time I click on it to see the applications, it works badly, from the point of view of the graphic, it's not fluid on mac Machines, and on both there are 2 Gb of Ram.
    Has someone else the same problem?
    I also can not repair the permissions of the disk through the utility (I use Main Menu to repair the permissione) and I have serious problems with the Wi fi Internet connection. Both get's disconnetted randomly and with no warnings.
    HELP.
    Filippo Salbini
    Italy

    I only have a Mac mini, and regarding the issues with stacks and Applications folder, I don't seem to have any problems and I have 2GB of RAM too. I have 35 Applications that appear in my stack, two of those items being folders, 1 Applescript and the 2nd being the utilities folder and I don't seem to have any animation / graphic problems whatsoever seem fluid enough to me.
    I even did an experiment for you and I created a load of empty folders, 80 to be exact and put them in the applications folder to see whether it could have any baring on the animation or load times of the stack and it doesn't seem to effect it at all. The more things you have in there, the smaller the icons get (which is cool). I'm sorry I can't really help much, just giving feedback mainly.
    It might be a RAM problem though, what type of RAM do you have in both computers, maybe they're at fault? Well having said, I only have cheap third party Samsung RAM and I still don't seem to have problems.

  • Stacking doesn't work

    I select a group of photos and all the stacking instructions are greyed out. I'm selecting in grid view and in the filmstrip. I've quit and reopened a few times. Any suggestions?

    The problem i have with the stacking restriction relates to my fokder system. I have a manin folder that has my Raw files, as I work on some of them in photoshop I save the tif or psd file to a folder within the original folder. Unfortunately, you can't stack tif edit files if they are in a subfolder of the original main folder.
    I can see not being able to stack pics in totally separate folder trees, but why prohibit stacking among nested folders?
    Maybe I'm just being real old school about how I've handled filing photos. I would welcome hearing about a better way to structure.
    Dorian

  • The list view in Calendar doesn't work

    iPhone 3Gs with iOS 4 now can't to show the list mode view correctly in the Calendar. It mixes all meetings and lost any also. When I look with month or day mode it works correct, so I think it is not problem of my calendar data it is problem of this mode, it is a little bug of new firmware.

    http://discussions.apple.com/message.jspa?messageID=11749750#11749750

  • Visual Design view in JDeveloper doesn't work

    before it worked fine ,
    .... my friend gave me his code in UIX , i try to see the design from the visual design view , but I got surprised that that the design view didn't response .
    so could you please give the suggested solutions for this problems..
    Regards

    It would be helpful is you actually supply an error message or the actual UIX code that you are using.
    Also - how about openning a TAR with Oracle Support?

  • Update methode in model-view-controller-pattern doesn't work!

    I'm writing a program in Java which contains several classes. It must be possible to produce an array random which contains Human-objects and the Humans all have a date. In the program it must be possible to set the length of the array (the number of humans to be produced) and the age of the humans. In Dutch you can see this where is written: Aantal mensen (amount of humans) and 'Maximum leeftijd' (Maximum age). Here you can find an image of the graphical user interface: http://1.bp.blogspot.com/_-b63cYMGvdM/SUb2Y62xRWI/AAAAAAAAB1A/05RLjfzUMXI/s1600-h/straightselectiondemo.JPG
    The problem I get is that use the model-view-controller-pattern. So I have a model which contains several methodes and this is written in a class which inherits form Observable. One methode is observed and this method is called 'produceerRandomArray()' (This means: produce random array). This method contains the following code:
    public void produceerMensArray() throws NegativeValueException{
         this.modelmens = Mens.getRandomMensen(this.getAantalMensen(), this.getOuderdom());
    for (int i = 0; i < this.modelmens.length; i++) {
              System.out.println(this.modelmens.toString());
    this.setChanged();
    this.notifyObservers();
    Notice the methods setChanged() and notifyObservers. In the MVC-patterns, these methods are used because they keep an eye on what's happening in this class. If this method is called, the Observers will notice it.
    So I have a button with the text 'Genereer' as you can see on the image. If you click on the button it should generate at random an array. I wrote a controller with the following code:
    package kristofvanhooymissen.sorteren;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    /**Klasse GenereerListener.
    * @author Kristof Van Hooymissen
    public class GenereerController implements ActionListener {
         protected StraightSelectionModel model;
         /**Constructor.
         *@param model Een instantie van het model wordt aan de constructor meegegeven.
         public GenereerController(StraightSelectionModel model) {
              this.model = model;
         /**Methode uit de interface ActionListener.
         * Bevat code om de toepassing te sluiten.
         public void actionPerformed(ActionEvent arg0) {
         this.model=new StraightSelectionModel();
         try{
         this.model.produceerMensArray();
         } catch (NegativeValueException e){
              System.out.println("U gaf een negatieve waarde in!");
         this.model.setAantalMensen((Integer)NumberSpinnerPanel.mensen.getValue());
         this.model.setOuderdom((Integer)NumberSpinnerPanel.leeftijd.getValue());
    StraighSelectionModel is of course my model class. Nevermind the methods setAantalMensen and setOuderdom. They are used to set the length of the array of human-objects and their age.
    Okay. If I click the button my observers will notice it because of the setChanged and notifyObservers-methods. An update-methode in a class which implements Observer.
    This method contains the follow code:
    public void update(Observable arg0,Object arg1){
              System.out.println("Update-methode");
              Mens[] temp=this.model.getMensArray();
              for (int i = 0; i < temp.length; i++) {
                   OnbehandeldeLijst.setTextArea(temp[i].toString()+"\n");
    This method should get the method out of the model-class, because the produceerRandomArray()-methode which has been called by clicking on the button will save the produce array in the model-class. The method getMensArray will put it back here in the object named temp which is an array of Mens-objects (Human-objects). Then aftwards the array should be put in the textarea of the unsorted list as you could see left on the screen on the image.
    Notice that in the beginning of this method there is a System.out.println-command to print to the screen as a test that the update-method has been called.
    The problem is that this update method won't work. My Observable class should notice that something happened with the setChanged() and notifyObservers()-methods, and after this the update class in the classes which implement Observer should me executed. But nothing happenens. My controllers works, the method in the model (produceerRandomArray() -- produce random array) has been executed, but my update-method won't work.
    Does anyone has an explanation for this? I have to get this done for my exam an the 5th of january, so everything that could help me would be nice.
    Thanks a lot,
    Kristo

    This was driving me nuts, I put in a larger SSD today going from a 120GB to a 240GB and blew away my Windows Partition to make the process easier to expand OS X, etc.  After installing windows again the only thing in device manager that wouldn't load was the Bluetooh USB Host Controller.  Tried every package in Bootcamp for version 4.0.4033 and 5.0.5033 and no luck.
    Finally came across this site:
    http://ron.dotsch.org/2011/11/how-to-get-bluetooth-to-work-in-parallels-windows- 7-64-bit-and-os-x-10-7-lion/
    1) Basically Right click the Device in Device manager, Go to Properties, Select Details tab, Choose Hardware ids from Property Drop down.   Copy the shortest Value, his was USB\VID_05AC&PID_8218 
    2) Find your bootcamp drivers and under bootcamp/drivers/apple/x64 copy AppleBluetoothInstaller64 to a folder on your desktop and unzip it.  I use winrar to Extract to the same folder.
    3) Find the files that got extracted/unzipped and open the file with notepad called AppleBT64.inf
    4) Look for the following lines:
    ; for Windows 7 only
    [Apple.NTamd64.6.1]
    ; No action
    ; OS will load in-box driver.
    Get rid of the last two lines the following:
    ; No action
    ; OS will load in-box driver.
    And add this line, paste your numbers in you got earlier for USB\VID_05ac&PID_8218:
    Apple Built-in Bluetooth=AppleBt, USB\VID_05ac&PID_8218
    So in the end it should look like the following:
    ; for Windows 7 only
    [Apple.NTamd64.6.1]
    Apple Built-in Bluetooth=AppleBt, USB\VID_05ac&PID_8218
    5) Save the changes
    6) Select Update the driver for the Bluetooth device in device manager and point it to the folder with the extracted/unzipped files and it should install the Bluetooth drivers then.
    Updated:
    Just found this link as well that does the same thing:
    http://kb.parallels.com/en/113274

  • Auto-stack doesn't work

    I am new to Aperture and am exploring all of it's features. Unfortunately I cannot get auto-stack to work. I have a project with 900 pictures. When I slide the auto-stack slider to the right, I get a spinning ball. After a minute it looks like the images have been stacked. When I close the auto-stack HUD, all the stacking disappears again. Am I doing something wrong here? I do not think it has to to wit my MBP. It has to be fast enough.

    Not sure if this would make a difference, but are you importing the photos directly from the camera or are you using a card reader with your memory card?

  • Installlatest flash-says installation sucessful-go back to view video and doesn't work

    adobe flash?
    install- says sucessful- back to view and syas i must inatsll flash to view?

    What is your operating system, version & edition?
    What is your web browser?

  • ABAP and JAVA Stack ( Double Stack ) doesn't work with TDMS 3.0 correct ?

    Hi all
    I was in Walldorf and spoke with some Basis SAP persons and they told me that a "old"   "Double Stack" SAP couldn't transfer with TDMS. Is these answer correct and if its yes on which Guide i could read these ?
    Thanks for help
    SAPERLE

    Hi,
    here it is :
    TDMS shell creation
    Regards,
    Eddy

  • Importing from camera, auto-stack doesn't work

    Hi all,
    I've been using aperture for a while now. According to the manual Aperture should be able to do an auto-stack to the imported pictures and I can see the interval seconds slider on the import page. My camera is Canon 5d and I'm importing raw pictures.
    My problem is that if I touch the slider, it creates one huge stack of all the images on the camera memory card. So if it does an autostack, it treats all images as if they'd been shot at the exact same second. This is illustrated also if I tell aperture to sort the not yet imported pictures according to shooting time. They just appear in a random order after that.
    When the pictures have been imported, there is a correct shooting time/date in the EXIF information of the pictures. I'm not even sure if this is an aperture problem or a camera setting problem. When I look at the pictures on the camera screen, I can see the correct shooting time even in there.
    Any ideas?
    /hv

    Not sure if this would make a difference, but are you importing the photos directly from the camera or are you using a card reader with your memory card?

  • Explorer on PC viewing iweb creations doesn't work?

    Anyone surfed/tested their iweb creations on a PC with explorer?
    My iweb test page with movies does not fully load or scroll on the wife's PC with explorer. Works great in Safari on all my macs.

    Anyone surfed/tested their iweb creations on a PC
    with explorer?
    My iweb test page with movies does not fully load or
    scroll on the wife's PC with explorer. Works great in
    Safari on all my macs.
    Hi sharkguy - Good point!
    Stats to Remember when designing websites:
    1. less than 4% of internet surfers use some version of Mac OS
    2. less than 7% of all internet surfers use Firefox as a browser of choice
    3. less than 3% of all internet surfers use Safari as a browser of choice
    4. at least 85% of all internet surfers use some version of Internet Explorer
    5. Netscape, Opera, and Mozilla make up the rest of browsers used
    Best wishes on your project, Rick
    iMac G5 iSight 20" - 30G iPOD - HP Pav 15" WS and Toshiba Sat 17" WS   Mac OS X (10.4.6)   Canon 20D & A620

  • View in browser doesn't work

    I have set up a localhost server on port 8500 for ColdFusion Builder, but when I try to run a simple test of
    <cfoutput>#DateFormat(Now)())#
    </cfoutput>
    and check it in Safari browser, I get a blank page. None of my .cfm pages show up in Builder. What's wrong?
    Thanks,
    Tedra

    Your description is a bit sketchy, however a few thoughts (might actually start with step 4).
    1) make sure your cfm files and project is set up to be under your ColdFusion9 wwwroot.  So, on windows, if your project was called test, the correct folder would be c:\ColdFusion9\wwwroot\test, with the .cfm files under that directory.
    2) make sure you can bring up the ColdFusion9 administrator panel.  Under Servers, right-click the server you setup, and do "launch ColdFusion Administrator".  Make sure your local server is setup with the right passwords.
    3) check your project properties (right click on your project, select properties), and here make sure your project is referencing the server.  From there you should be able to switch from the Source|Firefox|IE tabs (that's what I have on Windows), and something should show up.  Also, when you run the .cfm file in an external browser.
    4) Step 1, however, should be verifyable OUTSIDE of CF Builder, with a path something like:
         http://localhost:8500/project-directory-name/example.cfm file
    Also of course make sure that http://localhost:8500/CFIDE does something.   That should tie it altogether, since when you do a launch/run from CF Builder, you can compare the address it puts in your browser, with the aforementioned addresses.
    Let us know what was wrong, so others can use your post.

Maybe you are looking for

  • The order of my ical 'all day' events changes when i go into print mode?

    The order of my ical 'all day' events changes when i go into print mode. What can i do to keep the order of events i so painstakingly created?

  • Sending Multiple response for a request

    Hi, I have a HTML form and have used a post method to send the details in the form to my web service. Inside my web service, I perform a validation with the data received and send back a error message if the data received is not proper. Suppose if th

  • How do I create this kind of synth track?

    I'm trying to recreate the synth instrument used in this song in Garageband... from 0:05-0:13 http://www.youtube.com/watch?v=vW1hv37imjw I'm not sure how I should go about doing so...I don't want to be playing individual keys for each chord pressed.

  • Need a internet download manager integration add on for waterfox

    was running latest Firefox,changed to water-fox for win7 64bit.got a message saying i needed to get integration module./extension?

  • Increase MCEX03

    Hi guru, how can deactivate  code MCEX03 ? This code increase 1.5 GB /day  the table ARFCSDATA. How can i resolve this problem? My release SAP R3 Enterprise 4.7 ext 1.10 with SP BASIS SAPKB62040. Pleae help me Thank you MC