Drag and Drop Option

I wanted to know if there is an option for Drag and Drop in Captivate 6.

30 objects is quite a lot, but either of the drag and drop widgets would be able to handle this number of drag objects.
If the user is expected to place the 5 drag objects in a specific order, you need to set up 5 targets and assign one drag object to each target.
If there is NO specific order, but you just want the user to select 5 objects from the 30 and place them in any order, you can set up a single target object that is large enough to hold all 5 drag objects and then use the Smart Snapping option to have the drag objects automatically position themselves in a list on top of the target.  The user can arrange the items in the list in any order they want just by dragging the objects around.

Similar Messages

  • Drag and drop option for hierarchy through Web Template

    Hi All,
    I have 2 hierarchies in one report. For example Product Hierarchy and Customer hierarchy. I would like to have an option in query where I can select the node from each hierarchy and the report is displayed only for the selected node/nodes. I am using Web Template. I used "Hierarchy filter" web item and was able to achieve this. But I would like to have a drag and drop option.
    I mean when I use Hierarchy filter web item, I have to select the particular node in the hierarchy. and then the report (Web Item - Table) is displayed based on the selection. But I would like to drag the node from the hierarchy and drop it to the report (Web Item - Table) and the report is displayed for the selected hierarchy node.
    Is this possible? How? Do I have to write any Java code or we can achieve this with BI Standard functionality.
    Regards.
    Parin Gandhi.

    This is not possible using Standard BI web functionality.
    If you are an expert with JavaScript and BI Web APIs you can probably write JS code to do this.

  • ITunes doesn't provide the ability to upload media from the iPod/Iphone. Why is this and why can't it be a drag and drop option as windows

    iTunes doesn't provide the ability to upload media from the iPod/Iphone. Why is this and why can't it be a drag and drop option as windows

    Because Apple have designed it that way.
    It's actually against the (Apple) rules of this forum to speculate about Apple's decisions, so if perhaps you should ask your question on a more appropriate (non-Apple) forum. If you continue the discussion here, you could simply find that your post gets removed by the moderators.

  • Drag-and-drop option or just iTunes

    Hi there! I'm thinking of buying an iPod but I travel a lot, meaning that usually I have to uploadmusic from my portable harddrive using a random PC in a random cyber cafe. Thus, I can't instal iTunes on evetry new machine I'll be using. Hence, is there an alternative to iTunes? I used to have a Sony MP3 player and they had such an option (MP3 Manager).
    Cheers!
    Anton

    No drag and drop for the iPod. Where are you getting the music from in a cyber cafe?

  • Drag and drop option in grid view

    Hi,
    I'm editing a large baptisim (750 photos) where I had another photographer. I nede the images in event order. On import, the photos are all over the place. I realise what I should have done, but now I'm here, I want to manualy drag and drop the photos in library-grid view. I'm dragging the photo and moving it, but it won't replace itself. What am I missing? Please help!

    But you can find two images from different cameras that appear to be shot at the same time or within a small interval. You can use their capture times to calculate the gap between the two camera's clocks.
    Now separate your files by cameras using the Library Filter (or Metadata Browser on LR 1.x) and make global time corrections with the Edit Capture Time command.
    Capture time shifts the date/time of each file in the selection by the same amount as you set for the 'most-selected' (or primary select) file.
    In the end, yes, sort by capture time.
    Export the whole shoot using a sequence in the file-name so they sort correctly on your customer's system.

  • Drag and drop option not active - Captivate 8

    Is there a particular slide you need to use or something else you need to have on your slide in order to activate the drag and drop menu item? All other menu items in the Interaction menu are active, but drag and drop.

    Drag and drop is not available for Responsive projects.
    Sreekanth

  • I can't sync my music on iPhone 4S - trying to do manually but don't get options to drag and drop .  If I uncheck everything in my library it won't remove from my iphone

    I cannot sync my 4s.  If I uncheck all items on my library it doesn't remove all music from my phone.  If I try to update manually I do not get the drag and drop options that the user guide states I should?

    Did you check "Manually manage music and videos" in iTunes before you tried to drag and drop?

  • Cannot Drag and Drop a Field from Connection manager to a worksheet.

    Hi
    I've recently installed the latest version of SQLDEVELOPER (1.5.3) onto winxp.
    I used to be able (previous version) to drag fields from the connection manager and drop onto a worksheet to save typing the field name when writing sql.
    This new version currently does not allow me to do this (it lets me drag, but not drop).
    I am able to drag a table object - and when I drop onto worksheet it creates a select statement with all fields.
    Is this by design, or is there a setting in preferences that I'm missing, or could there be something wrong with my installation ?
    Another not so good feature on this new version:
    When you Right-Click a package object on the connection manager and select "Run" : a window appears with automatically generated plsql block to run the package - great. However I used to be able to copy this plsql and paste it into anything I wanted (e.g. note-pad, or another application etc), but now I am unable to use the generated code unless I use the "Save File.." button. (Copy/paste etc is not available from either "right click", Edit menu or CTRL C).
    Again is this by design (I certainly used to be able to do it) or is it a problem specific to my installation.
    Any pointers much appreciated.
    jacr

    Jacr,
    We introduced the choice of drag and drop options in 1.5.0. Under preferences Database -> Worksheet Parameters, you can switch between the dragging on join clauses or individual statements including insert, update or delete. With this change and with the increase in code insight, we removed the ability to drag individual columns onto the worksheet. Have you tried the code insight feature in 1.5.3?
    I am able to use the copy and paste from the anonymous block to the worksheet works in 1.5.3. Are your copy and paste keys working else where? Perhaps resetting these keys to default in the preferences might help.
    Sue

  • Drag and Drop in a JTable (ContentTable)

    Hello Friends,
    I am designing a tool which can be used for daily task distribution, according to time (as we setup in a outlook calendar) using JTable.
    Now I am planning to use a Drag and Drop option where in the task from "one date and time" can be moved to "another date and time" i.e row/column.
    E.g : Suppose the new task which is scheduled at 12:30pm on 22/03/07 has to be rescheduled at 3:00pm 26/03/07. The drag and drop should automatically recognise.
    It would be greate if anyone can throw in thier ideas.. 10 DUKE points..
    Thanks and Rgds,
    Pradeep

    Here's an example of drag and drop of a cell in JTable.
    You can move or copy (using Ctrl) a cell to another location:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.StringSelection;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.io.IOException;
    import javax.swing.BorderFactory;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    import javax.swing.TransferHandler;
    import javax.swing.table.DefaultTableModel;
    public class DnD_Demo extends JFrame {
        public DnD_Demo() {
            setTitle("DnD Demo (Version 3)");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel panel = new JPanel(new GridLayout(1,1));
            panel.add(createTable("Table A"));
            getContentPane().add(panel,BorderLayout.CENTER);
            pack();
        private JPanel createTable(String tableId) {
            DefaultTableModel model = new DefaultTableModel();
            model.addColumn("Column 0");
            model.addColumn("Column 1");
            model.addColumn("Column 2");
            model.addColumn("Column 3");
            model.addRow(new String[]{tableId+" 00", tableId+" 01", tableId+" 02", tableId+" 03"});
            model.addRow(new String[]{tableId+" 10", tableId+" 11", tableId+" 12", tableId+" 13"});
            model.addRow(new String[]{tableId+" 20", tableId+" 21", tableId+" 22", tableId+" 23"});
            model.addRow(new String[]{tableId+" 30", tableId+" 31", tableId+" 32", tableId+" 33"});
            JTable table = new JTable(model);
            table.getTableHeader().setReorderingAllowed(false);
            table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
            JScrollPane scrollPane = new JScrollPane(table);
            scrollPane.setPreferredSize(new Dimension(400,100));
            table.setDragEnabled(true);
            table.setTransferHandler(new TableTransferHandler());
            JPanel panel = new JPanel();
            panel.add(scrollPane);
            panel.setBorder(BorderFactory.createTitledBorder(tableId));
            return panel;
        public static void main(String[] args) {
            new DnD_Demo().setVisible(true);
        abstract class StringTransferHandler extends TransferHandler {
            protected abstract String exportString(JComponent c);
            protected abstract void importString(JComponent c, String str);
            protected abstract void cleanup(JComponent c, boolean remove);
            protected Transferable createTransferable(JComponent c) {
                return new StringSelection(exportString(c));
            public int getSourceActions(JComponent c) {
                return COPY_OR_MOVE;
            public boolean importData(JComponent c, Transferable t) {
                if (canImport(c, t.getTransferDataFlavors())) {
                    try {
                        String str = (String)t.getTransferData(DataFlavor.stringFlavor);
                        importString(c, str);
                        return true;
                    } catch (UnsupportedFlavorException ufe) {
                    } catch (IOException ioe) {
                return false;
            protected void exportDone(JComponent c, Transferable data, int action) {
                cleanup(c, action == MOVE);
            public boolean canImport(JComponent c, DataFlavor[] flavors) {
                for (int i = 0; i < flavors.length; i++) {
                    if (DataFlavor.stringFlavor.equals(flavors)) {
    return true;
    return false;
    class TableTransferHandler extends StringTransferHandler {
    public JTable target;
    public int row = -1;
    public int col = -1;
    protected String exportString(JComponent c) {
    JTable table = (JTable)c;
    row = table.getSelectedRow();
    col = table.getSelectedColumn();
    return table.getValueAt(row, col).toString();
    protected void importString(JComponent c, String str) {
    target = (JTable)c;
    int row = target.getSelectedRow();
    int col = target.getSelectedColumn();
    target.getModel().setValueAt(str, row, col);
    protected void cleanup(JComponent c, boolean remove) {
    JTable table = (JTable)c;
    if (remove)
    table.getModel().setValueAt("", row, col);
    Message was edited by:
    Rodney_McKay

  • Drag And Drop In Webdynpro Abap

    Hi,
    Is It  Possible For Drag And Drop Option For Text Elements ( not For Images) In Webdynpro Abap..
    Do NeedFull Help..

    Hi,
    Drag and drop option is not possible for Text elements.
    It is possible only for Trere,Image,Itemlistbox,Table.
    Have a look at
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307f2eae-8cf0-2d10-6088-8aa2b1f00b23?quicklink=index&overridelayout=true
    http://help.sap.com/saphelp_sm70ehp1_sp26/helpdata/en/a5/bf47414eca430794189fbb5919cc2f/frameset.htm
    Regards,
    Karthiheyan M

  • Widget, Drag and Drop from palette not working.

    Hi All,
    I am trying to create a Widget using Eclipse and SAP Widget Tool.
    I was working on a simple widget creation from a custom widget template.
    The drag and drop option from palette doesn't work in my eclipse even after SAP widget tool has been installed.
    Please suggest.
    The configurations are.
    Eclipse - 3.4.2 ganymede
    Yahoo Widget Engine - 4.5.2
    jdk - 1.6.0_14 (latest one).
    Please help.

    I had to reinstall eclipse.

  • Captivate 8 drag and drop interaction

    Hello,
    just having a look at the new captivate 8 and when i try and make a drag and drop question i go to the normal place of window> drag and drop. but the problem is the drag and drop option is grayed out - could this be because i am only running it on a trial copy?

    Hi, I'm evaluating Captivate 8 and had the same question as SuzySu.
    If my client wants a drag and drop activity, would I need to create a non-responsive project and because being able to view on mobile is also required, would I need to create a separate responsive project without drag and drop? If so, when publishing the projects, would the proper project be automatically selected based on their viewing platform?
    Also, is there a list off all interactions that will or will not work with a responsive theme?
    Thank you!

  • Captivate 7 Drag And Drop

    Hello All,
    I have been playing with Drag And Drop and was trying to set a question up where I had 10 drag-able items which had 6 correct answers. What I was wondering is there was a way to allow multiple attempts to drag the correct answers while having feedback let the user know how many they currently have correct.
    Is that possible? Of do we have to set each answer up to report as correct choice as they drop them into the drop-zone? I have a sample set up where I can continually drag and drop items into the answer area, but it will only tell me I am wrong, it wont tell me how many correct items I have placed.
    I hope I have made sense.
    Any insight would be great.
    Thanks a bunch.
    jpm

    Hi there,
    You can achieve this in Captivate 7 by enabling the following settings,
    1. Select all the 10 Drag source objects and mark them as Sources, mark target as well.
    2. Create a 'Custom Type' called 'Correct answers’; mark all the 6 correct sources as the type 'Correct Answers'.
    3. Create a Correct answer link between 'Correct Answers' to target with the count 6. (You can do it either on stage or can do it in the Correct Answers' dialog).
    4. Enable 'Redrag the dropped source option' from 'Drag and Drop>Interaction Properties' accordion (This setting allows to Drag out the dropped source)
    5. De select 'Send Drag source to original position’ from  'Drag And Drop>Interaction Properties' accordion (This setting allows to place the dragged out source anywhere on stage)
    6. Enable 'Auto Submit Correct Answers' option from  'Drag And Drop>Options' accordion. (This settings allows to auto submit the answers whenever the user places all the 6 correct sources correctly on target)
    7. Insert Text caption on stage, Uncheck 'Visible in Output' option.
    8.  Set on Success action for the interaction as  Show> Text caption inserted in Step 7. (On success action gets executed 'On drop' of the 6th correct source' and shows the above inserted caption. You can modify the Caption text to give the correct feedback)
    You can move the submit button out of stage in case if you don’t want the user to submit an incorrect answer.
    Hope this resolves the issue.
    Thanks,
    Nimmy Sukumaran.

  • IE8 drag and drop in Outlook Web App OWA is not working

    I'm having trouble identifying the cause behind an inability to drag and drop emails between folders in OWA (Exchange 2010).
    The problem PC is running fully up to date 32 bit Windows XP SP3 with IE8. When I try to drag and drop an email all I see is a black stop symbol. On another PC with the same spec, logged in with the same user account, I can drag and drop emails fine between
    folders in OWA.
    I've tried clearing browser cache/history etc, resetting the browser to factory defaults, re-installing the browser, reducing security in the browser to absolute minimum, re-installing Java, Silverlight, S/MIME (although I'm sure it doesn't use these).
    Can anyone suggest anything else, or provide helpful links? I've been looking at this for many hours without any progress. If I even just knew what component/tool/feature IE is using when it does/doesn't drag and drop I'd have somewhere to start...
    TIA.

    I have this problem I heard there is a hotfix but I dint get the number, this affects any drag and drop options such as dropbox, sharepoint, etc..
    When I get the number I will post it for you.
    a work around is Chrome. but it has options for the html5 which is not present even in IE 10. :(.
    technet sharepoint alert
    I spent about three days on this and one IT guy and more than several Engineers at microsoft india, they are helpfull but not this time.
    this works on server 2008r2 but not vista, I am guessing Windows 7.

  • Drag and drop wizard not available in trial version captivate 8?

    I have installed the trial version of TCS5 which includes captivate 8. So far everything has worked fine. But when I tried to use the drag and drop option, I noticed that it was not available (grayed out). Can anyone help?

    In the first version of CP8, Drag&Drop was available for normal projects, not for responsive projects. After updating to 8.0.1.242 you'll get it also for responsive projects.

Maybe you are looking for

  • Internet sharing from windows 8 to a mac

    Guys, Iam using OS X mavericks but my hard drive has crashed and now i have to install the OS X on my external hardrive through a wifi connection. I have internet connection available in a windows 8 PC. But Iam not able to share the internet through

  • CE 7.2 Javastart.exe stopped

    Hi All, i downloaded CE 7.2 trial version from sdn in my personal laptop for practising BPM/BRM with NWDS (downloaded from SDN) The installation was fine and i have been able to open the CE host name:port url/nwa and browse through all components til

  • 5530 & nokia maps

    hi all, i've tried asking this question in the S60 section with no response. does anyone know when nokia maps will be released for the 5530? or is there a way to get the 5800 version on the 5530 as they should be compatible.

  • Organization Structure In GP

    Hi All, I need to create a Organization Structure in Gp(Role Structue) similler to workflow,is it possible ?, Plz any one Suggest Regards, Vinoth Raja.V

  • "systemroot\system32\ntdll.dll" error

    I try to reinstall window xp sp2 on my friend's computer today, boot up from the winxp cd, every thing is fine, but after the windows xp loading screen appears i get a blue screen with the this message : Stop : c000021 unknown hard error \ systemroot