Need help with e sending photos

I need a password to send photos by e-mail.  Can you send or re send me one?

Hello Bert and welcome to the forums.

This is not a question of Photoshop, but a problem of e-mail. However, if you give us a more detailed explanation of how you feel, we can help if it is in fact a matter of Photoshop.

Tags: Photoshop

Similar Questions

  • Newbie needs help with old concert photos

    I'm just getting started with PS > was my main reason for getting the program to edit hundreds of photos together, I took in the 1970s on 35 mm film and was developed by post in enterprises (don't forget Clark, anyone?)  Most of the pictures are ugly, but they have great sentimental value and it's time for me to try to resurrect them.  Like most beginners, I find PS overwhelming but want to dive in.  Can someone give me some guidance on the necessary basic to begin steps to improve these photos, which are among the worst of them, because in addition to poor exposure, developers cut the negative through the image, and then recorded back together and printed the photo I scanned recently.  I need some basic first steps to improve the overall image and then get rid of the line.  I want to do it myself, I'm not asking anyone to do it for me.  Any help would be appreciated.  Thank you very much.11132015_0010.aJPG.JPG11132015_0036a.JPG

    Just for fun, I spent a few minutes. Yes, I did:

    1 levels. To make things dark concert. I cut the bottom of range.

    2 auto-ton, Auto color, auto contrast

    3 painted a quick mask fuzzy brush on the Cup

    4 use content-aware fill. (for the record, it is really sloppy and could do much better).

    5 adjusted levels once again, but adjusted the darker Middle slider. To taste.

    6 saved.

  • Need help with a xml Photo Gallery

    First of all, Hello to everyone. My name is Tudor, I'm from Romania and I have a flash project that involves the XML construction by scrolling photo gallery. Sorry if my English will slip in some sentences. Well, the question for which I have to get an answer is: I have already built the Gallery, everything works fine... but... when I want to make some changes when loading images... Well, here's the problem. I print the code and briefly explain and ask at the end...

    import com.greensock.TweenLite;

    import com.greensock.TweenMax;

    Import fl.transitions.Tween;

    Fl.transitions.easing import. *;

    Fl.transitions import. *;

    Import fl.containers.UILoader;

    var MASK_WIDTH:Number = myMask_mc.width;

    var menuHolder:MovieClip = new MovieClip();

    menuHolder.x = myMask_mc.x;

    menuHolder.y = myMask_mc.y;

    addChild (menuHolder);

    var mouseIsOver:Boolean = false;

    var oldX:Number = menuHolder.x;

    menuHolder.mask = myMask_mc;

    to import flash.filters.ColorMatrixFilter;

    Import fl.motion.AdjustColor;

    var color: AdjustColor;

    colorMatrix var: ColorMatrixFilter.

    var matrix: Array;

    var filterBW: Array;

    color = new AdjustColor();

    Color.Brightness = 20;

    Color.Contrast = 20;

    Color.Hue = 0;

    Color.saturation = - 100;

    matrix = color. CalculateFinalFlatArray();

    colorMatrix = new ColorMatrixFilter (matrix);

    filterBW = [colorMatrix];

    HERE I read and parse the XML

    var xmlLoader:URLLoader = new URLLoader();

    var xmlData:XML = new XML();

    xmlLoader.addEventListener (Event.COMPLETE, LoadXML);

    xmlLoader.load (new URLRequest ("C:/Documents and Settings/Sm/Desktop/feteModel.xml"));

    function LoadXML(e:Event):void

    {

    xmlData = new XML (e.target.data);

    ParsePictures (xmlData);

    }

    function ParsePictures(input:XML):void

    {

    var mainPictures:Array = new Array();

    var firstPictures:Array = new Array();

    var secondPictures:Array = new Array();

    var thirdPictures:Array = new Array();

    var forthPictures:Array = new Array();

    var dimensiuniArray:Array = new Array();

    var heightArray:Array = new Array();

    var eyeColorArray:Array = new Array();

    var hairColorArray:Array = new Array();

    var numeArray:Array = new Array();

    var mainPicturesList:XMLList = input.fata.pozaPrincipala;

    var firstPicturesList:XMLList = input.fata.poza1;

    var secondPicturesList:XMLList = input.fata.poza2;

    var thirdPicturesList:XMLList = input.fata.poza3;

    var forthPicturesList:XMLList = input.fata.poza4;

    var dimensiuniList:XMLList = input.fata.dimensiuni;

    var heightList:XMLList = input.fata.inaltime;

    var eyeColorList:XMLList = input.fata.culoare_ochi;

    var hairColorList:XMLList = input.fata.culoare_par;

    var numeList:XMLList = input.fata.nume;

    for each (var element1:XML in mainPicturesList)

    {

    mainPictures.push (item1);

    }

    for each (var element2:XML in numeList)

    {

    numeArray.push (item2);

    }

    HERE I UPLOAD THE PHOTOS... I must say that menuItem is a mc - implemented as a class, which has essentially within a textfield and a UILoader a preloader - also movieclip. Also, I need the images to be black and white when they are displayed, and when the mouse is on color

    for (var i = 0; i < mainPictures.length; i ++)

    {

    var menuItem:MenuItem;

    menuItem = new MenuItem();

    menuItem.y = 200;

    menuItem.x = (i * (menuItem.width + 1)) + 150;

    menuItem.itemLoader.filters = filterBW;

    menuItem.itemText.text = numeArray [i];

    menuItem.itemLoader.source = mainPictures [i];

    menuItem.itemLoader.maintainAspectRatio = false;

    menuItem.itemLoader.addEventListener (Event.COMPLETE, completeHandler);

    //menuItem.itemLoader.addEventListener (Event.COMPLETE, uiLoaded, false, 0, true);

    //menuItem.itemLoader.addEventListener (ProgressEvent.PROGRESS, progressHandler);

    / / menuItem.itemLoader.load ();

    //menuItem.preloader_mc.visible = true;

    int completeHandler(event:Event)

    {

    / / trace (menuItem.itemText.text);

    }

    menuItem.mouseChildren = false;

    menuItem.buttonMode = true;

    menuItem.addEventListener (MouseEvent.MOUSE_OVER, mouseOverItem);

    menuItem.addEventListener (MouseEvent.MOUSE_OUT, mouseOutItem);

    Add the menuItem to the menuHolder

    menuHolder.addChild (menuItem);

    }

    menuHolder.addEventListener (MouseEvent.MOUSE_OVER, mouseOverMenu);

    menuHolder.addEventListener (MouseEvent.MOUSE_OUT, mouseOutMenu);

    function mouseOverMenu(e:Event):void

    {

    mouseIsOver = true;

    //Calculate the vertical distance of extent to which the mouse is

    //the topleft of the mask.

    var distance: Number = mouseX - myMask_mc.x;

    //Calculate the distance in percentages

    var percent: number = distance / MASK_WIDTH;

    //Save y holder old coordinate

    oldX = menuHolder.x;

    var targetX:Number =-((menuHolder.width-MASK_WIDTH + 150) * percentage) + myMask_mc.x;

    //Tween the menuHolder at the coordinate of the target

    TweenMax.to (menuHolder, 5, {x: Math.round (targetX)});

    }

    This function is called when the mouse is on the menu

    function mouseOutMenu(e:Event):void

    {

    mouseIsOver = false;

    }

    var tw1:Tween;

    var tw2:Tween;

    function mouseOverItem(e:Event):void

    {

    var point: MenuItem = e.target as MenuItem;

    menuHolder.addChild (item);

    item.itemLoader.filters = [];

    / / trace (item.itemText.text);

    tw1 = new Tween (element, "scaleX", Strong.easeInOut, 1, 1.25,0.25,true);

    tw2 = new Tween (order of the day, "scaleY", Strong.easeInOut, 1, 1.25,0.25,true);

    }

    This function is called when the mouse moves out of the element

    function mouseOutItem(e:Event):void

    {

    var point: MenuItem = e.target as MenuItem;

    item.itemLoader.filters = filterBW;

    tw1 = new Tween (object, "scaleX", Strong.easeInOut, 1.25, 1,0.25, true);

    tw2 = new Tween (point, "scaleY", Strong.easeInOut, 1.25, 1,0.25, true);

    }

    }

    ////

    Now I want each image to scale when loading fully... I thought that simply put it on the completeHandler function, but here's the problem: it measures only the last photo... for example. If there is 5, he played only the 5th... I tried to find the name of the image within the completeHandler and also, I had 4 identical names - the name of the last picture... my question is: why the completeHandler triggers only for the last item?   Anyone have any idea why this is happening? Plus, how can I solve this problem? Please... I'm burning my brain here for half a day here...  THANKS in advance!

    Best REGARDS, Tudor

    You are welcome.  It will work, but if you have any problems, simply start another view showing the code (not all what you have done for this) and someone will probably try to help.

  • I need help with the program of Photos on my macbook pro

    I use a Macbook Pro with OS of Yosemite. I really need help with the Photo program. I never really got the hang of IPhoto and now that it's a new program, I'm really confused. Where can I go to learn this without waiting for the next workshop in a local store?

    Hi, I'm fighting to open same mine, making a new software update

  • Is there a default value for the color management in PSE10? Beautiful photos from iPhoto, but blur with elements. I need help with this before as I consider that the upgrade to PSE13 and beyond.

    Is there a default value for the color management in PSE10? Beautiful photos from iPhoto, but blur with elements. I need help with this before as I consider that the upgrade to PSE13 and beyond.

    Printing which forms an angle seems ok, but one that is horizontally seems faded, incomplete.

    I was wondering if I saved a layer somewhere and set it as a default value.

    If you group the layers, you will be left with a single layer, thus spreading your concern.

    Suggest that you do the following:

    1. Make sure you have the latest drivers for your printers
    2. Reset the default preferences.

    Hold the Alt, Ctrl + Shift keys when you click the icon to open the items. When asked if you want to delete the settings file, say Yes.

    Items nearby and let regenerate the file.

  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • I need help to the new photo of my photos from iphoto on El Capitan. Any help would be appreciated.

    I need help to the new photo of my photos from iphoto on El Capitan. Any help would be appreciated.

    To migrate your iPhoto library to Photos for Mac, drag it in the Photos icon in the Dock.  Photos will read the iPhoto library and create a new library of pictures of him.

    Is your photo library in iPhoto on an external drive? The migration will work that if the external hard drive Mac OS extended (journaled) file system.  If the library is on a disk with a different file system, Ministry of the environment of the library of a correctly formatted disk.

  • Need help with the port forwarding for a XBox remote Streaming

    I have a router R6200v2 and need help with port forwarding.

    I came across this set of instructions for setting up stream port forwarding XBox remotely from anywhere

    http://kinkeadtech.com/2015/07/how-to-stream-Xbox-one-to-Windows-10-from-anywhere-with-Internet/

    I have no idea when it comes to such things and I want to make sure I do it correctly without messing up my existing home network.

    Port Forwarding and triggering Port pages setup look very different from what the guy uses. Can someone walk me through what I do to set up please?

    Hi @varxtis,

    You must enter them in the field for a start external Port and external completion Port. You will need to send individually except for the range of 49000-65000. The steps are as follows.

    1. create a Service name (it could be something else that you cannot use the same service name twice. Ex. XBOX1, XBOX2 and so forth.)

    2. Select the type of service (TCP, UDP or both)

    3 entry 5050 times a start external Port and external endpoints.

    4. Select the IP address of your XBOX.

    5. Select apply.

    6 do the same for other port numbers. To the beach, use 49000 for the external departure Port and for the external completion Port 65000.

    Kind regards

    Dexter

    The community team

  • I'm on Acrobat 10 and I need help with the distribution of shape feature. Is there a way to change the registration e-mail download addressed to the? Currently all forms I create and then distribute may only be subjected to my email account... I appreciat

    I'm on Acrobat 10 for mac and I need help with the distribution of shape feature. Is there a way to change the registration e-mail download addressed to the? Currently all forms I create and then distribute may only be subjected to my email account... I appreciate any help!

    Do not use the feature distribute the form. Instead of this, just put up a button "submit" and configure it to send email using any email address you want. Just add a button and set the action of the mouse upward on "Submit a form" and use a type mailto URL and specify that you want to send the full PDF. Then activate the reader of the document: where "Advanced/extended features in Adobe Reader" is located in Acrobat XI?

    If you really want to use distribute the form for some reason, change the e-mail address in your preferences: Edit > Preferences > identity > Email address

  • Hello need help with the opacity mask.

    Hello need help with the opacity mask. I hope someone out there can help

    I inherited a logo that appears to use a Logo of OM has a shape with a grad. This grad at first sight is not used in the Grad scheme and there is not editable.  Looking at the transparency palette I find an OM (pic1) output option. If I choose what the grad on separates it from the page of the form, that is from there I can change/remove as required (Note2).

    However, sometimes (he did no change), I'll be back to the same original form and output option is grayed out and is no longer available. Or I go to the similar shape that has the same treatment and I can't go out OM (pic3)

    The only difference is the thumbnail in the transparency palette, which is strong in pic1 and rated on pic3. What Miss me?    I'm not clear what the advantage is simply OM using the Grad palette to apply a grad in my form, but until I can get rid of OM who is there, I can't comfortably apply to the grad I want.

    The white gradient LHS I have no problem with. I choose fortunately only and each time get the possibility of release of OM.

    Screen Shot 2015-08-06 at 12.26.48.pngScreen Shot 2015-08-06 at 12.00.10.pngScreen Shot 2015-08-06 at 12.01.16.png

    The other thing weird. When I select the white gradient. Sometimes, the exit option is in the palette without going through the drop-down list (Fig 4).

    Other times seems not that OM has already been applied, because the palette gives me the ability to mask rather than liberation (5 photos). Until I go to the drop down and then I find Release is an option after all.

    What is the difference here?   Not much of a problem, because either way I can release OM to be able to change the grad.

    The file is passed through several hands and play anywhere to try to resolve issues, and many stops and save slot, so something along the line was of course done a logo and not the other because of the difference, but I can't for the life of me see what that.

    Screen Shot 2015-08-06 at 12.44.21.pngScreen Shot 2015-08-06 at 12.44.36.png

    I hope someone can help. Very appreciated


    See you soon

    Dave

    Dave,

    I've (mis) understanding the issues, you can account for the box to the right in the main palette transparency (called thumbnail) here.

    Illustrator help | Transparency and blending modes

    represents the masking objects.

    Some of your screenshots show no object mask, so it only is not really a mask even if do the opacity mask has been clicked and there seems to be one in the layers palette, wherever you look.

    I think that it is perhaps the issue.

  • I need assistance with the sending of a document FRO my e-mail here for GIS.

    Need help with gettingPDF document from AOL to send by e-mail account.

    Thank you

    Hello Daphnec64268570,

    If you want to send the document to the signatories to esign, then you can refer to the link below:

    https://helpx.Adobe.com/document-cloud/help/send-agreement.html

    -Usman

  • Making the ear of corn and need help with the ball.

    I do some corn on the COB for an illustration and I need help with the texture of the ball. I've been slowly making progress with gradient for kernels mesh, but I can't seem to recreate the look of the ball at all. I tried to recreate it in a rectangle by using the option in the menu object (1 row, 50 columns) gradient mesh and I'm trying with the fusion in object mode, but not lucky yet. Can someone help to put me on the right track to make the texture:

    http://images.clipartof.com/sweet-corn-on-the-cob-with-husk-royalty-free-vegetable-stock-photo-by-kennygadams-4501068853.jpg

    http://image.shutterstock.com/display_pic_with_logo/660550/660550,1298544740,8/stock-photo-ripe-corn-vector-illustration-on-white-background-71847955.jpg

    http://static5.depositphotos.com/1012047/533/v/950/depositphotos_5336961-Corn-oil.-Stylized-drop-of-oil-and-corn-cob..jpg

    I've been slowly making progress with gradient for kernels mesh, but I can't seem to recreate the look of the ball at all.

    Tank,

    You have published three images stylistically very different. The first is photographic and call probably (but not necessarily) for graduates of mesh. The other two are graphical treatments (and frankly, they're both rather flat; lack of depth).

    Illustration style extends the range of cartoonish in sketchy photo-realism and all the rest. The problem is you didn't show your own attempt so that anyone can have an idea of what you're trying to achieve the stylistic point of view.

    I just need to put in place so that the final step does not appear the whole box. The problem now is trying to make the style of the good brush to reproduce the effect...

    You seem to think you have to build a kind of linear construction and then find a way to reshape the shape of each part of the leaf. Yes, you pouvez approach it this way, but Illustrator users has often tend to be what aunt Molly would call "too clever by half."

    Not everything must be something semi intelligent auto or complex and tedious consruct involving brushes, envelopes, masks, etc, etc. Much can be accomplished by thinking that he just thanks to measure you draw directly economic paths and constructions, which take no more time (often less) and result in very tidy, simple files. Again, a lot depends on what you are trying to achieve the stylistic point of view. But here's an example that only took a few minutes to draw:

    If the above consists of:

    Three roads closed, 8 points each, with ordinary linear degrees

    Three mixtures of open path with three anchor points for each key path

    Six paths closed for shadows / highlights, with 19 points in total

    Mixtures being directly from the paths drawn comic forms, the spacing of the veins 'automatically' and intuitively follows the width from point of view of the worksheet.

    Rather than to build a boilerplate brush, colouring and the weight of each of the three main paths of the vein mixtures can be set individually at any time, simply directly by selecting the key path.

    JET

  • I need help with the control of two .swf in third.

    Hi, thanks for reading!

    I need help with the control of two .swf in third.

    I have a problem when I need to use a .swf in a digital signage solution, but were advised by the Legal Department, it cannot be changed in any way, I can not also have the source file blah blah blah. I pulled the .swfs on their site and I decompiled to see what I was up against.

    The main SWF that I need control is HCIC.swf and the problem is that it starts with a preloader, which, after the loading stops on a framework that requires user input to (button) on a play button, until the film will proceed and replay.

    What I've done so far is to create a SWF container, HCIC_container.swf, which will serve as a target for the HCIC.swf and I would like to send actionscript in the file, I am not allowed to edit.

    I managed to get done with help from someone on another forum. It is my hope that the following script just start HCIC.swf a framework after the preloader and button play and just play through.

    var container: MovieClip = createEmptyMovieClip ("container", getNextHighestDepth());
    var mcLoader:MovieClipLoader = new MovieClipLoader();
    mcLoader.addListener (this);
    mcLoader.loadClip ("MCIC.swf", container);

    function onLoadInit(mc:MovieClip) {}
    mc.gotoAndPlay (14);
    }

    But unfortunately it does not solve my problem. Because there is a media - controller.swf, which is charged by HCIC.swf who has orders, including the play button to start HCIC.swf.

    Here is a link to a .zip with all 3 files .swf file and all 3 .fla files.

    http://www.axiscc.com/temp/HCIC.zip

    What I have to do is to automatically start the HCIC.swf file, bypassing the pre-loader and play button without having to edit it or in the media - controller.swf in any case. Thus, all scripts must be done in HCIC_container.swf.

    I know it is confusing and it is difficult to explain, but if you look at the files it must make sense.

    ActionScripting is far from my point hard, so I'm definitely over my head here.

    Thanks for your help.

    Got my solution on another forum.

    http://www.ActionScript.org/forums/showthread.php3?t=146827

  • Need help with installation on Photosmart C7280 all-in-one

    I had my printer is installed and has been using the printer for 3 wireless laptops in my house.  Now, I can't even find my backup drive, so I have need help with downloading the software to use my printer and also get to use wireless.   I don't know what happened, but the fax for this printer is listed, but not the printer itself.   Help, please!

    Click here to download the software for your printer:

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?product=3204785 & LC = on & CC = US & DLC = in & lang = to & CC = US

    has chosen the appropriate operating system that corresponds to your computer and download the full software features.

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

Maybe you are looking for

  • My iPad INM does not connect to the internet. I have the message of renewal of lease

    iPad version 9.3.2 (13F69) CAPACITY 12.6.GB I can't access the internet even if wifi connection is ok. I get the message 'renew lease', but does not work by clicking on it All other devices working normall How to reconnect?

  • can notdownload new version

    I tried to download the new version and the computer asks me to save only instead of run, it

  • NetBook - cannot start from the CD live Ubuntu 8.10

    Try to boot from Ubuntu 8.10 live CD on my Netbook NB100 to see if everything works before upgrading - starts OK but then after a few minutes I get just a screen rolling filled with dev sr0 and block numbers of the IO error.The CD starts OK on my Tos

  • Using the Mail application

    I created my mail app about one year, when I came to this computer. I now have a new email from mail that I want to add to the application, because I need to check it every day. How can I add this? I have not been able to find how to do this.

  • Omission in the instructions for installation of Tomcat?

    It seems to be an omission in the instructions of the Joseki on Tomcat configuration. Link hereIn the section of JBoss, there is mention of ojdbc6.jar, which must be copied somewhere I had to copy the same file to a folder "lib" of Tomcat in the tomc