-
1. Re: Editable form with stationary image?
George_Johnson Sep 15, 2014 2:11 PM (in response to AgentMarketing)Use three buttons, all the same size in the same location. The bottom-most one would be the one for the image of the house. The middle one would be the one for the sold sign. These two should be read-only. The top button should be transparent with no border. It is the one that triggers the code to prompt the user to select an image, using the buttonImportIcon method. For exmaple:
// Mouse Up script for top-most button
// Get a reference to the house image button
var f = getField("house_image");
// Prompt the user to select an icon source for the house image
f.buttonImportIcon();
where "house_image" is the name of the bottom button used to display the image of the house.
-
2. Re: Editable form with stationary image?
AgentMarketing Sep 16, 2014 6:36 AM (in response to George_Johnson)That worked perfectly, thank you! Would you happen to know if it's possible to resize the image once it's uploaded? (from the uploader's standpoint)



