Hi guys.
I know this might be a small thing, but it would be easier to add images if you just could drag them into to the post!
- Hyper
We are the best invite forum on the internet! Here you will find free invites, free seedboxes, free bonuses, and much more. Our members know the true meaning of sharing and have created a truly global bittorent community! Our site has the most up to date information on all private trackers and our members will guide you and introduce you to this truly secretive and enlightened club. Ready to get started? Register now!
Hi guys.
I know this might be a small thing, but it would be easier to add images if you just could drag them into to the post!
- Hyper
Alot of things could be made easier or better but its the work involved, VBulletin is such an advanced forum that even the simplest things can require a lot of work and knowledge.
IF we could drag and drop, where would you store the images? If we used VBulletins built in attatchment system then im pretty sure that has a limit per user and getting them to host on TI Image Dump would require some amount of work.
Something I always remember is that basically anything CAN be done, its just that some require a lot more work!
Do people really dislike our current image dump that much? I thought it was a really good host.
I understand that it can be a hassle uploading then copy pasting the code if you have a few proofs but Its the best solution IMO.
I can't really see this sugestion taking off to be honest, but ive been wrong before xD
(Thanks for the sugestion though, good suggestions lead to the evolution of TI!! )
Actually vbulletin does have an image drag & drop function. We just have to fine tune the settings for T-I. I'd like to see this implemented in the next couple of weeks. Thanks for reminding me!
Sounds gr8 m8, I'm looking forward using that function!
I was just working on a html 5 ajax (multiple) image uploader (wich could easilly be extended to support drag and drop, just add the event handler). Here is the (simplified) javascript code.
<input type="file" id="input" multiple="" onchange="handleFileUpload(this.files)">
<script>
function handleFileUpload(filesToUpload){
for (var i = 0, file; file = filesToUpload[i]; i++) {
// Only process image files.
if (!file.type.match('image.*')) {
// not an image
} else {
var fd = new FormData();
fd.append("fileField", file);
var xhr = new XMLHttpRequest();
// url to post to
xhr.open("POST", "/dump.php");
xhr.send(fd);
}
}
}
</script>
All right, but I'm searching for an build-in function, where you can drag an image from your desktop or any other folder and drop it/them here in this syusem :D