You are not logged in.
Hallo again,
when I have installed pluck the first time it has blast me away:
A working File Uploader and a good locking Gallery right out of the box!
With this feature pluck matches all the big players on the marked.
But when it comes to the integration of single pictures in a post or page pluck is a little bit a lame duck. (Please sorry)
The tinymce needs a Url (Url? What is this? - my mother don't now it, my brother, too and I believe this two are not alone)
The Tiny Browser I have seen here in the Forum needs Flash8, I think.
This don't work on my Ubuntu Computer and I was today in the city hall, on the computers there the tiny Browser don't work, too.
(The Lady from the desk was just short away so I had not match time to test)
So this is no solution.
But, stop.
When I build a new page there is on the right side a listing with all pictures I have uploaded.
I can drag and drop it in the text area.
But then they are not integrated as images, they are normal links.
No Bingo at all.
Ok so this is my feature request:
A working drag and drop solution, who integrates images from the listing on the right side, as images.
Maybe the picture upload mechanism from the "manage images" page in this listing on the top
(maybe as a sliding box).
And the crown: a image resize plugin, as garanty for the same size of all pictures and a nice unity styled design in the webside.
This (I hope so) simple thing is one of my biggest wishes I have this Year under my pluck-chrismess-tree.
Thanks to all Devolepers, Plugin Builders and Themers for the good work, and all readers for reading this long post till the end!
With best wishes,
Lalako
Offline
Hallo again,
when I have installed pluck the first time it has blast me away:
A working File Uploader and a good locking Gallery right out of the box!
With this feature pluck matches all the big players on the marked.But when it comes to the integration of single pictures in a post or page pluck is a little bit a lame duck. (Please sorry)
The tinymce needs a Url (Url? What is this? - my mother don't now it, my brother, too and I believe this two are not alone)
The Tiny Browser I have seen here in the Forum needs Flash8, I think.
This don't work on my Ubuntu Computer and I was today in the city hall, on the computers there the tiny Browser don't work, too.
(The Lady from the desk was just short away so I had not match time to test)
So this is no solution.But, stop.
When I build a new page there is on the right side a listing with all pictures I have uploaded.
I can drag and drop it in the text area.
But then they are not integrated as images, they are normal links.No Bingo at all.
Ok so this is my feature request:
A working drag and drop solution, who integrates images from the listing on the right side, as images.
Maybe the picture upload mechanism from the "manage images" page in this listing on the top
(maybe as a sliding box).And the crown: a image resize plugin, as garanty for the same size of all pictures and a nice unity styled design in the webside.
This (I hope so) simple thing is one of my biggest wishes I have this Year under my pluck-chrismess-tree.
Thanks to all Devolepers, Plugin Builders and Themers for the good work, and all readers for reading this long post till the end!
With best wishes,
Lalako
This is just for now, not for pluck 4.7 ...
in data/inc/post_get.php
you can find in line 142:
<div class="menudiv" style="width: 200px; margin: 2px;">
<table>
<tr>
<td>
<img src="data/image/image_small.png" alt="" />
</td>
<td style="font-size: 14px;">
<span style="font-size: 16px;"><a href="images/<?php echo $file; ?>" target="_blank"><?php echo $file; ?></a></span><br>
<a href="#" onclick="tinyMCE.execCommand('mceInsertContent',false,'<img src=images/<?php echo $file; ?> alt=>');return false;"><?php echo $lang_page7; ?></a>
</td>
</tr>
</table>
</div>Replace it with code:
<div class="menudiv" style="width: 200px; margin: 2px;">
<table>
<tr>
<td>
<img src="images/<?php echo $file; ?> width="30" alt="" />
</td>
<td style="font-size: 14px;">
<span style="font-size: 16px;"><a href="images/<?php echo $file; ?>" target="_blank"><?php echo $file; ?></a></span><br>
<a href="#" onclick="tinyMCE.execCommand('mceInsertContent',false,'<img src=images/<?php echo $file; ?> alt=>');return false;"><?php echo $lang_page7; ?></a>
</td>
</tr>
</table>
</div>It will show on the right in editpage the small image. You can drag&drop this image to tinymce and it works (for me). The worst thing is this drag&drop option on small image will give you small image (30px of width) in page.. You have to remamber to scale the image...
Offline
Thank you very much!
I will test it today in the evening.
Bevor I wrote the feature request I have searched for the read_imagesinpages function but with no luck.
But I hope yet still that the rightside menu will be improved in the next pluck version,I like this type of image handling you can see it per exemple also in mephisto and as a plugin for the frog cms...
Ok again, thank you very much and have a nice weekend!
Best regards,
Lalako
Last edited by lalako (11-07-2009 11:02:36)
Offline