Ask a Question related to Adobe Acrobat Windows, Design and Development.
-
Tom Mc Inerney #1
Printing
hi, this is just a wonder question, we install printers on
machines who's users don't have admin rights to do so thus
every time we must log off, install printers and log on
again. Is there any way to install a printer as an
administrator while logged in as the user like the
hardware install does??
thanks
tom
Tom Mc Inerney Guest
-
Freehand printing - right margin decreases when printing multiple copies of file.
I'm using Freehand mx. Everytime I print more than one copy of a file, the right margin decreases. Thus, if I print five or six copies of a file,... -
Printing Dynamically Insantiated MovieClips (multi-page printing)
I can create multiple pages with just one prompt with new PrinJob() object in Flash MX2004; but ... .... when I try to addpages which is one... -
Printing without showing the printing dialog window
hey - did you ever figure out a solution to the printing without dialog issue? i'm trying to get around the same problem myself. thanks! -jason -
Printing a external text file or printing a text field cast member...
use BuddyApi Xtra to use external app. for print a file like MSWord, -
Printing a externat text file or printing a text field cast member...
Try searching the NG archives. Search on 'Print O Matic' (that's the Xtra..the lite version comes with Director). hth, doug "PrEnt"... -
Clarence #2
printing
need to know how to print only what you highlight with
windows xp
Clarence Guest
-
Rick \Nutcase\ Rogers #3
Re: printing
Hi,
Right-click the highlighted text, click "print". In the print dialog, look
for 'print range/selection'.
--
Best of Luck,
Rick Rogers aka "Nutcase" MS-MVP - Win9x
[url]http://mvp.support.microsoft.com/[/url]
Associate Expert - WinXP - Expert Zone
[url]www.microsoft.com/windowsxp/expertzone[/url]
Win98 Help - [url]www.rickrogers.org[/url]
"Clarence" <jason@cyberriver.net> wrote in message
news:a0ba01c34687$46fb00d0$a401280a@phx.gbl...> need to know how to print only what you highlight with
> windows xp
Rick \Nutcase\ Rogers Guest
-
Jonathan #4
Re: printing
Jeff,
You could try holding down the Ctrl key and hitting p.
Hope this helps,
Jonathan
"Jeff DeRoche" <lynxbsop@bellsouth.net> wrote in message
news:08c201c34bc4$de39a9a0$a001280a@phx.gbl...> I would like to be prompted with a choice of printers prior
> to printing. Is there a way to select which printer to use
> without having to first select a default printer?
Jonathan Guest
-
Bish #5
Printing
The design of the report is too wide for your printer.
You may be able to get away with adjusting the margins in
Page Setupfrom the File menu, however if your report is
really wide either set to print in landscape or reduce the
width of you report.
>-----Original Message-----
>Whenever I print I recieve a message that the document is
>to large and ends up being 2 sheets instead of one.
>.
>Bish Guest
-
Andrew McGuinness #6
Re: Printing
Jianan Huang wrote:
I haven't used it but there's a package called "printtool" which is> Hi folks,
>
> When I want to do my first printing, I discovered that 'lpr' is not
> recognised. So I do a 'apt-get install lpr'. Then I do a 'lpr
> <filename>' to try my luck. Only one line was printed at the top of the
> paper. The documentation mentioned that 'printcap' holds the database
> for printers. Looking through 'printcap', its only a short script.
>
> How do I get the driver (or any other necessary software), to starting
> with my HP deskjet?
>
supposed to help you configure.
magicfilter is another possibility -- that's what I used but I can't
remember if I did my original setup with magicfilterconfig or manually
BTW, /etc/printcap does not need to be very long -- mine is:
lp|hpdj670c|HP DeskJet 670C:\
:lp=/dev/lp0:sd=/var/spool/lpd/hpdj670c:\
:sh:pw#80:pl#72:px#1440:mx#0:\
:if=/etc/magicfilter/dj690c-filter:\
:af=/var/log/lp-acct:lf=/var/log/lp-errs:
But I don't use it any more because I switched to CUPS. That has a web
configuration front-end.
apt-get install cupsys cupsys-bsd
and
apt-get install cupsys-driver-gimpprint
which has graphics drivers for photo printing
then [url]http://localhost:631/[/url] to configure
--
Andrew
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - [url]http://enigmail.mozdev.org[/url]
iD8DBQE/K1fiqEms0aLHW4URAraTAJ4jw7mcQPMM/h1fLMlIEXbDkO1+kgCfRzGe
Dpx14ZLR5HQK/1Jkt7uocUE=
=I0Ix
-----END PGP SIGNATURE-----
Andrew McGuinness Guest
-
Mark S. #7
Printing
Hello everyone.
I have this web site created in vb.net. I'm using this simple javascript
to print
function Printit()
{
window.print();
}
Now is there anyway in that function to automaticly select the default
printer, set the margins and make sure printing background colors is on. oh
and hide the image that you click on to print the page
Thanks
Mark
Mark S. Guest
-
Jerry III #8
Re: Printing
Hiding an image is fairly simple - just set it's display (or visibility)
style for print @media rule. Like this:
<html>
<head>
<title>Print page</title>
<style type="text/css>
@media print {
#printbtn { visibility: hidden; }
}
</style>
</head>
<body>
<a href="javascript:window.print()" id="printbtn">Print</a>
</body>
As for selecting the default printer and all the other stuff: No. ASP pages
are not WinForms applications (no matter how much certain ppl want them to
be) and there are things you just can't do. Unless you do want to install an
actual application on the client side, such as an ActiveX control that will
do the printing for you (but then you can't simply use window.print() but
you'd have to do the printing yourself).
Jerry
"Mark S." <TechAge@cableone.net> wrote in message
news:OsnSYufWDHA.1384@TK2MSFTNGP10.phx.gbl...javascript> Hello everyone.
> I have this web site created in vb.net. I'm using this simpleoh> to print
>
> function Printit()
> {
> window.print();
> }
>
> Now is there anyway in that function to automaticly select the default
> printer, set the margins and make sure printing background colors is on.> and hide the image that you click on to print the page
>
> Thanks
> Mark
>
>
Jerry III Guest
-
Jianan Huang #9
Re: Printing
Hi folks,
I have installed lpr and apsfilter to drive my HP DeskJet 660C. During
apsfilterconfig, I chose [ijs/DESKJET_660] as th printer driver.
I couldn't pass print test. It failed with the msg:
sh: hpijs command not found
GNU Ghostscript 6.53: Can't start ijs server "hpijs"
**** Unable to open the initial device, quitting
I have done apt-get update and upgrade. It doesn't help.
BTW, I know about CUPS. My printing will be text or webpage only. What I
have installed should be sufficient, right?
Cheers
__________________________________________________ _______________
Send a fun phone greeting to your friend!
[url]http://www.msn.com.sg/mobile/fungreetings/[/url]
--
To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
Jianan Huang Guest
-
Tina Parziale #10
Printing
I take pictures with a 5 m olympus digital camera and download them to PS 7 for editing or printing.
I also use HP photosmart printer. However, when I drag and drop my picture into a predetermined size (5X7 -4X6 etc I have a problem because my pictures are automatically cropped to fit on the page. So I lose quite a bit of the picture especially if taken with a wide angle lens. In other words undesired cropping occurs.
Does anyone know how I can scale down or resize my shots so that they will fit in a 4X6 or 5X7 without losing portion of the picture?
I did post this question before but I am still having problems if I want to print on pre cut paper such as 4X6 or 5X7 and then frame the pictures
Thanks
Tina
Tina Parziale Guest
-
-
Gary Hummell #12
Re: Printing
There is no way around it. If you wish to preserve the original proportions of the image, then you have to print to the same proportions. No image can be printed to 4x6, 5x7 and 8x10 without at least two of the prints being cropped. The proportions of the three sizes are all different.
The good news is that almost any camera image can be improved by careful cropping.
Gary
Gary Hummell Guest
-
Steve Robbins #13
Printing
I need to create some reports for printing from my database. From
everything I can find using Google, there doesn't seem to be any ways to
override the default header and footer.
Is this still true? Any good workarounds out there?
Thanks for any help.
Steve Robbins Guest
-
William Maddler #14
Re: Printing
Steve Robbins wrote:
header and footer are controlled by the browser... not sure u can modify>
> I need to create some reports for printing from my database. From
> everything I can find using Google, there doesn't seem to be any ways to
> override the default header and footer.
>
> Is this still true? Any good workarounds out there?
them from inside a page...
--
WM
William Maddler Guest
-
Bert #15
Re: Printing
On Tue, 09 Sep 2003 02:38:31 -0000, Steve Robbins
<srobbins@no.spam.charter.net> wrote:
>
>I need to create some reports for printing from my database. From
>everything I can find using Google, there doesn't seem to be any ways to
>override the default header and footer.
>
>Is this still true? Any good workarounds out there?
>
The header and footer that appear when printing a html-page cannot be
removed by any script as they are added on the client side. But you
could provide the users of your website with the info on how to alter
the print-settings so the header and footer will not appear...
It's under File > Page Setup (Headers and Footers)
OR... You could create a PDF with your results, no problems with
headers and footers when the user prints out a PDF.
B.
Bert Guest
-
Steve Robbins #16
Re: Printing
On Tue, 09 Sep 2003 12:55:15 GMT, Bert <bert@pandora.invalid> wrote:
Thank you for the help. This is the option that I was considering as an> On Tue, 09 Sep 2003 02:38:31 -0000, Steve Robbins
><srobbins@no.spam.charter.net> wrote:
>
> OR... You could create a PDF with your results, no problems with
> headers and footers when the user prints out a PDF.
alternative. I hear FPDF is pretty good, so I will have to give that a
look.
--
The Unofficial a.s.b.b-r Reference Page
[url]http://webpages.charter.net/srobbins/redsox/index.html[/url]
Steve Robbins Guest
-
Ken Schaefer #17
Re: printing
You can use CSS to do this:
[url]http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/pagebreakbefore.asp[/url]
[url]http://www.w3.org/TR/REC-CSS2/[/url]
Cheers
Ken
"sara" <s@mail.com> wrote in message
news:120c01c382e7$14fe6b20$a101280a@phx.gbl...
: Hi all,
: the truth is I'm not sure in which newsgroup this post
: belongs, but I'll try here.
: I am faced with the following situation:
: I currently have an order system running on the web.
: Invoices can be printed for an order by entering the
: order number. The invoice then displays dynamically and
: the user clicks the print button on the browser to print
: the invoice for the customer. Right now, though, they
: want a way to enter a number of order #'s at a time and
: print all the invoices at once. Now, I don't mind if the
: invoices all display on the page one after the other as
: long as I can be sure that each will then print on its
: own page when the user clicks the print button on the
: browser. Alternatively, is there any way to do this with
: code (asp etc) automatically.
:
: Thanks in advance for any help and if anyone has any
: suggestions of where to ask this question, please advise.
:
: Sara
Ken Schaefer Guest
-
SchneiderPapier webforumsuser@macromedia.com #18
Printing
I saw that this was asked i guess a 100 times but never there was a clear satisfying answer (for me).
I just want to have a button on wich you press there is beiing print an image. I understand i have to use the PrintoMatic xtra but dont understand something quett well. Do i have to pay or what; what doesnt work whjen i dont register?
Maybe it sounds silly but please explain. Thanks in advanced
Frenk (the Netherlands)
I (and the company i work for) dont have money to buy anything, if PrintoMatic doesnt work, is there any other (free) solution?
SchneiderPapier webforumsuser@macromedia.com Guest
-
Richie Bisset #19
Re: Printing
full explaination here:
[url]http://www.printomatic.com/products.cfm?page=2[/url]
hth,
richie
On Thu, 25 Sep 2003 09:52:40 +0000 (UTC), "SchneiderPapier"
[email]webforumsuser@macromedia.com[/email] wrote:
>I saw that this was asked i guess a 100 times but never there was a clear satisfying answer (for me).
>
>I just want to have a button on wich you press there is beiing print an image. I understand i have to use the PrintoMatic xtra but dont understand something quett well. Do i have to pay or what; what doesnt work whjen i dont register?
>
>Maybe it sounds silly but please explain. Thanks in advanced
>
>Frenk (the Netherlands)
>
>I (and the company i work for) dont have money to buy anything, if PrintoMatic doesnt work, is there any other (free) solution?
>Richie Bisset Guest
-
janlabes webforumsuser@macromedia.com #20
Re: Printing
hi frenk! you can probably use just the PrintFrom command without anything else - see the help file on PrintFrom in director.
best, jan
janlabes webforumsuser@macromedia.com Guest



Reply With Quote

