How to upload images to a Facebook page using the export module

I'm trying to set up the export module for Facebook so I can upload my images.
It works, but I want to upload them to a Page that I've created for my professional stuff not my personal account.
Anyone have any ideas?
Thanks
Program: Bridge CS6
Platform: Mac OS X 10.7.4

Did you ever get a reply to how to upload your images to FB? I am wondering how to set the "services" to export to FB.
Thank you.
KaCe

Similar Messages

  • How to upload photos to a facebook pages?

    Bonjour tout le monde. Je souhaite transférer vos photos directement sur ma page facebook. Malheureusement, il semble impossible. Avez-vous une solution?

    janolebateau wrote:
    hello everyone. I wish to upload your photos directly on my facebook page. Unfortunately it seems impossible. Do you have a solution?
    Hi janolebateau,
    There are 2 plugins which support facebook uploading:
    * Adobe's
    * Jeffrey Friedl's
    If I were you, I'd use Jeffrey Friedl's, but many prefer to use Adobe's if it suits their needs well enough.
    http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0CB8QFjA A&url=http%3A%2F%2Fregex.info%…
    Rob

  • How can you develop photo galleries with multiple pages using the web module?

    Going through the web module I can see there are many options for developing a web page with a single collection of photos.  How can you develop a web site with multiple pages containing different categories of photos using the Lightroom web module?

    This thread will give you several ideas.
    Re: How do you embed a gallery into an existing website?

  • How to upload photos to Flickr photo sharing using the Bloggie Software

    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick
    Solved!
    Go to Solution.

    Sony wants your feedback! http://bit.ly/WcYjMO
    This video will show you how to upload photos to Flickr photo sharing service using the Bloggie Software.
    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick

  • How do I link to another anchored page using the point tool?

    Hello
    I am using the point tool (arrow tool) to link to anchors in my current page.  Is there a way of linking to anchors using the tool in another page (in others words one that I am not working on) or does it need to be done manually?
    Thank you
    Jake

    Arrow Tool???  Which arrow tool do you mean?
    Named anchors are deprecated in modern HTML standards.  To create links to content on the same page, set up some Div IDs like this.
    <section id="one">
         Content one goes here...
    </section>
    <section id="two">
         Content two goes here...
    </section>
    <section id="three">
         Content three goes here...
    </section>
    LINKS ON SAME PAGE:
         <a href="#one">Link 1</a>
         <a href="#two">Link 2</a>
         <a href="#three">Link 3</a>
    LINKS ON DIFFERENT PAGE:
         <a href="page_name.html#one">Link 1</a>
         <a href="page_name.html#two">Link 2</a>
         <a href="page_name.html#three">Link 3</a>
    Nancy O.

  • I can can upload photos to my facebook page and the same problem with our fat cow web site. We can upload from both chrome and safari with no problem. Upgraded from 8.03 to 9.0 and same problem???

    we can not upload from the desktop to post on either facebook or to our fat cow web site. We have had fat cow upload from their end and have no problem

    Follow the instructions to uninstall then reinstall the Flash plugin then restart the Mac(s).
    http://kb2.adobe.com/cps/865/cpsid_86551.html#ostype=m,prob1=fnctn,prob2=game,
    Help for deleting Flash cookies.  http://hints.macworld.com/article.php?story=20091114062050800

  • How I put photos / images at facebook page? The files do not open.

    How I put photos / images at facebook page? The files do not open.

    The crash happens on setting up the audio hardware. Either you have a broken driver or your preferences is damaged. You can try deleting the MainStage preferences.

  • How to upload image using JSP

    hi,
    i am confronting a problem how to upload image from local PC to web server . I am using Tomcat 4.0
    please help me by sending code
    thanks

    Hi,
    Here is the solution for uploading images and displaying images. I am using struts with JSP, so this code has a Action and ActionForm class. You can put the same code in Java Beans or Servlet class to run it. This code has two JSP files - one for Upload (upload.jsp)and other for Image(image.jsp) display. It has a Servlet also to display the image. Here is the code file wise.
    Upload.jsp **********************************************************
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <html:html>
    <head>
    <title>New Page 1</title>
    </head>
    <body>
    <html:form action="uploadAction.do" enctype="multipart/form-data" method="POST">
    <p>File to upload   
    <html:file property="fileUpload" size="20"/></p>
    <p><html:submit value="Upload" property="upload"/></p>
    <p> </p>
    <p><html:img src="image.jsp"/></p>
    <p> </p>
    </html:form>
    </body>
    </html:html>
    Image.jsp*****************************************************************
    <jsp:useBean id="upload" class="uploadtest.uploadActionForm" scope="session">
    </jsp:useBean>
    <%
         byte[] rgb=(byte[])session.getAttribute("byte");
         request.setAttribute("byArr", rgb);
    %>
    <!--
    The image data is now on the request object.
    Forward the user to the showImage servlet.
    That servlet will process and display the image data contained on the request object.
    -->
    Image is<p>
    <jsp:forward page="/showimage" />
    Struts Action Class - UploadAction.java **************************************************
    import javax.servlet.http.*;
    import java.io.*;
    import org.apache.struts.upload.FormFile;
    import org.apache.struts.action.*;
    public class uploadAction extends Action {
    public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) {
    uploadActionForm upload = (uploadActionForm) actionForm;
    try {
    int size=upload.getFileUpload().getFileSize();
    //if (image != null) {
    byte[] byteArr = new byte[size];
    //Create an input stream to read the uploaded file.
    ByteArrayInputStream bytein = new ByteArrayInputStream(upload.getFileUpload().getFileData());
    // Load the input stream into the byte Array.
    bytein.read(byteArr);
    // Close the input stream.
    bytein.close();
    // Load the byte[] into the content field.
    upload.setContent(byteArr);
    HttpSession ses=httpServletRequest.getSession();
    ses.setAttribute("byte",byteArr);
    return actionMapping.findForward("success");
    } catch (Exception ex) {
    ex.printStackTrace();
    return actionMapping.findForward("success");
    Struts ActionForm class ---uploadActionForm.java***************************************************
    package uploadtest;
    import org.apache.struts.action.*;
    import org.apache.struts.upload.*;
    import javax.servlet.http.*;
    public class uploadActionForm extends ActionForm {
    private FormFile fileUpload;
    private byte[] content;
    public FormFile getFileUpload() {
    return fileUpload;
    public void setFileUpload(FormFile fileUpload) {
    this.fileUpload = fileUpload;
    public byte[] getContent()
    return content;
    public void setContent(byte[] theFile)
    this.content = theFile;
    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
    /**@todo: finish this method, this is just the skeleton.*/
    return null;
    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
    Servlet to display image --- ShowImage.java ********************************************************
    import java.io.*;
    import java.util.*;
    public class ShowImage extends HttpServlet {
    //Initialize global variables
    protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    byte[] rgb = (byte[]) request.getAttribute("byArr");
    if (rgb != null)
    response.setContentType("image/gif");
    OutputStream stream = response.getOutputStream();
    stream.write(rgb);
    else
    response.setContentType("text");
    response.getWriter().write("attribute byArr not found");
    This code will enable to to upload and display the image. If you know Struts, then you can write the Struts-Config.xml file by yourself. Other wise write to me, I will send you that. If you want to save the image in database, then you have to keep it as BLOB datatype is database. For database you need to send the byte array in the uploadAction.java file to database. Database will keep the image as binary.
    Thanks
    Amit

  • How to upload and share document from pages

    how to upload and share document from pages app?

    Hello dannafromfl,
    Documents can be shared via File Sharing to iTunes or via Email.
    Pages for iOS (iPad): Send and receive documents in email messages
    http://support.apple.com/kb/PH3564
    Pages for iOS (iPhone, iPod touch): Share documents by connecting to your computer
    http://support.apple.com/kb/PH3598
    Cheers,
    Allen

  • How to upload images in to custom table and display them in normal ABAP report?

    Hi Experts,
    Can anyone suggest me ,how to upload images into customised table and display thoes images in normal abap report.
    Thanks in Advance,
    Rgds,
    Anusha

    Hi Experts,
    Can anyone suggest me ,how to upload images into customised table and display thoes images in normal abap report.
    Thanks in Advance,
    Rgds,
    Anusha

  • How to upload Images in Forms 6i

    Dear all,
    How to upload images in Forms 6i and save it in database. Please anyone help me with example.
    Thanking you
    Shekhar

    why do you need an active/X for this?
    Can't you just create 2 default blocks on dept and on emp.
    Use the relationship wizard to define the relation. and set the number of records displayed for the emp block to 10?
    This will give you all you need with no hussle.

  • How to upload images on hard drive to iPad?

    how to upload images on hard drive to iPad?

    You can import them into iTunes then use that to get them onto your iPad.
    You can download the iCloud control panel and use photo stream to get the photos onto your iPad
    You can e-mail them to yourself and them save them from that e-mail
    You can upload them to something like dropbox and then download them onto your pad from there.

  • How to upload image files in sqlserver from jsp

    hi friends,
    i want to upload images to sqlserver how will i store url of the image or dorectly store the file in binary format, if we store in related path,plese give some ideas on store that paths in data base and how we store that image files in user directories.
    bye

    hi jay , I know that concept , but i dont know how to upload image files to server Please help me
    here i am giving my problem
    If any user register with site, he has the option to upload his image to the site, so i am using in html file upload option, But i dont know how to store that iamge into the server
    please give me suggestion
    regards
    sudhakar

  • IOS how to upLoad image

    IOS how to upload image, how the
    receiving server,can you help me?

    Hi. The iOS library for Azure Storage is currently in planning. In the meantime, please check out the following blog
    http://chrisrisner.com/Mobile-Services-and-Windows-Azure-Storage which may help with your scenario. Thanks.

  • Share images to a Facebook page

    Hi, Is there a way to use Share to post images to a Facebook page wall or album instead of an individual? Since the last FB revision I effectively have one login for both individual and can switch to a page, but need to target the page for them image sharing.
    Thanks very much for any insight.

    Ended up talking to Apple Chat Support -- doesn't look like the function is supported.
    If you want this -- post feedback here:  http://www.apple.com/feedback/macosx.html

Maybe you are looking for

  • Move program file to external hard drive?

    Good morning group, I am currently working with my 2002 PowerBook G4 12", 867MHz, 40GB, 1.25 RAM, running Tiger OSX 10.4 I recenly purchased a Leopard 10.5 install disc and want to reboot my laptop to Leopard.  I also purchased Microsoft Office 2008

  • 'Remote' Button not visible in Mac iTunes 12.1

    My Remote app on iPhone 6 (iOS 8.2) suddenly stopped working with my Macbook Pro (mid 2012, Yosemite 10.10.2) and iTunes 12.1.    The documentation points to a Remote button in iTunes 12.1 that isn't there. In the Remote app, my Mac's iTunes library

  • Zen Nano and some directories not playing in track ord

    Hi, I just bought a Zen Nano Plus and I've noticed that some album directories play in track order based on the track numbers found in the id3 tags while some directories play files in alphabetical order. All my directories on the Nano right now are

  • How to load/import/extract Axon Instrument .abf file 2.0.4 version?

    Hi all, We recently set up a low current measuring system using Axon Instrument's devices, and the data recorded are in .abf format 2.0.4 version. I know there's an example VI about abf file format here: http://www.ni.com/example/30979/en/, but it on

  • Byte [] to Object and Object to byte[]

    Hi, I am quite new to java and need some help. My question is how can I convert an Object to byte [] and convert back from byte [] to Object. I was thinking of something like: From object to byte [] byte [] object_byte=object.toString().getBytes(); W