Creating a drag and drop converter?

Does anyone know if there is a simple way to create a drag and drop converter type application?
I have a small command line application that converts an input file to an output file. It can take a few extra options, but these aren't necessary. To make this functionality available to more people I would like to convert it into a simple "drag and drop" style applcation, which would call the binary.
Does anyone have any recommendations or pointers to a tutorial on doing something similar? I am a bit of a newbie in terms of Mac development and I am thinking this could be a practical way of getting me introduced?

You might take a look at Pashua - it is designed to tack a GUI onto things that don't have one.  Otherwise, you are probably looking at something more serious, such as Xcode.

Similar Messages

  • How do I create a drag and drop interaction using Captivate 8?

    I cannot figure out how to create a drag and drop interaction in Captivate 8. Options to do this are greyed-out.

    You can only use D&D in normal projects, not in responsive projects.
    http://helpx.adobe.com/captivate/kb/top-issues-captivate-8.html

  • How to create a drag and drop video playlist Help please

    I would like to learn how to create a drag and drop video playlist.
    I think the most common example is youtube.
    I already have partial of the work but I am stuck with my preliminary knowledge of Flash.
    What I am saying is:
    I have a *.fla project that have the galleries for video and pictures.
    But this process is done from the back end.
    I would like to make it more dynamic for the visitors.
    For example:
    1. Create a visitor video (pictures) playlist
    2. Drag and drop into the playlist
    3. To be able to create different playlists (Playlist 1, "My favorite playlist", "Watch later", etc)
    If someone knows or want to guide me where or how to find this request, I'd appreciate it so much.
    If the forum think that this need to be address to a expertise ($). I am also welling to hear that and where to go.
    If someone is interesting in this project please send me a note to show the prelimary project.
    Thanks

    Yeah that is the general idea but that is more of a "lift and drop", i want to add the same thing as when you:
    Right click this window in the taskbar (assuming your using windows) when the window is not maximized and click "move" then it changes the cursor icon and allows u to move the window around and while you move it around it shows the window moving, not a click and release feature.
    So i want that ability without having to click on the title bar, if you know what i mean.

  • Create a drag and drop target set

    Hi,
    I want to be able to create the following if possible:
    Create five words that make up a sentence and they are mixed up in order. So basically I would turn each word into a Movie clip perhaps.
    I would then like to assign a target hotspot for each word so that a user can drag the words into the correct order.
    Once they are in the correct order they click a button to go to a correct response or incorrect response. Is this possible?

    Yes, it is possible.  Try seaching Google for a tutorial using terms like "AS3 drag and drop tutorial" and/or "AS3 dropTarget tutorial"

  • HT2688 I cannot drag and drop songs into a newly created playlist. I have other playlists that I have created but drag and drop no longer works

    Almost all of my songs have become located in a My Music folder within the general library of the harddrive of my laptop and are no longer in itunes. When I try to play a song I get the message -  "The song could not be used because the original file could not be found. Would you like to find it?"
    This works but is impractical as it would take years import all of these songs back into itunes one at atime. How do I import all of the songs from the My Music library folder on my harddrive into itunes? Please help

    Playlists are ones I have created, not smart Playlists
    You can create either smart playlists (they are purple) or regular (blue) playlists.

  • How do you make an object draggable without creating a drag and drop quiz question?

    I'm trying to make objects that can be dragged, scaled, and rotated by the user (not a preset animation).  Any way to do this?

    The only thing that comes to mind is a widget.
    If anyone would have it, it would be Rod Ward.
    Click here to visit the site and see the list
    Cheers... Rick

  • Drag and drop to create a new requisition item

    Hello,
    In ME51N, we use a "Document Overview on" to select a requisition and drag and drop it to the basket.
    When we do this, all the items are are copied from old to the new requisition.
    We have some custom fields in "Customer data" tab, and these values are copied too.
    The problem is: I would like to clear one of this custom fields, when the item is created via drag and drop. I know the EXIT_SAPLMEREQ_007 is called for each item and my question is: there is a when in this EXIT (or anohter one) to know if this item is created via drag and drop? So that, I can clear the field.
    Thanks a lot!

    Please, any ideas?

  • A drag and drop game with dynamic text response

    Hi,
    I am a teacher and my school has recently upgraded to Adobe Design Premium.  Our previous version was about 5 versions out of date.
    I teach A Level which requires students to create an Interactice Multimedia product.
    In the previous 6 years, I have taught students how to create simple drag and drop game with dynamic text responses.
    Since the upgrade to Actionscript 3.0 the dynamic text response has ceased working.
    When creating the game from scratch, I need to move to Actionscript 2.0 as 3.0 does not allow me to add actionscript to objects - I know and am sure that this is a better way of doing things, but I would prefer to keep working the way I am used to.
    I use a switch case statement which I have copied below to make the drag and drop work.  The objects I apply the code to work in that they can be dragged, however, my dynamic text box with a variable name of "answer" is no longer displaying the response when an answer is left on a dropzone (rectangle converted to a symbol and given an instance name).
    on(press) {
    startdrag(this);
    on(release) {
    stopdrag();
    switch(this._droptarget) {
      case "/dropzoneB":
       _root.answer="Well done";
       break;
      case "/dropzoneA":
      case "/dropzoneC":
       _root.answer="Hopeless";
       break;
      default:
       _root.answer="";
       break;
    Any help would be much apeciated.
    Thanks
    Adrian

    To drag in as3
    blie_btn is the instance of the object drawin on the stage. In AS3 you have to assign a even listener, in this case MOUSE_DOWN, and MOUSE_UP, as we want the drag to stop if the mouse is not clicked. Then we fire the functions, and tell the object to start drag.
    // Register mouse event functions
    blue_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    blue_btn.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);
    red_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    red_btn.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);
    // Define a mouse down handler (user is dragging)
    function mouseDownHandler(evt:MouseEvent):void {
         var object = evt.target;
         // we should limit dragging to the area inside the canvas
         object.startDrag();
    function mouseUpHandler(evt:MouseEvent):void {
         var obj = evt.target;
              obj.stopDrag();
    if you want to make the text do what you want then something like this might work.
    In the function, you could add a text box onto the stage, give it a instance of something like outputText
    and then:
    outputText = ("Bla Bla Bla");
    (^Not sure if this will work exactly^)
    PS. I am currently a A-level student

  • Help on drag and drop function

    Hi guys,
    I have a problem creating a drag and drop function for a certain task. The task is as stated below:
    1. Create a VI that enables a user to drag and drop multiple image files into it.
    2. I was thinking of storing all the file names into an array of file names
    3. VI will then convert the image format into an array of 1024 by 768 binary numbers.
    Task number 3 I have already done but I'm struggling with this drag and drop function (Task 1 and 2) and I have read a couple of entries regarding drag and drop function but none fits my specifications.
    In the meantime I can only allow 1 file to be opened by a user at a time and it is quite frustrating if the user has to open like 10 files. He will need to navigate to the folder, select the file, click ok and repeat this for 10 times.
    Hence, I need your help to guide me to create a drag and drop function that allows me to open a file and select all the images 1 want at 1 time.
    Further information: I am using IMAQ to do the image processing.
    Thanks in advance.
    From
    Ridwan

    The Gtoolbox has sourcecode for this.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • My mp4 movie files used to transfer from computer to iPad but now they will not Tried dragging and dropping to iTunes library but won't work anymore Plse help

    I have mp4 movie files that i am trying to transfer to my ipad and it will no longer work.  They will not copy to my iTunes library. I used to be able to transfer/drag and drop converted movies to my iTunes are the mp4 files maybe too big Although I have plenty of space

    Howdy Anastasia,
    I was thinking about why the songs arent importing and I feel that its either, A) the format of the files has changed since you last imported them, or B) you may need to rebuild the iTunes library.
    Here is an article about doing just that:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Re-creating the iTunes Library file
    Note: After re-creating your library, any devices that you sync with iTunes (Apple TV, iPod, iPhone, iPad) will see your iTunes library as a new library and will completely resync. The next sync with such a device will take longer and may reset some options since your rebuilt library isn't familiar to the device.
    1. Quit iTunes.
    2. Locate your iTunes folder (this is the folder that contains the iTunes Library and iTunes Library.xml files).
    Operating System
    Default location of iTunes Folder
    Mac OS X
    /Users/[your username]/Music
    Microsoft Windows XP
    \Documents and Settings\[your username]\My Documents\My Music\
    Microsoft Windows Vista
    \Users\[your username]\Music\
    Microsoft Windows 7
    \Users\[your username]\My Music\
    3. Open your iTunes folder.
    4. Drag the "iTunes Library.xml" or "iTunes Music Library.xml" file to the Desktop. If neither is available, learn how to add files back to the Library (because the XML file is not available, playlists and other information will not be available).
    5. Drag the following file from your iTunes folder to the Trash:
    Mac OS X
    "iTunes Library" or "iTunes Library.itl"
    Microsoft Windows
    "iTunes Library.itl"
    6. Open iTunes.
    Important: Do not add any content into iTunes at this point (such as by purchasing something from the iTunes Store).
    7. Choose File > Library > Import Playlist.
    8. Navigate to the "iTunes Library.xml" file on the Desktop.
    Mac users: Click Choose.
    Windows users: Click Open.
    If your Podcasts list in iTunes is empty after following these steps, learn how to add them back into iTunes.
    Regards,
    Sterling

  • Flash Drag and Drop Template in Captivate.  *HELP*

    Good morning.
    I am attempting to use the drag and drop learning interaction
    that comes pre-packaged with Flash CS3 and import it into Captivate
    for use in a Captivate based e-learning exercise.
    I create the drag and drop just fine in Flash, and it looks
    perfect when I publish it in Flash, etc.
    When I attempt to use the EXACT same SWF in Captivate,
    however, it does not work. I can move the drags around the screen,
    but they will not "drop" where they are supposed to.
    Thinking maybe I broke the template, I went ahead and just
    imported it 100% unchanged from Flash into Captivate (without me
    messing around with it changing things around) and it does the
    exact same thing.
    I have successfully used my own homemade flash "widgets" in
    Captivate, to include like click and reveal type interactions...for
    whatever reason, though, I can't get this one to work, even though
    I know it works perfectly in Flash.
    The .swf file was developed using ActionScript 2.0 in Flash
    and I tried publishing it with Flash 9 and Flash 8 as the setting,
    both do the same thing.
    Help!!!?
    Thanks.
    Rob

    Hi R
    Note that the Border simply adds space to the project so the
    playback controls aren't covering part of your movie. Assuming you
    want that to continue AND have a playback control, you might resize
    the project so the playback control is included in the main movie
    as well as being placed in an area that doesn't possibly obscure
    any screen activity.
    Cheers... Rick

  • Drag and Drop Interaction Scoring

    Hi-
    I've created a drag and drop interaction for a quiz with four
    objects. Each object has to match up to the correct spot in order
    for the user to get the answer correct. I've done this type of
    interactions before successfully and not had a problem with
    scoring.
    But this time .. the only thing I can see that's different
    about this quiz is that I'm not assigning any points in the "Score"
    field - I am instead using the Status of Correct Response alone.
    I've found that this interaction scoring works perfectly for my
    other quiz interactions but there seems to be a problem with the
    drag and drop - when the user moves the objects around and
    temporarily places an object in the wrong (or maybe even correct)
    spot, each of these movements is being racked up as correct in this
    interaction So, if there's an ambivalent user they're going to get
    many more points than is even supposed to be possible.
    I can't see anything different that I've done with this
    interaction other than the scoring. I changed to correct response
    scoring because it was the only way I could figure out how to reset
    the quiz score after the user leaves and comes back. (using
    TotalCorrect)
    Anyway, I'm open to ideas - even if it's not the scoring -
    any help would be appreciated!
    Thanks -
    Cammia

    Don't use the quiz knowledge objects and code yourself...?
    You'll find many on here who can help you with hand coding
    and probably none
    who know much about implementing those KO's who can answer
    questions. The
    reason is if you know enough to be able to answer questions,
    you know enough
    to know that these KO's are a short term crutch that cause
    long term
    problems.
    HTH;
    Amy
    "Cammia" <[email protected]> wrote in
    message
    news:e8jm2u$77e$[email protected]..
    > Hi-
    >
    > I've created a drag and drop interaction for a quiz with
    four objects.
    > Each
    > object has to match up to the correct spot in order for
    the user to get
    > the
    > answer correct. I've done this type of interactions
    before successfully
    > and
    > not had a problem with scoring.
    >
    > But this time .. the only thing I can see that's
    different about this quiz
    > is
    > that I'm not assigning any points in the "Score" field -
    I am instead
    > using
    > the Status of Correct Response alone. I've found that
    this interaction
    > scoring
    > works perfectly for my other quiz interactions but there
    seems to be a
    > problem
    > with the drag and drop - when the user moves the objects
    around and
    > temporarily
    > places an object in the wrong (or maybe even correct)
    spot, each of these
    > movements is being racked up as correct in this
    interaction So, if
    > there's an
    > ambivalent user they're going to get many more points
    than is even
    > supposed to
    > be possible.
    >
    > I can't see anything different that I've done with this
    interaction other
    > than
    > the scoring. I changed to correct response scoring
    because it was the only
    > way
    > I could figure out how to reset the quiz score after the
    user leaves and
    > comes
    > back. (using TotalCorrect)
    >
    > Anyway, I'm open to ideas - even if it's not the scoring
    - any help would
    > be
    > appreciated!
    >
    > Thanks -
    > Cammia
    >

  • Possible Bug with Drag-and-Drop Being Published via HTML5 - Getting "Undefined" Error When Dragging Object

    Hello,
    I came up with a way to use drag-and-drop interactions that will take advantage of file input so that I may create a drag-and-drop interaction that uses one draggable object over and over allowing multiple scoring/tracking possibilities.  Example use...is having the draggable object be dynamic in that it randomly changes its text so that a learner can drag a term it's possible classification.........thus allowing the possibility of having many terms easily loaded without having to redo a drag-and-drop interaction for each needed terms/classifications updates/changes.
    My Issue: When using a variable to represent the text for a draggable Smart Shape object, I'm getting the error message "undefined" when, clicking/pressing on the object, as well as during the drag of the object. This issue occurs when publishing the project in an HTML5 format.  Flash interestingly enough seems to work perfect...but we are not interested in publishing via Flash any longer.
    To better help you explore this error message, I've set up a test project so that you can see when and how the "undefined" message shows up during a drag-and-drop interaction.  I've also included the Captivate 8 project file used to make the exploration project I'm sharing in this post.
    Link to Captivate project I created for you all to explore "undefined" error message": http://iti.cscc.edu/drag_and_drop_bug/
    Link to this Captivate 8 Project file: http://iti.cscc.edu/drag_and_drop_bug.cptx
    It's pretty interesting how things react in this demo, please try the following actions to see some interesting happenings:
    Drag the Yellow (or variable drag box) to the drag target.
    Drag Black Hello square to Drag target and click undo or reset - watch the undefined message come up on the Yellow (or variable drag box).
    Drag the Yellow (or variable drag box) to the drag target and then use the undo or reset.
    Move both draggable boxes to the drag target and use the undo and reset buttons...
    Anyhow, I know you all are sharp and will run the demo through its paces.
    I'd really be very honored if anyone help me figure out how I could (when publishing out to HTML5) no longer have the "undefined" error message show up when using drag-and-drop with a variable for shape text. This technique has been well received at the college I work at...and I have many future project requests for using such an idea on a variety of similar interactions. I'd love see a solution or see if this might be a bug Adobe may be able to fix!
    I tried to find a solution to the issue documented here for quite some time, but I was not able to find anyone with this problem much less attempting the idea I'm sharing in the help request -  save the darn "undefined" message that comes up!
    Many thanks in advance for any help and/or direction that you all may be able to provide,
    Paul

    Hello,
    I just wanted to supply a minor update related to my drag-and-drop question/issue stated above:
    I did another test using Captivate 7, and found that the undefined error (publishing as HTML5) does not appear and the variable data remains visible - except the variable data turns very small and does not honor any font size related settings.
    I did go ahead and submit this to Adobe as a possible bug today.
    Thanks again for any help related to this issue.  If the issued documented above is solved, it will allow many amazing things to be done using Captivate's drag-and-drop for both regular type projects as well as interaction development for iBooks! 
    Matter of fact if this issue gets fixed, I'll publish a Blog entry (or video) on way's I've used Captivate's drag-and-drop to create dynamic learning activities for Higher Ed. and for use in iBooks.
    ~ Paul

  • Drag and Drop game with only two targets

    I created a drag and drop activity where their are five boxes that are supposed to go in to two columns in any order. I found a tutorial online that I based this activity off of.
    The problem is that the tutorial shows you how to make a target for each mc which has worked for all the activities I've made except for this one where I need only two targets. How would I change it so I can have multiple mc's drop on to one target?
    This is my AS:
    var score:Number = 0;
    var objectoriginalX:Number;
    var objectoriginalY:Number;
    growing_mc.buttonMode = true;
    growing_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickupObject);
    growing_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    gorging_mc.buttonMode = true;
    gorging_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickupObject);
    gorging_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    dormancy_mc.buttonMode = true;
    dormancy_mc.addEventListener(MouseEvent.MOUSE_DOWN  , pickupObject);
    dormancy_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    cystform_mc.buttonMode = true;
    cystform_mc.addEventListener(MouseEvent.MOUSE_DOWN  , pickupObject);
    cystform_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    hosttrans_mc.buttonMode = true;
    hosttrans_mc.addEventListener(MouseEvent.MOUSE_DOW  N, pickupObject);
    hosttrans_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function pickupObject(event:MouseEvent):void {
    event.target.startDrag(true);
    event.target.parent.addChild(event.target);
    objectoriginalX = event.target.x;
    objectoriginalY = event.target.y;
    function dropObject(event:MouseEvent):void {
    event.target.stopDrag();
    var matchingTargetName:String = "target" + event.target.name;
    var matchingTargetisplayObject = getChildByName(matchingTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == matchingTarget){
    event.target.removeEventListener(MouseEvent.MOUSE_  DOWN, pickupObject);
    event.target.removeEventListener(MouseEvent.MOUSE_  UP, dropObject);
    event.target.buttonMode = false;
    event.target.x = matchingTarget.x;
    event.target.y = matchingTarget.y;
    score++;
    scoreField.text = String(score);
    } else {
    event.target.x = objectoriginalX;
    event.target.y = objectoriginalY;
    if(score == 5){
    response_mc.gotoAndStop(2);

    var matchingTargetName:String =(event.target.name).substring(0, 1);
    Change the name of the target to A and B and the mc A1, A2, A3, A4... and B1, B2,B3...

  • Drag and Drop e-mails to a SharePoint Online Folder

    Summary
    E-mail to a list is not available in SharePoint Online (yet) and it is difficult to move e-mails from Outlook to a SharePoint list for collaboration, storage and search.  The following steps will put a file on the users desktop that will open a SharePoint list and then you can drag and drop e-mails into the proper folder. 
    Step 1
    Create a drag and drop folder location for SharePoint Online e-mails
    1.       Go to your SharePoint Online shared documents location
    2.       Create the folder structure that you want for your e-mail storage
    3.       Click on your top folder
    4.       Click on Actions
    5.       Open with Windows Explorer
    6.       In the address bar at the top of the Explorer Window copy the address
    Step 2
    Go to Start, Computer
    1.       Click on Map Network Drive
    2.       Paste the address copied above into the Folder box
    3.       Check Reconnect at logon
    4.       Take note of the drive letter given or choose a drive letter
    *note these instructions are for Windows 7 – you can search help for Map Network Drive for the OS you are using
    Step 3
    Open Notepad
    1.       Type in the following:
    “explorer z:”  (leave out the quotation marks and enter the drive letter in step 2
    2.       Click File
    3.       Click Save As
    4.       File name OpenEmail.bat
    ·         Note the file name does not matter but the .bat has to be there
    ·         Save to the Desktop
    When a user wants to open the SharePoint location that stores e-mail they double click on OpenEmail.bat and it will open in an Explorer view which will allow for e-mails to drag and drop from Outlook into the folder.
    David Allred

    For drag and drop of emails from Outlook to SharePoint we are using a third party
    SharePoint Outlook Integration tool called PageLight. PageLight also offers
    Save Outlook emails to SharePoint functionality

Maybe you are looking for