Im trying to work with this tool, Acrobat, and I find it not very user friendly tbh...
What I'm trying to do right now is to insert some images into and between the text, and I only can do it through the "Stamps" tools..
Is there another way to do this?, cuz it kinda sucks.
Thx.
attempt to insert a button, and then Define the background button with the corresponding image
Related
I am a beginner with Umbraco. I am able to upload images to the Media Library and then put them onto the page, but for my sidebars I want the images to be clickable links to other parts of my site and other sites.
At the moment I am using the Rich Text Editor to write an anchor tag etc. but this seems ridiculous and I don't want content authors [attempting to be] writing HTML.
It seems like there should be a built-in data type for this, or a property on the image but I see nothing. Do I need to write my own Razor code as a DataType? This seems like such a common thing that I'm surprised there is not a built-in solution.
I'm using 7.2.8
If you're already using the RTE, you can just select the image and click the Link button, then whatever you have selected (in this case the image) should become a link. No need to make your own HTML :-)
I am working on an Adobe Form for my customers to allow them to place photos into a PDF Form.
I am currently using
event.target.buttonImportIcon();
Which is allowing me to place an image if I have full Acrobat but when I go to a computer with Reader Only (version 11) it will only let me select PDFs to place.
I need the browse option to be able to select Jpeg from the drop down menu.
Please help.
That does not appear to be possible in Reader, only in Acrobat. You can read more (and a few possible work-arounds) here:
https://forums.adobe.com/thread/1072747?start=0&tstart=0
Had a question about how to make image saving easier with kineticJS, which has, by the way, proved to be an awesome framework. With it, I created this app that enables teachers in our prof dev courses to create a classroom map and save it as an image:
http://courses.edtechleaders.org/html_cores/trainingcores/multimedia/classroom_app/
The issue is that a lot of teachers run into problems when the new window containing the image opens up. Some end up having the window blocked, saving the wrong file, or not being able to find the file. I was wondering if there was a way to have a file reference window open (or a save button appear) so that the user could save the image to his/her local machine with a click, without having to deal with a pop-up. I tried working in some code from here -
http://greenethumb.com/article/1429/user-friendly-image-saving-from-the-canvas/
But I kept getting 'file not found' messages on the PHP files that I set up and other cryptic error messages. So I'm looking for a solution that we know meshes well with kineticJS (and hopefully uses minimal to no php.) Any help would be greatly appreciated!
Thanks!
Nevin
These days, popup is not recommended and not supported by many browsers.
Furthermore, you cannot pick a location to save your image on your client machine. This is a big security issue.
Think about this, if you click this link, save a password program on users' machine. serious, right? Instead, I would recommend the following steps.
add a hidden dialog div at the end of your html, or anywhere
<div id="popup"></div>
create an image and add to this popup, then show it up using JQuery UI.
stage.toDataURL({
callback: function (dataUrl) {
$("#popup").html( $("<img />").attr("src", dataUrl) );
$("#popup").append("To save image, right-click, Save Image As");
$("#popup").dialog();
},
mimeType: 'image/png',
quality: 1
});
I did not tested the above, but from my experience, it should work.
Whats the best way to create a NSIS Welcome Page that has a Bitmap image that covers the whole dialog(main HWND) window?
Is the best way to:
Use MUI2 and specify the constants MUI_WELCOMEFINISHPAGE_BITMAP and
MUI_WELCOMEFINISHPAGE_BITMAP_NOSTRETCH? I've tried this and the image
sits over the top of the next/prev buttons and the welcome text. Is
there a function call I can use to change the image windows' z-index?
Create my own custom window? I know how to do that and how to create checkbox, button & etc. windows but not how to create an image window(I guess I create a static or label window then set the bitmap for that?)
Maybe the plugin SkinnedControls has a way to do it? I have experimented with applying skins to buttons but haven't found anything that can create a welcome screen with a large bitmap in SkinnedControls. Plus the installer keeps crashing on clicking next(something to do with the Unicode version I think?).
Maybe another way I dont know of?
Can you suggest the best way to create a welcome page that contains a bitmap that covers the whole dialog?
This question is very similar to this one: Alter the z-index of windows on a NSIS MUI2 Page so please read it at first.
As I said: it is very tricky to create whole background (it requires a lot of coding) but I can recommend you this solution: Graphical Installer for NSIS for creating cool looking installer.
I am looking for a nice comment box, instead of creating something with textbox and a button. Windows live photos has a nice comment box under each photo, it is one line with a small triangle on left bottom , which makes it look like dialog box from comic books. It also has send button on the right inside the box so no additional buttons. How can I do something like this ?
It is not that easy to find ready-to-go templates for input controls, so why not create your own? You can start by reading this MSDN article. All you need is learn the basics of templating and then you'll be able to reproduce the style you want.