Drag n Drop Facility in xMII 12.0

Dear All
Is there any way to put a drag and drop facility to user,so that he/she can able to change the colum/view according.
Suppose,user wants to see production on a date,prod area,Prod People etc,instead of creating 3/4 transaction ,is it possible in one transaction with drag/drop facility.
Buiplab

I assume you are referring to rearranging iGrid columns?  In MII 12.1 AllowColumnReordering was added to the iGrid, but this does not apply to 12.0.
DisplayColumns is the property name that controls the view, so providing the user with a simple javascript mechanism to set this property would not be too hard.
document.APPLET.getGridObject().setDisplayColumns("A,B,C");
document.APPLET.updateGrid(false);

Similar Messages

  • How to implement drag-and-drop functionality in xMII iGrid?

    Hi,
    Is it possible to implement the drag and drop functionality between two iGrids of xMII in an irpt page? If yes can anyone please explain how?
    Thanks in advance,
    Dipankar

    http://tool-man.org/examples/sorting.html
    You would have to be creative and do something like this.

  • Drag andn Drop facility in af:tree in ADF Faces

    Hi,
    I am exploring on the possibilities to get drag and drop feature working in an ADF Faces Tree element. Basically, I want to drag the nodes in the tree under other nodes within the same tree.
    I tried using some Javascript libraries to achieve the same.
    http://ajaxpatterns.org/Drag-And-Drop#In_A_Blink
    But it seems that ADF Faces generate the "Id" of the nodes of the tree by prepending some string like "_id1:" to the ID provided in the Property Inspector for the node stamp of the tree element. So, we cannot use those libraries either which rely on the node id of the elements.
    Does ADF Faces plan to introduce this drag and drop feature in the af:tree element.
    Any help will be highy useful.
    Thanks,
    Ankit Goel

    Hi Frank,
    Can we know as to when ADF is planning to bring the drag and drop feature in ADF Tree component. Also, we would want to get a handle to the node ids of the tree. We need this to implement some right click features on the tree nodes. Is this also considered in the new UI features project.
    Can we know of any page where all new upcoming features are listed, or we can request for any desired UI features. Please help.
    Thanks,
    Ankit

  • Drag and drop in same container

    I am having a Vbox and have number of panels inside it.
    I need to add a drag and drop facility to my VBox so that
    using my mouse, I can change the order of panels in my Vbox.

    Hey thanks Tracy. Here is an another method.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:Script>
    <![CDATA[
    import mx.effects.easing.Back;
    import mx.containers.HBox;
    import mx.containers.Box;
    import mx.controls.Alert;
    import mx.core.IUIComponent;
    import mx.events.DragEvent;
    import mx.managers.DragManager;
    import mx.core.DragSource;
    import mx.collections.ArrayCollection;
    private var mouseIsDown:Boolean=false;
    private var accWin:TitleWindow;
    private var atLeastOneNotVis:Boolean=false;
    private var graphData:ArrayCollection = new
    ArrayCollection();
    private function toggleChartAndCb(graphWin:TitleWindow,
    graphCb:CheckBox, show:Boolean):void{
    graphCb.selected = show;
    this.toggleChart(graphWin,show);
    private function toggleChart(graphWin:TitleWindow,
    show:Boolean):void{
    if(show){
    graphWin.visible=true;
    graphWin.height=150;
    }else{
    graphWin.visible=false;
    graphWin.height=0;
    private function
    dragInit(graphWin:TitleWindow,graphData:ArrayCollection,
    event:MouseEvent,dataFormat:String):void{
    if(mouseIsDown){
    var ds:DragSource=new DragSource();
    ds.addData(graphData,dataFormat);
    DragManager.doDrag(graphWin,ds,event);
    private function
    handleDragEnter(event:DragEvent,dataFormat:String):void{
    if(event.dragSource.hasFormat(dataFormat)){
    DragManager.acceptDragDrop(IUIComponent(event.target));
    private function handleDragDrop(acceptor:TitleWindow):void{
    accWin=acceptor;
    private function handleDragComplete(event:DragEvent):void{
    var initWin:TitleWindow = event.dragInitiator as
    TitleWindow;
    if(accWin!=null && accWin!=initWin){
    var initWinIdx:Number =
    initWin.parent.getChildIndex(initWin);
    var accWinIdx:Number = accWin.parent.getChildIndex(accWin);
    //same parents, just flip
    if(accWin.parent==initWin.parent){
    accWin.parent.setChildIndex(accWin,initWinIdx);
    accWin.parent.setChildIndex(initWin,accWinIdx);
    //not same parent
    else{
    var initChildArr:Array=(Box(initWin.parent)).getChildren();
    var initChildSibling:DisplayObject;
    for each(var initChild:DisplayObject in initChildArr){
    if(initChild.name!=initWin.name){
    initChildSibling = initChild;
    break;
    var initWinRef:DisplayObject=
    initChildSibling.parent.removeChild(initWin);
    accWin.parent.addChildAt(initWinRef,accWinIdx);
    var accWinRef:DisplayObject =
    accWin.parent.removeChild(accWin);
    initChildSibling.parent.addChildAt(accWinRef,initWinIdx);
    override public function localToContent(point:Point):Point{
    return point;
    private function
    checkAndHandleDE(event:DragEvent,cont:Box,dataFormat:String):void{
    if(event.dragSource.hasFormat(dataFormat)){
    var childArr:Array=cont.getChildren();
    var atLeastOneNotVis:Boolean=false;
    for each(var currChild:TitleWindow in childArr){
    if(!currChild.visible){
    atLeastOneNotVis=true;
    break;
    if(atLeastOneNotVis){
    DragManager.acceptDragDrop(IUIComponent(event.target));
    private function
    checkAndHandleDD(event:DragEvent,cont:Box):void{
    var childArr:Array=cont.getChildren();
    for each(var currChild:TitleWindow in childArr){
    if(!currChild.visible){
    accWin=currChild;
    break;
    ]]>
    </mx:Script>
    <!--Checkboxes-->
    <!--I have used checkboxes to show that the panels can be
    toggled-->
    <mx:Panel width="100%" horizontalAlign="center"
    layout="horizontal">
    <mx:CheckBox id="panel1Cb" change="toggleChart(panel1,
    panel1Cb.selected)"
    label="Panel 1" selected="true"/>
    <mx:CheckBox id="panel2Cb" label="Panel 2"
    selected="true"
    change="toggleChart(panel2, panel2Cb.selected)"/>
    <mx:CheckBox id="panel3Cb" label="Panel 3"
    selected="true"
    change="toggleChart(panel3, panel3Cb.selected)"/>
    <mx:CheckBox id="panel4Cb" label="Panel 4"
    selected="true"
    change="toggleChart(panel4, panel4Cb.selected)"/>
    <mx:CheckBox id="panel5Cb" label="Panel 5"
    selected="true"
    change="toggleChart(panel5, panel5Cb.selected)"/>
    <mx:CheckBox id="panel6Cb" label="Panel 6"
    selected="true"
    change="toggleChart(panel6, panel6Cb.selected)"/>
    <mx:CheckBox id="panel7Cb" label="Panel 7"
    selected="true"
    change="toggleChart(panel7, panel7Cb.selected)"/>
    <mx:CheckBox id="panel8Cb" label="Panel 8"
    selected="true"
    change="toggleChart(panel8, panel8Cb.selected)"/>
    <mx:CheckBox id="panel9Cb" label="Panel 9"
    selected="true"
    change="toggleChart(panel9, panel9Cb.selected)"/>
    </mx:Panel>
    <!--Graph Panel-->
    <!--For each row add an HBox and keep the number of
    containers same. You just have to change the id of the container
    and references to it in various events-->
    <mx:HBox id="upperBox" mouseDown="{mouseIsDown=true}"
    mouseUp="{mouseIsDown=false}"
    dragEnter="checkAndHandleDE(event,upperBox,'objFormat')"
    width="100%"
    dragDrop="checkAndHandleDD(event,upperBox)">
    <mx:TitleWindow id="panel1" title="Panel 1"
    showCloseButton="true"
    close="toggleChartAndCb(panel1,panel1Cb,false)" width="100%"
    height="150"
    mouseMove="dragInit(panel1,graphData,event,'objFormat')"
    dragEnter="handleDragEnter(event,'objFormat')"
    dragDrop="handleDragDrop(panel1)"
    dragComplete="handleDragComplete(event)"/>
    <mx:TitleWindow id="panel2" title="Panel 2"
    showCloseButton="true"
    close="toggleChartAndCb(panel2,panel2Cb,false)" width="100%"
    height="150"
    mouseMove="dragInit(panel2,graphData,event,'objFormat')"
    dragEnter="handleDragEnter(event,'objFormat')"
    dragDrop="handleDragDrop(panel2)"
    dragComplete="handleDragComplete(event)"/>
    contied... to next message

  • Drag and Drop Text in FrameMaker 10

    I just installed TCS 3 with Frame 10.  Prior to this release I could triple-click a paragraph and select the following (or previous) paragraphs by dragging the mouse.  Now in Frame 10 after I triple-click, Frame thinks that I want to drag and drop text rather than simply selecting text.  It only selects the one word on which the mouse cursor rests and insists on prompting me to drag the text somewhere.  If I triple-click and release the mouse button, then the whole para is selected, but I cannot select any more text because I have already released the mouse.
    How do I turn off the drag and drop text feature?  I'm finding this "enhancement" frustrating at best.

    AFAIK, the drag'n drop facility is hardwired into the code, so you can't change the behaviour. However, if you've made a paragraph selection using a triple-click, you can select additiona paragraphs by holding down the shift key and single-clicking at the point that you wish your selection to extend to.

  • No drag and drop

    Hi,
          Having problems with my G4 1.50ghz. I've lost the drag and drop facility and when i try to copy and paste instead, the "paste" is greyed out. So, basically, I can't move anything around my computer. It's the same problem if i use a mouse of any kind.
    Also, just lately if i try to use my computer on battery power it shuts down after a few minutes (the battery is showing full charge), and when I switch it on again I have to reset the time as it reverts to 1971!
    I don't know if the two problems are connected,
    By the way I have tried resetting the PRAM but makes no difference.
    Thank you four time, any ideas?
    DM

    The last time I saw something like this, I was trying to write on a NTFS partition and had forgot that I had deactivated Paragon NTFS.
    For the battery issue, at first sight I don't believe that both are connected, it looks like your mac is not one of the newest model , the lithium battery that keeps your clock running is probably dead, that is where I would look at first, open the beast, look for this battery and replace it (should not cost more than a $1 or $2) ... Do this only if you feel confident, the PowerBook G4 had many many little screws that need different unusual screwdrivers.

  • I want to Sync my iPhone 4 to iTunes however I get an error message from iTunes each time I connect the phone to the PC saying that I should restore to factory settings. Frustrating because it's already annoying enough that I can't drag and drop mp3's!!!

    I have never been so frustrated before in my life with any phone. I find it obnoxious as it is that I cannot simply drag and drop files (especially MP3's) straight from my PC directly into my phone, which I have been used to doing up until now. Everyone who convinced me to get the iPhone has instructed me that my frustration can be fixed by downloading iTunes and syncing it all up via that program (which I have never used before). So, I downloaded the program successfully, however when I connect the iPhone 4 to the PC and iTunes is open, I get an error message that 'iTunes cannot read the content of the iPhone "iPhone" and that I should go to the Preferences tab of the iPhone and select 'restore' to restore this phone to factory settings. First of all, I don't understand why I need to do that. I have already downloaded apps and other important things in the 2 days that I have the phone. I am also scared that it will erase my contacts. This is such a headache. Music is very imporatant to me, but I am getting so frustrated that I don't have freedom over the phone which I thought was supposed to be one of the best out there. I would really appreciate help in this matter. I am sure the phone is great but I am on the verge of taking it back and getting something else.

    Hey joshuafromisr,
    If you resintall iTunes, it should fix the issue. The following document will go over how to remove iTunes fully and then reinstall. Depending on what version of Windows you're running you'll either follow the directions here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    or here:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Best,
    David

  • When I drag and drop an icon from the address bar to the desktop is does creat the shortcut but will not display the website icon, only the firefox icon, how can I display website icons?

    When I drag and drop a website icon from the Forefox address bar to the desk top, the short cut is created but the icon that appears is the firefox Icon. I want to disply the icon from the website that the short cut refers to. I have checked all I can think of in my computer to no avail.

    You have to assign the favicon yourself to the desktop shortcut (right-click the shortcut: Properties) after you have dragged the link to the desktop.
    You can usually find the favicon in Tools >Page Info > Media and save the icon there.
    Otherwise use the main domain of the website and add favicon.ico (e.g. mozilla.com/favicon.ico ) to display the favicon in a tab and save that image to a folder.

  • Is there any way of dragging and dropping an iCal event showing in week view across to a date in the left sidebar monthly calendar?

    Hi, Im not a frequent forum poster, as most of my questions can be found already answered on them!
    This is a question Ive had for a long time and it amazes me that no-one else seems to ask it. I check at each OS upgrade but its never there...
    Is there any way of dragging and dropping an iCal event showing in week view across to a date in the left sidebar monthly calendar?
    I was able to do this years ago in MS Outlook, and utilized it all the time when I needed to push things back, now I have to open the event and select an new date in the drop-down calendar for each & every event I want to move to a new month at the end of the month.
    If its definitely not possible, how to you ask apple to consider including it - it doesnt seem like a particularly difficult task.
    Thankyou
    Andrew.

    Andrew,
    Is there any way of dragging and dropping an iCal event showing in week view across to a date in the left sidebar monthly calendar?
    No, but you can use cut/paste. Cut (⌘X) the event, then click on the week where you want to move the event, and Paste (⌘V).
    If you have a suggestion for Apple to change that method use: Apple - Mac OS X - Feedback.

  • Why does not drag and drop work?!

    Hello,
    I am trying to implent a drag and drop from a table to an icon representing a trash.
    The drop handler fails in converting the selected rows to a list:
    com.sun.el.MethodExpressionImpl@87d9c00d javax.el.ELException: java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List
    Could you help me to understand why? Below are the details.
    This is the af:table:
    <af:table var="row" rowBandingInterval="0" id="t1"
    value="#{bindings.MyView1.collectionModel}"
    rowSelection="multiple"
    columnStretching="last"
    horizontalGridVisible="false"
    verticalGridVisible="false" fetchSize="-1"
    autoHeightRows="6" width="190"
    disableColumnReordering="true">
    <af:column sortable="true" headerText="Entry" id="c1"
    align="start">
    <af:outputText value="#{row.Description}" id="ot1"/>
    </af:column>
    <af:dragSource actions="MOVE" defaultAction="MOVE"
    discriminant="delete"/>
    </af:table>
    This is the drop area:
    <af:image source="Images/empty_trash_32.png" id="i2">
    <af:dropTarget dropListener="#{backingBeanScope.DropHandlerBean.dropHandler}"
    actions="MOVE">
    <af:dataFlavor flavorClass="org.apache.myfaces.trinidad.model.RowKeySet"
    discriminant="delete"/>
    </af:dropTarget>
    </af:image>
    This is the failing listener listener (the failing point is bold):
    public DnDAction dropHandler(DropEvent dropEvent) {
    DnDAction dnda = DnDAction.NONE;
    if (dropEvent.getProposedAction() == DnDAction.MOVE) { // delete
    RichTable table = (RichTable)dropEvent.getDragComponent();
    //determine the rows that are dragged over
    Transferable t = dropEvent.getTransferable();
    //when looking for data, use the same discriminator as defined
    //on the drag source
    DataFlavor<RowKeySet> df =
    DataFlavor.getDataFlavor(RowKeySet.class, "delete");
    RowKeySet rks = t.getData(df);
    if (rks == null) {
    return DnDAction.NONE;
    Iterator iter = rks.iterator();
    while (iter.hasNext()) {
    //get next selected row key
    System.out.println(rks.toArray().length); // the number of selected rows is ok
    List key = (List)iter.next(); // here gives: java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List
    //make row current so we can access it
    table.setRowKey(key);
    //the table model represents its row by the ADF binding class,
    //which is JUCtrlHierNodeBinding
    JUCtrlHierNodeBinding rowBinding =
    (JUCtrlHierNodeBinding)table.getRowData();
    Row row = (Row)rowBinding.getRow();
    //delete row;
    row.remove();
    //activate animation
    dnda = DnDAction.MOVE;
    return dnda;
    thanks.

    I did try, I obtained this:
    java.lang.NullPointerException
    Why NullPointerException?
    I don't know if this helps, but consider that the collection model comes from a ViewObject built on three EOs with many fields, although the table only shows one column.
    This is the Iterator in my pageDef:
    <table IterBinding="MyView1Iterator" id="MyView1">
    <AttrNames>
    <Item Value="Cod1"/>
    <Item Value="Cod2"/>
    <Item Value="Cod3"/>
    <Item Value="Cod4"/>
    <Item Value="Description"/>
    <Item Value="Cod5"/>
    </AttrNames>
    </table>
    Any idea?
    I will see the Key content with the debugger.

  • Did my first back up today using external hard drive and time machine now i can't drag and drop

    Hi, i did my first back up today using time machine it all went onto my external hard drive fine. Now i cant drag and drop anyhting. I assume ive cahnged some settings in time machine but cant figure it out what to do can some one help ?
    thanks

    Brandbasher wrote:
    Thanks Pondini but i have closed time machine, removed external hard drive.
    Did you eject it first?
    Now i cant drag and drop anything on my desk top, or mail or any other application. Ive tried moving folders, documents none of it works. Even moving around documents within a folder, it wont let me chnage the position of files.
    That shouldn't be related to Time Machine (especially if the backups aren't mounted).
    What happens when you try those things?  Do you get any messages?  Anything you can post a screenshot of?
    Have you tried a Restart?
    Does it happen in another user account?  (If you don't have one, create one via System Prefs > Users & Groups.)

  • Drag and Drop (re-order) Thumbnails in Organizer

    I am using Photoshop Elements version 5.0.2
    I would like to re-order pictures in an order that will make sense for me in my business. I suppose I can go through each pix and change the time on them, so I can then sort by time stamp.
    Is there an easier way to do this? I was hopeful that I could drag and drop them in Thumbnail view - but I cannot.
    Thank you,
    Jamie

    >Is there anyway to delete the photos in the main well, without losing them from my collection?
    As I understand the design, the main well is intended to be all the photos that you are managing with Photoshop Elements.
    Collections are used to display a specific group of those photos in your chosen sequence for any given activity.
    I suspect that since you are using a consumer product such as Photoshop Elements for your business purpose, you may need to make some compromises like having a default (the main photo well) display sequence which you see first when starting PSE that is not what you would choose.
    This is not bad if PSE does what you want - just additional steps to switch to the Collection view and also to maintain (drag and drop) the sequencing of the collection when you add additional photo files to a Collection.

  • Problems with ListViews Drag and Drop

    I'm surprised that there isn't an Active X control that can do this more
    easily? Would
    be curious to find out if there is - although we aren't really embracing the
    use of
    them within Forte because it locks you into the Microsoft arena.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 02/03/98 01:33
    PM ---------------------------
    "Stokesbary, Michael" <[email protected]> on 02/03/98 12:19:52 PM
    Please respond to "Stokesbary, Michael" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Problems with ListViews Drag and Drop
    I am just curious as to other people's experiences with the ListView
    widget when elements in it are set to be draggable. In particular, I am
    currently trying to design an interface that looks a lot like Windows
    Explorer where a TreeView resides on the left side of the window and a
    ListView resides on the right side. Upon double clicking on the
    ListView, if the current node that was clicked on was a folder, then the
    TreeView expands this folder and the contents are then displayed in the
    ListView, otherwise, it was a file and it is brought up in Microsoft
    Word. All this works great if I don't have the elements in the ListView
    widget set to be draggable. If they are set to be draggable, then I am
    finding that the DoubleClick event seems to get registered twice along
    with the ObjectDrop event. This is not good because if I double click
    and the current node is a folder, then it will expand this folder in the
    TreeView, display the contents in the ListView, grab the node that is
    now displayed where that node used to be displayed and run the events
    for that as well. What this means, is that if this is a file, then Word
    is just launched and no big deal. Unfortunately, if this happens to be
    another directory, then the previous directory is dropped into this
    current directory and a recursive copy gets performed, giving me one
    heck of a deep directory tree for that folder.
    Has anybody else seen this, or am I the only lucky one to experience.
    If need be, I do have this exported in a .pex file if anybody needs to
    look at it more closely.
    Thanks in advance.
    Michael Stokesbary
    Software Engineer
    GTE Government Systems Corporation
    tel: (650) 966-2975
    e-mail: [email protected]

    here is the required code....
    private static class TreeDragGestureListener implements DragGestureListener {
         public void dragGestureRecognized(DragGestureEvent dragGestureEvent) {
         // Can only drag leafs
         JTree tree = (JTree) dragGestureEvent.getComponent();
         TreePath path = tree.getSelectionPath();
         if (path == null) {
              // Nothing selected, nothing to drag
              System.out.println("Nothing selected - beep");
              tree.getToolkit().beep();
         } else {
              DefaultMutableTreeNode selection = (DefaultMutableTreeNode) path
                   .getLastPathComponent();
              if (selection.isLeaf()) {
              TransferableTreeNode node = new TransferableTreeNode(
                   selection);
              dragGestureEvent.startDrag(DragSource.DefaultCopyDrop,
                   node, new MyDragSourceListener());
              } else {
              System.out.println("Not a leaf - beep");
              tree.getToolkit().beep();
    }

  • An mp3 file on my computer will not import to itunes by either the drag-and-drop or the Add File to Library method.  Can't figure out what I'm doing wrong.  My OS is Windows 7.

    I purchased an mp3 from a private website on my laptop.  The itunes library i sync ipod to is on my desktop, so i copied the mp3 onto a flash drive and then into my desktop in the Downloads folder and Desktop folder as well as the itunes music folder, 3 places.  I opened itunes on the desktop and read the instructions for importing music that's already in my computer.  Neither the drag-and-drop or the Add File to Library method works.  I've tried both ways over and over.  Cannot figure out what the problem is.  I do note that the name of the mp3 file doesn't show the .mp3 extension, it appears as simply it's title, Eating Healthy, without any extension at all.  Could the filename be the problem, or do you have any other idea what I'm doing wrong?  My OS is Windows 7, using IE9.  Thanks.
    ADDENDUM AFTER READING ANOTHER DISCUSSION HERE:  I have now tried right clicking the song in Windows Explorer and choosing Open With, clicking itunes.  The mp3 plays in itunes but does not add to the library.

    I don't have a Recently Added playlist.  However, I discovered that the file I had named Eating Healthy was given the name You Can Enjoy Eating Healthy when it copied to iTunes.  I'm guessing iTunes pulled the full name of the piece from the internet.  Upshot--the mp3 did transfer to iTunes on all 3 tries, but I was looking in my alphabetized list under E, not Y, so I didn't see it there.  Thanks for your help. 

  • Using drag and drop property in forms.

    Hi all,
    I want to use drag and drop property in a form during
    runtime.I am using oracle 7.3.I don't want to call any
    another application.
    Is there any way?
    Thx in advance.

    Mona ! First tell your problem in brief ..Actually what you want
    on runtime ...would you like to fetching the data from one item
    to another or change the position of any item or
    pushbutton ...or what..give detail ...obviously i can help you..
    there are many commands like set_item_property ,
    get_item_property but right now i could not understand your
    prob ..tell me in brief..
    You can ask me at [email protected]..
    -Anwar

Maybe you are looking for

  • HT3798 Ipod Classic will not sync with windows 8 and newest itunes

    I have ipod classic, 160gb, with new computer with Windows 8 and latest version of Itunes - came from xp and previous version of itunes - and never had a syncing problem.  All my songs are in new itunes on new computer, however ipod will not sync.  H

  • I have hv30 canon, Final Cut Pro X connecting to my Macbook Pro. doesn't show anything. Please help!

    Hey anyone who can help me! I have a new canon hv30 vixia. I have fianl cut pro X. I have the newest macbook pro. I have gone cords after cord trying to figure out what is the right one because everytimee i conect it nothing at ALL shows up. WHAT CAB

  • Why is menu size so much larger than the files?

    I am somewhat perplexed - I'm making a single-layer dvd and have a simple single screen theme (no animation) - it has one drop zone. The movie has 28 chapters so there are five of them, but so far I've added only one montage of photos to each menu pa

  • Issue when replying to emails

    I'm having some issues sending mail via the "reply" button. When I reply to an email and hit the "reply" button I get the spinning beach ball for about 30 seconds before the reply email opens up. Doesn't seem to make a difference what email I reply t

  • Snow Leopard and PS CS3.

    When I double click a tiff or jpg the file opens in "Preview" not PS.  What is wrong.  Can anyone help please?