How to drag and drop files from a text field

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
LESTROSO
Posts: 85
Joined: Wed Apr 04, 2007 6:14 pm
Contact:

How to drag and drop files from a text field

Post by LESTROSO » Fri Feb 19, 2010 9:42 pm

Hy to everybody, my problem is i don't know the code to to drag and drop files from a text field, or better from a list of directory files i want to pick one and then drag from my app to desktop. Can you help me?????
I thank you in advance.........bye, lestroso :roll:

dunbarx
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 10326
Joined: Wed May 06, 2009 2:28 pm

Re: How to drag and drop files from a text field

Post by dunbarx » Mon Feb 22, 2010 3:34 pm

Not exactly sure what you need.

If I hilite some text in a normal (not a list) field, I can drag it to the desktop and it appears there as a clipping (Mac OS). Not sure if this is useful to you, but you need no code. If you have a list field, you cannot drag and drop at all (I think).

Klaus
Posts: 14198
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: How to drag and drop files from a text field

Post by Klaus » Mon Feb 22, 2010 3:40 pm

Hi lestroso,

this will work with a list field with pathnames (e.g. "/Users/klaus/Desktop/Bilder Net/cd.gif" in my test) in it.
Script of list field:

Code: Select all

on dragstart
  set the dragdata["files"] to (the selectedtext of me)
end dragstart
You get the picture :)


Best

Klaus

LESTROSO
Posts: 85
Joined: Wed Apr 04, 2007 6:14 pm
Contact:

Re: How to drag and drop files from a text field

Post by LESTROSO » Fri Feb 26, 2010 12:20 am

Thank you very much KLAUS!!!!! You have guess my idea, it works very well ,i thank you so much again, i'm sorry if i answer just now but i have had to work.Now i'm making a turbosearch......

cheeers :D :D lestroso

http://www.fasasoftware.com
http://www.myspace.com/lestroso

Post Reply