Javascript drag and drop library
Author: a | 2025-04-24
A JavaScript library that takes the pain out of drag and drop development. Tagged with webdev, opensource, javascript. DFlex is a Javascript library for modern Drag and Drop apps. It's built with vanilla Javascript and implemented an enhanced transformation mechanism to manipulate DOM elements. It is by far the only Drag and Drop library on
JavaScript drag and drop library - draggable.js
A JavaScript library to visualize JSON as tree diagrams (flowhcharts). Supports nested objects, arrays, and custom styles for clear data representation. DemoDownload Drawflow is a JavaScript library to dynamically generate a pretty flowchart via drag and drop. DemoDownload A standalone JavaScript library for creating flowcharts & relationship diagrams using SVG and plain JavaScript. DemoDownload js2flowchart is a pure JavaScript library used to dynamically render JS code flowchart diagrams using SVG. DemoDownload A Pure CSS library to render a Process Flow Diagram illustrating the relationships between nodes defined in nested HTML lists. DemoDownload diagramflowjs is a JavaScript library to draw an interactive, editable flowchart representing workflows, decisions, complex process, and much more. DemoDownload jsdragblocks is a JavaScript to visualize the relationship between two block elements by creating directional arrows between nodes via drag and drop. DemoDownload Pinker.js is a vanilla JavaScript library which renders a canvas based flow chart from plain text to represents a workflow, process, or decisions. DemoDownload flowcharty is a JavaScript library that makes uses of d3.js to dynamically generate SVG flowchart to represent your algorithm, workflow or process. DemoDownload flowjs is a JavaScript library built with CreateJS that allows you to render dynamic, animated flow charts using html5 canvas API. DemoDownload
JavaScript Drag And Drop libraries - LibHunt
React drag and drop (React DnD) is a beautiful and accessible drag and drop library made for React apps that let’s build interactive experiences. It supports touch interactions on mobile devices and HTML5, but it depends on touch support. One popular app that uses this drag and drop interaction is Trello.In this post, we will learn how to build a page filled with images that allow anyone to move an image around to another position within the app in response to the drag and drop events.The complete project is on CodeSandbox.## PrerequisitesTo complete the exercise in this post, we need the following:- Basic knowledge of JavaScript and React.- Node.js installed on our computer.## Getting StartedReact is a JavaScript frontend library for generating and building user interfaces for web applications.To scaffold a new project, run the following command in our terminal:```shnpx create-react-app After the installation, navigate to the created directory and run the command below to start the application:cd # navigate to the directory npm run start # run the development serverCode language: PHP (php)React.js starts the development environment on the whole setup done, run either of the commands below to install the react-dnd ****and ****react-dnd-html5-backend libraries to our project:yarn add react-dnd react-dnd-html5-backend # or npm install react-dnd react-dnd-html5-backendCode language: PHP (php)react-dnd-html5-backend: This library will allow the use of the drag and drop API with react``-``dnd.Now, let’s implement the drag and drop functionality in the project’s entry point , index.js , with the provider component.// src/index.js// other imports // add thisimportDragula – Javascript Drag and Drop Library
By drawing a polygone; can be configured using the API and is also available to the end user from context menu. Software: AnyMap JS Maps 8.6.0 Date Released: May 14, 2019 Status: Major Update Release Notes: DVF-3596 - AnyChart Locales Improved.DVF-3597 - Custom Messages in locales.DVF-4073 - Auto localized context menu from the included locale.DVF-4178 - Hovered and selected features ordering issues fixed.DVF-4051 - Color Scale reworked - default range and “equal†flag are added.Much more Software: AnyMap JS Maps 8.5.0 Date Released: Dec 24, 2018 Status: Major Update Release Notes: News of JavaScript data visualization library AnyMap v8.5.0: Andorra, Anguilla, Spain, Somalia, Singapour, Sierra Leone, San Marino, Brunei, Saint-Pierre, Dominica, Ghana, Hawaii, India, Nauru, Netherlands, Republic of Kongo, Liechtenstein, Jamaica, and USA maps improvement. Chart background fix. Most popular Java & JavaScript downloads for Vista AllWebMenus Pro 5.3.940 download by Likno Software Top JavaScript menu/CSS menu/Drop-Down menu builder, visual, easy, no coding! type: Shareware ($65.00) categories: css menu, drop down menu, javascript menu, dhtml menu, css navigation, html menu, responsive menu, web menu, popup menu, navigation menu, joomla menu, wordpress menu, drupal menu, sliding menu, mega menu, dreamweaver, expression web, Section 508, WAIG, responsive menu View Details Download Frontpage Menu Add In 5.7 download by Frontpage Menu Add In Build a website menu navigation in Frontpage using Vista Buttons Menu add-in! type: Shareware ($49.00) categories: drop down menu builder, drop down navigation menu, web menu builder, frontpage web design, navigation menu, plug-in menu, edit extension, front page, expression web, frontpage, frontpage buttons, frontpage extension, css menu View Details Download JavaScript Webix Colorpicker 2.1 download by XB Software Colorpicker helps you create your web-style type: Shareware ($170.00) categories: javascript, colorpicker, RGB, HSL, hex, colors, widget, webix, control, cross-browser, HTML form, color scheme View Details Download AnyGantt JS Gantt Charts 8.7.0 download by AnyChart JavaScript Charts AnyGantt: JavaScript charting library and API to build smart HTML5 Gannt charts. type: Shareware ($49.00) categories: anygantt, gantt charts, javascript charts, ajax charts, html5 charts, js dashboard, pert charts, js chart, live chart editor, data visualization, gantt diagrams, project schedule, resource chart, javascript charting library,. A JavaScript library that takes the pain out of drag and drop development. Tagged with webdev, opensource, javascript. DFlex is a Javascript library for modern Drag and Drop apps. It's built with vanilla Javascript and implemented an enhanced transformation mechanism to manipulate DOM elements. It is by far the only Drag and Drop library onJavascript Drag and Drop Library - ByPeople
The item (id and index) property that match the drop targets about the drag source.collect: The property contains a callback function that receives the isDragging props and monitor parameter.monitor: It allows you update the props of your components in response to the drag and drop state changes.Let’s import the useDrop component from the React DnD library.// src/App.jsimport { useDrag, useDrop } from "react-dnd";Code language: JavaScript (javascript)useDrop: This hook acts as a drop target in our component into the DnD system.Next, update and add the following code in the App.js file:// React importimport { useDrag, useDrop } from "react-dnd"; // data image import const Card = ({ src, title, id, index }) => {const ref = React.useRef(null); const [, drop] = useDrop({ accept: "image", hover: (item, monitor) => { if (!ref.current) { return; }const dragIndex = item.index;const hoverIndex = index;if (dragIndex === hoverIndex) { return;}const hoverBoundingRect = ref.current?.getBoundingClientRect();const hoverMiddleY = (hoverBoundingRect.bottom - hoverBoundingRect.top) / 2;const clientOffset = monitor.getClientOffset();const hoverClientY = clientOffset.y - hoverBoundingRect.top;if (dragIndex return;}if (dragIndex > hoverIndex && hoverClientY > hoverMiddleY) { return;}moveImage(dragIndex, hoverIndex);item.index = hoverIndex;}}); // useDrag component const opacity = isDragging ? 0 : 1;drag(drop(ref));return ( div ref={ref} style={{ opacity }} className="card"> img src={src} alt={title} /> div>);} // App componentCode language: JavaScript (javascript)The above code does the following:drop: It is called when a compatible item on the app is dropped on the target.hover(item, monitor): The hover function helps to move things around.!ref.current: Check whether the current attribute doesn’t exist at the defined variable ref from the useRef hook.Draggable JS – JavaScript drag and drop library
Quicker, but only if the date picker is built well.After digging through many plugins I eventually found Flatpickr. It’s a free date picker with a simple flat design that blends well with any webpage.This can work on jQuery but it’s also meant to be a clean vanilla JS plugin. Check out the live demo to see it in action, and if you like how it looks feel free to add it into your next web project.DropzoneWith ever-expanding browser features Internet users constantly expect more dynamic features on every website. Drag-and-drop is a common behavior in upload forms and while it’s a popular feature it’s also hard to build from scratch.Thankfully we have Dropzone, a completely free drag-and-drop JavaScript library for uploading anything on the web. The GitHub page is full of documentation but you can find much more info & a live demo on the official Dropzone website.It works right out of the box with very little customization needed. But you can always expand this library with your own JS code which makes Dropzone more than just a plugin; it’s really a full JS library for drag-and-drop functionality.HolmesIt’s expected that most users know CTRL+F(or CMD+F) for in-browser text searches. But with dynamic sorting features you can provide a better user experience with a plugin like Holmes.This free JS plugin lets you add custom searching onto a page with auto-sorting filters that limit certain page elements. These could be products in a cart, or blog posts, or even photos based on tags.You can sort anything with Holmes as long as it has keywords and search criteria to filter.Bideo.jsI’ve stumbled onto countless fullscreen video plugins and most of them required a JS library. The best pure JS option is Bideo.js which uses pure JavaScript for the embed feature.This is one of the14 Free Drag and Drop Libraries for JavaScript
C++ Builder users may be used to Code Templates being added to the Code Editor when typing keywords like for followed by a whitespace. In HTML5 Builder, you must press Ctrl+J instead.JavaScript DebuggingCurrently, the Debugger does not support JavaScript. Any breakpoint on JavaScript code will be ignored.Write PermissionsYou must have write permission on the folders where the component-based pages are located, since HTML5 Builder needs to write there to render the components.RefactoringThe extract a superclass refactoring is not supported across multiple files.Internal ServerHTML5 Builder has a web server of its own. This internal server does not conflict with any other web server installed in the same system, and you can safely run both at the same time.Google MapsHTML5 Builder provides two built-in components, GoogleMap and MMap, that let you interact with the Google Maps API, whose Terms of Service you must agree with.TemplatesAny software identified as a template and located in the Templates folder, inside the sample applications directory, is © Embarcadero Technologies, Inc., and is considered a redistributable as defined under the software license agreement. Please check the notices in the source code for the applicable licensing for demo files installed with HTML5 Builder and the RPCL library in general.Database ConnectionsMicrosoft SQL Server and the Data ExplorerWhile the Data Explorer works fine with Microsoft SQL Server, when you drop components on the Designer they will not be properly configured. You will have to configure them manually.Data Explorer, MySQL 5.1 and UTF-8There are known problems trying to use the Data Explorer to access a MySQL 5.1 server and setting the ServerChartset parameter of the connection to UTF-8. If you need to work with such a server and using that charset, avoid using the Data Explorer and setup your Data Access components manually.Table Name in SQL Window on Windows XPOn Windows XP, when you drag and drop a table onto the SQL Window, the resulting table object does not display the name of the table. This can cause confusion if you drag and drop multiple tables at once.MobileUninstall any Android SDK older than version 11In order to do a mobile deployment,JavaScript Drag and Drop Libraries: 4 Popular
41XPanelWith XPanel 5000, designing your airplane instrument panel couldn't be easier. Simply drag and drop avionics onto the panel...easier. Simply drag and drop avionics onto the panelfree3510-Strike Software10-Strike FTPrint is a program that allows you to print text files in the printer's text mode. Main features...Clipboard support; - Drag and drop operations; - Enhanced Epson-FXfree26NCH SoftwarePlayPad is a very light-weight music player for Windows. The player supports most formats out there and is very light...player supports drag-and-drop, which22SaNaPe SoftwareCrazy Ball is a compact and convenient toolbar that gives you the opportunity to launch the most frequently...easy as drag-and-drop. And now you canfree18PublicWareFile Renamer is a small application that makes...supports both drag-and-drop on the software icon18AutoPlay StudioAutoPlay Studio is the easiest way to create autoplay menus for your CD, DVD and USB Stick...a completely visual drag and drop environment. Simply add content14Traction SoftwareCD Menu Creator is a handy, user-friendly utility for making menu-driven compilation CDs. Main features...Main features: - Drag and Drop support - Getsfree11AutomationDirectThis HMI programming software is a user friendly tool designed to allow quick programming...Main features: -drag and drop objects -fill-in-the9SoftexeHTML2Any is the software to convert html/text data to html/javascript/text data with charset encoding...or without. Open, drag'n'drop, paste from clipboard6SobolsoftMS Word Extract Images From Multiple Documents was created to help the users who need to extract all image...or by drag-and-drop and the files can5Mislete- Master Image is the source for your mosaic or a collage. - Higer resolutions images produce...thumbnail library - Drag and drop images from your local3Cambiel Software SolutionsQuickCut Xp is an easy use Application...cuts etc. Drag and Dropfree2Steve ReinerFlexSpacesAir is a RIA client for Alfresco that runs in browsers (FireFox, IE...(with additional desktop drag/drop features). FlexSpaces supports document2Doc2TxtDoc2Txt is one of those programs that falls into the "if you need it, you need it badly". A JavaScript library that takes the pain out of drag and drop development. Tagged with webdev, opensource, javascript. DFlex is a Javascript library for modern Drag and Drop apps. It's built with vanilla Javascript and implemented an enhanced transformation mechanism to manipulate DOM elements. It is by far the only Drag and Drop library on
Pure JavaScript Drag and Drop Library - dragula.js
{ DndProvider } from "react-dnd";import { HTML5Backend } from "react-dnd-html5-backend";import App from "./App";import "./styles.css"; const rootElement = document.getElementById("root");const root = createRoot(rootElement);root.render( StrictMode> DndProvider backend={HTML5Backend}> App /> DndProvider> StrictMode>);Code language: JavaScript (javascript)In the code block above, we wrap the highest order component, App, with a provider that comes with the React DnD library. The provider serves to alert the library that the component inside the provider will have access to the library’s functionality. Also, we pass in the backend property, which is the primary backend support for the touch support.To have access to the image on the page, we will start with creating a list of images in our app that will have the ability to drag and drop the desired image.We won’t be diving deep into building the gallery image app from scratch for this post. However, we will focus our attention more on the functionality of using the React DnD library to rearrange the image.Now, create an array of objects that contains the data.# src/data.jsexport default [ { id: 1, title: 'Travel', img: ' },...Code language: PHP (php)As pointed out earlier, we won’t be focusing much on the styling of the app. Create a new file in the src folder called styles.css and paste the following code from this gist.Next, let’s loop through the resulting data objects in the App.js file to see the gallery images from the Card component by passing props. Add the following code:// src/App.jsimport React from "react";import galleryList from "./data.js"; const Card = ({src, title,JavaScript drag and drop library on the Web - interact.js
Download drag'n drop folder tree Demo LicensingThis script is distributed under the LGPL open source license.Commercial licenses are also available. Some of these licenses also includes personal e-mail support for up to 1 year.Download filesYou can download the entire script from this Zip file.Files included in the package: drag-drop-folder-tree.html = Main html file js/drag-drop-folder-tree.js = Main Javascript file js/context-menu.js = JS code for the context menu js/ajax.js = Ajax (Library from Used for the save method. saveNodes.php = Saving nodes. You need to configure this file, i.e. database connection and query. folderTree_updateItem.php = Rename or delete an item on the server. This file is called by ajax. images/* = Images used by the script css/drag-drop-folder-tree.css = CSS file used by the script css/context-menu.css = CSS file used by the context-menuConfigurationDefine the treeThe tree is created by a standard list as in drag-drop-foler-tree.html. Notice that you have three attributes available which you could assign to your tags. noDrag - If you set this to "true", it means that this list item won't be dragable. noChildren - When this attribute is set to true, it won't be possible to move items to this node. noSiblings = It is not possible to add items above or below this node, only children.(This is an attribute you typically use only on a root node). noDelete = It is not possible to delete this node. noRename = It is not possible to rename this node.Creating tree objectBelow the HTML of your tree, you create a tree object like this: treeObj = new JSDragDropTree();treeObj.setTreeId('dhtmlgoodies_tree2');treeObj.setMaximumDepth(5);treeObj.setMessageMaximumDepthReached('Maximum depth reached');treeObj.initTree();First, you create the tree object, then you define the id of your tree, i.e. the id of the top (example: The following methods until initTree() are optional. See description of available methods below.Methodsthe JSDragDropTree class has the following methods: setMaximumDepth = Setting maximum depth of tree. Dropping of nodes would be cancelled automatically if the depth exceeds this number. Instead it would move the dragged nodes back to it's original location. Default value is 6. setMessageMaximumDepthReached = Message to the user when he drop nodes and depth exceeds defined maximum depth. setImageFolder = Specify path to images. Default is "images/". setFolderImage = Specify name of folder image, example: "dhtmlgoodies_folder.gif" setPlusImage = Specify name of small [+] image setMinusImage = Specify name of small [-] image setTreeId = Specify id of tree expandAll = Expand all nodes - must be called after. A JavaScript library that takes the pain out of drag and drop development. Tagged with webdev, opensource, javascript. DFlex is a Javascript library for modern Drag and Drop apps. It's built with vanilla Javascript and implemented an enhanced transformation mechanism to manipulate DOM elements. It is by far the only Drag and Drop library onDrag Drop JavaScript Libraries - CSS Script
GalleryList from "./data.js";const Card = ({ src, title, id, index, moveImage }) => { const ref = React.useRef(null); const [, drop] = useDrop({ accept: "image", hover: (item, monitor) => { if (!ref.current) { return; } const dragIndex = item.index; const hoverIndex = index; if (dragIndex === hoverIndex) { return; } const hoverBoundingRect = ref.current?.getBoundingClientRect(); const hoverMiddleY = (hoverBoundingRect.bottom - hoverBoundingRect.top) / 2; const clientOffset = monitor.getClientOffset(); const hoverClientY = clientOffset.y - hoverBoundingRect.top; if (dragIndex return; } if (dragIndex > hoverIndex && hoverClientY > hoverMiddleY) { return; } moveImage(dragIndex, hoverIndex); item.index = hoverIndex; } }); const [{ isDragging }, drag] = useDrag({ type: "image", item: () => { return { id, index }; }, collect: (monitor) => { return { isDragging: monitor.isDragging() }; } }); const opacity = isDragging ? 0 : 1; drag(drop(ref)); return ( div ref={ref} style={{ opacity }} className="card"> img src={src} alt={title} /> div> );};const App = () => { const [images, setImages] = React.useState(galleryList); const moveImage = React.useCallback((dragIndex, hoverIndex) => { setImages((prevCards) => { const clonedCards = [...prevCards]; const removedItem = clonedCards.splice(dragIndex, 1)[0]; clonedCards.splice(hoverIndex, 0, removedItem); return clonedCards; }); }, []); return ( main> {React.Children.toArray( images.map((image, index) => ( Card src={image.img} title={image.title} id={image.id} index={index} moveImage={moveImage} /> )) )} main> );};export default App;Code language: JavaScript (javascript)This post discussed how to rearrange gallery images with the drag and drop feature of React DnD.React DndComments
A JavaScript library to visualize JSON as tree diagrams (flowhcharts). Supports nested objects, arrays, and custom styles for clear data representation. DemoDownload Drawflow is a JavaScript library to dynamically generate a pretty flowchart via drag and drop. DemoDownload A standalone JavaScript library for creating flowcharts & relationship diagrams using SVG and plain JavaScript. DemoDownload js2flowchart is a pure JavaScript library used to dynamically render JS code flowchart diagrams using SVG. DemoDownload A Pure CSS library to render a Process Flow Diagram illustrating the relationships between nodes defined in nested HTML lists. DemoDownload diagramflowjs is a JavaScript library to draw an interactive, editable flowchart representing workflows, decisions, complex process, and much more. DemoDownload jsdragblocks is a JavaScript to visualize the relationship between two block elements by creating directional arrows between nodes via drag and drop. DemoDownload Pinker.js is a vanilla JavaScript library which renders a canvas based flow chart from plain text to represents a workflow, process, or decisions. DemoDownload flowcharty is a JavaScript library that makes uses of d3.js to dynamically generate SVG flowchart to represent your algorithm, workflow or process. DemoDownload flowjs is a JavaScript library built with CreateJS that allows you to render dynamic, animated flow charts using html5 canvas API. DemoDownload
2025-04-12React drag and drop (React DnD) is a beautiful and accessible drag and drop library made for React apps that let’s build interactive experiences. It supports touch interactions on mobile devices and HTML5, but it depends on touch support. One popular app that uses this drag and drop interaction is Trello.In this post, we will learn how to build a page filled with images that allow anyone to move an image around to another position within the app in response to the drag and drop events.The complete project is on CodeSandbox.## PrerequisitesTo complete the exercise in this post, we need the following:- Basic knowledge of JavaScript and React.- Node.js installed on our computer.## Getting StartedReact is a JavaScript frontend library for generating and building user interfaces for web applications.To scaffold a new project, run the following command in our terminal:```shnpx create-react-app After the installation, navigate to the created directory and run the command below to start the application:cd # navigate to the directory npm run start # run the development serverCode language: PHP (php)React.js starts the development environment on the whole setup done, run either of the commands below to install the react-dnd ****and ****react-dnd-html5-backend libraries to our project:yarn add react-dnd react-dnd-html5-backend # or npm install react-dnd react-dnd-html5-backendCode language: PHP (php)react-dnd-html5-backend: This library will allow the use of the drag and drop API with react``-``dnd.Now, let’s implement the drag and drop functionality in the project’s entry point , index.js , with the provider component.// src/index.js// other imports // add thisimport
2025-04-02The item (id and index) property that match the drop targets about the drag source.collect: The property contains a callback function that receives the isDragging props and monitor parameter.monitor: It allows you update the props of your components in response to the drag and drop state changes.Let’s import the useDrop component from the React DnD library.// src/App.jsimport { useDrag, useDrop } from "react-dnd";Code language: JavaScript (javascript)useDrop: This hook acts as a drop target in our component into the DnD system.Next, update and add the following code in the App.js file:// React importimport { useDrag, useDrop } from "react-dnd"; // data image import const Card = ({ src, title, id, index }) => {const ref = React.useRef(null); const [, drop] = useDrop({ accept: "image", hover: (item, monitor) => { if (!ref.current) { return; }const dragIndex = item.index;const hoverIndex = index;if (dragIndex === hoverIndex) { return;}const hoverBoundingRect = ref.current?.getBoundingClientRect();const hoverMiddleY = (hoverBoundingRect.bottom - hoverBoundingRect.top) / 2;const clientOffset = monitor.getClientOffset();const hoverClientY = clientOffset.y - hoverBoundingRect.top;if (dragIndex return;}if (dragIndex > hoverIndex && hoverClientY > hoverMiddleY) { return;}moveImage(dragIndex, hoverIndex);item.index = hoverIndex;}}); // useDrag component const opacity = isDragging ? 0 : 1;drag(drop(ref));return ( div ref={ref} style={{ opacity }} className="card"> img src={src} alt={title} /> div>);} // App componentCode language: JavaScript (javascript)The above code does the following:drop: It is called when a compatible item on the app is dropped on the target.hover(item, monitor): The hover function helps to move things around.!ref.current: Check whether the current attribute doesn’t exist at the defined variable ref from the useRef hook.
2025-04-16Quicker, but only if the date picker is built well.After digging through many plugins I eventually found Flatpickr. It’s a free date picker with a simple flat design that blends well with any webpage.This can work on jQuery but it’s also meant to be a clean vanilla JS plugin. Check out the live demo to see it in action, and if you like how it looks feel free to add it into your next web project.DropzoneWith ever-expanding browser features Internet users constantly expect more dynamic features on every website. Drag-and-drop is a common behavior in upload forms and while it’s a popular feature it’s also hard to build from scratch.Thankfully we have Dropzone, a completely free drag-and-drop JavaScript library for uploading anything on the web. The GitHub page is full of documentation but you can find much more info & a live demo on the official Dropzone website.It works right out of the box with very little customization needed. But you can always expand this library with your own JS code which makes Dropzone more than just a plugin; it’s really a full JS library for drag-and-drop functionality.HolmesIt’s expected that most users know CTRL+F(or CMD+F) for in-browser text searches. But with dynamic sorting features you can provide a better user experience with a plugin like Holmes.This free JS plugin lets you add custom searching onto a page with auto-sorting filters that limit certain page elements. These could be products in a cart, or blog posts, or even photos based on tags.You can sort anything with Holmes as long as it has keywords and search criteria to filter.Bideo.jsI’ve stumbled onto countless fullscreen video plugins and most of them required a JS library. The best pure JS option is Bideo.js which uses pure JavaScript for the embed feature.This is one of the
2025-04-2241XPanelWith XPanel 5000, designing your airplane instrument panel couldn't be easier. Simply drag and drop avionics onto the panel...easier. Simply drag and drop avionics onto the panelfree3510-Strike Software10-Strike FTPrint is a program that allows you to print text files in the printer's text mode. Main features...Clipboard support; - Drag and drop operations; - Enhanced Epson-FXfree26NCH SoftwarePlayPad is a very light-weight music player for Windows. The player supports most formats out there and is very light...player supports drag-and-drop, which22SaNaPe SoftwareCrazy Ball is a compact and convenient toolbar that gives you the opportunity to launch the most frequently...easy as drag-and-drop. And now you canfree18PublicWareFile Renamer is a small application that makes...supports both drag-and-drop on the software icon18AutoPlay StudioAutoPlay Studio is the easiest way to create autoplay menus for your CD, DVD and USB Stick...a completely visual drag and drop environment. Simply add content14Traction SoftwareCD Menu Creator is a handy, user-friendly utility for making menu-driven compilation CDs. Main features...Main features: - Drag and Drop support - Getsfree11AutomationDirectThis HMI programming software is a user friendly tool designed to allow quick programming...Main features: -drag and drop objects -fill-in-the9SoftexeHTML2Any is the software to convert html/text data to html/javascript/text data with charset encoding...or without. Open, drag'n'drop, paste from clipboard6SobolsoftMS Word Extract Images From Multiple Documents was created to help the users who need to extract all image...or by drag-and-drop and the files can5Mislete- Master Image is the source for your mosaic or a collage. - Higer resolutions images produce...thumbnail library - Drag and drop images from your local3Cambiel Software SolutionsQuickCut Xp is an easy use Application...cuts etc. Drag and Dropfree2Steve ReinerFlexSpacesAir is a RIA client for Alfresco that runs in browsers (FireFox, IE...(with additional desktop drag/drop features). FlexSpaces supports document2Doc2TxtDoc2Txt is one of those programs that falls into the "if you need it, you need it badly"
2025-04-02