BTW... if you are looking for a very cheap slideshow kinda thing as a Flash component, you should loop at afcomponents.com
rp
Main Topics
Browse All TopicsOn release Print or Save functions or jobs.
I am making somewhat like a photo collage type site, with my family photos.
I want my relatives and friend to be able to print a 6x4.5 jpg stored in my image folder by clicking the print button that I made. Also to save on the save button I made. I am using flash 8. How about something in XML?
Please reply!
Also how is this Joomla?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This is sort of what I would like to accomplish.
http://www.edytajordan.com
I do have a movie clip Loader that the picture will be in.
My gallery .swf file is at http://www.lynettesdesigns
It is on my test page and it's link is called lynettesdesigns
I am no pro but I would love to be one.
Thanks for your help
Please see site again. I sent another note to you.
http://www.lynettesdesigns
I guess I am just having a hard time explaining myself. Sorry, my fault.
I want the code to print an external .jpg from my pic folder that is currently displayed in the mcLoader (a movie clip Loader). I already know how to print from just a mc_thumbnail.
That is not what I want. The loader is already a MC so if another MC was on top of it, I would need that to be fixed. I know that I could make a separate page for all the thumbnails to make them into a MC but, it would look cool the other way. I have a fade action going on over the thumbnails already. A cool effect that I want to keep.
Thanks for what ever....
me
here is a link to the printJob class with a tutorial
http://www.actionscript.or
rp
Business Accounts
Answer for Membership
by: rascalpantsPosted on 2009-06-19 at 09:35:05ID: 24667876
I think you are asking a few too many questions in one question, so I will give you some help with the fist one... about what you will need for a print / save option...
ges/imageN ame.jpg", "_blank" );
ges/imageN ame.jpg" );
this is what I would create if I were you.
you have an application that loads in thumbnails of images, or smaller lo res ones. the user can click on the print of save button for that image, and the application will then open up the url to a HI-res version in the browser... if you are using AS 2, you would just do this...
getURL( "http://www.domain.com/ima
for AS 3, you need to do a bit more...
var request:URLRequest = new URLRequest( "http://www.domain.com/ima
navigateToURL( request. "_blank" );
this will give them the option to do what ever they want with it... and since this is a non-commercial application, this should work well with your family
rp