Trying to get URL for my photos for Mac 10.9.3

Have never been able to get a URL for one of my photos. How do I do that? Do I need to download a program to do so?  (I am a participant at FSM Film Score Monthly, and wanted to post some of my photos there.) Thanks.

Looking now
The site here is making answering this very difficult
OK made an account and looked at the instructions for posting. As andy surmised the image you want to have in your post at that site must already be on the web somewhere.
You could try one of the links andy posted, photobucket might be the easiest for a new user to use\
Once you have an account there and you upload your images you can post them to the FSM site
by using the code
[iimg]URL from photo bucket[/img]
OK finally got that all posted, good luck
regards

Similar Messages

  • I have tried to get it to remove autocomplete for certain sites. I have removed history and done individual deletes and autocomplete for all sites comes back every time. Please help!

    I have tried to get it to remove autocomplete for certain sites. I tried to remove them all. I tried deleting individual entries. It will not remove autocomplete select unless you just tell it not to show autocomplete.

    Are you talking about the location bar?
    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks and those entries can't be removed from the location bar drop down list with the Delete key.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    That will open the "Edit This Bookmark" dialog and you can click the Remove button to remove the bookmark if you want to remove such a bookmarked entry.<br />

  • I am trying to get the CLIPPINGS add on for firefox. but it says it is not compatible with FirFox 8.0 whaat can I do.

    I am trying to get the CLIPPINGS add on for firefox. but when I try and download it, it says it is not compatible with FirFox 8.0. also the latest version of firfox is 3.1 but my version is 8.0 Is that right?

    There were some issues with the addons site and checking for (compatibility) updates.<br />
    It seems to be working now, so you can try again to install the extension.

  • Ever since i "upgraded" to yosemite i can't run illustrator (i'm getting a plugin error "Photoshopimport.aip" and "PhotoshopExport.aip" message... i've tried to get support (no longer available for cs4 design premium!!!... i've uninstalled and reinstalled

    ever since i "upgraded" to yosemite i can't run illustrator (i'm getting a plugin error "Photoshopimport.aip" and "PhotoshopExport.aip" message... i've tried to get support (no longer available for cs4 design premium!!!... i've uninstalled and reinstalled... the problem persists... can anyone at adobe provide guidance, orientation, help?... thank you kindly,
    bob kincey
    [email protected]
    [email protected]

    Some people have reported success with opening Photoshop before opening AI. Some how the aips are registered there and are then available to work in AI.

  • Trying to get " url " to work in my scroller/ gallery...

    trying to get " url " to work in my scroller/ gallery...
    please take a look at my action script and xml... ive got all
    the fields working except for the " url " ... what adjustments do i
    need to make to get the url for each pix to work...
    thanks...trey
    delay = 3000;
    function loadXML(loaded) {
    if (loaded) {
    xmlNode = this.firstChild;
    image = [];
    title = [];
    headline = [];
    description = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    image
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    title
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    headline
    = xmlNode.childNodes.childNodes[2].firstChild.nodeValue;
    description
    = xmlNode.childNodes.childNodes[3].firstChild.nodeValue;
    firstImage();
    } else {
    content = "file not loaded!";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("images.xml");
    p = 0;
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
    preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
    preloader._visible = false;
    if (picture._alpha<100) {
    picture._alpha += 10;
    function nextImage() {
    if (p<(total-1)) {
    p++;
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    headline_txt.text = headline[p];
    description_txt.text = description[p];
    picture_num();
    slideshow();
    function prevImage() {
    if (p>0) {
    p--;
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    headline_txt.text = headline[p];
    description_txt.text = description[p];
    picture_num();
    function firstImage() {
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[0], 1);
    title_txt.text = title[p];
    headline_txt.text = headline[p];
    description_txt.text = description[p];
    picture_num();
    slideshow();
    function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
    function slideshow() {
    myInterval = setInterval(pause_slideshow, delay);
    function pause_slideshow() {
    clearInterval(myInterval);
    if (p == (total-1)) {
    p = 0;
    firstImage();
    } else {
    nextImage();
    and here is my xml...
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <images>
    <pic>
    <image>sample1.jpg</image>
    <title>Google</title>
    <headline>headline 1</headline>
    <description>this is the description of article
    1.</description>
    <link>
    http://www.google.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    <pic>
    <image>sample2.jpg</image>
    <caption>Yahoo</caption>
    <headline>headline 2</headline>
    <description>this is the description of article
    2.</description>
    <link>
    http://www.yahoo.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    <pic>
    <image>sample3.jpg</image>
    <caption>BAS-llc</caption>
    <headline>headline 3</headline>
    <description>this is the description of article
    3.</description>
    <link>
    http://www.bas-llc.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    <pic>
    <image>sample4.jpg</image>
    <caption>USC Trojans</caption>
    <headline>headline 4</headline>
    <description>this is the description of article
    4.</description>
    <link>
    http://www.uscripsit.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    </images>

    Extensions that do not have a "Remove" button are installed by other software and are not under control of the Firefox extension manager.
    Such globally installed extensions are usually found via a registry scan or are installed in a location that Firefox scans for installed extensions.
    *https://developer.mozilla.org/Installing_extensions
    *https://developer.mozilla.org/Adding_Extensions_using_the_Windows_Registry
    Extensions installed this way need to be removed via the settings (options/preferences) of the program that has added this extension or this program has to be uninstalled via "Control Panel > Programs".
    In Firefox you an only disable such an extension.
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Is Apple working on a fix for editing photos for wallpaper, call contacts with photo, etc? The iPhone used to be so intuitive for everything but that tanked with the ios7 upgrade

    iPhone 5 was so intuitive before the update. Editing photos has changed for the worst-any word of a fix for editing photos for wallpaper? Not a work around, a fix. If I wanted this kind of photo editing I'd still be using my droid x.
    Anyway to go back to ios6?

    Is Apple working on a fix for editing photos for wallpaper, call contacts with photo, etc?
    How would we know?
    What's broken that you think needs to be fixed?
    Anyway to go back to ios6?
    No

  • Any tips for optimizing photos for Flash?

    I'm curious if anyone has any great tips for preparing photos
    to be used in a Flash website.
    I'm very familiar with Photoshop and I've designed many
    non-Flash sites so I know the general approach for preparing photos
    for the web. I've done a few Flash sites which are heavily image
    based... no images galleries but just large photos used in the
    layouts.
    In the interest of keeping the file size down to a minimum,
    I'm bringing the quality of my jpegs down to 45 or even 30 in
    Photoshop (this usually makes them around 40K +- 10K each).
    Needless to say, they lack the sharp quality of a good image when
    brought down to this size.
    Lately, I've seen some really great Flash sites that have
    very large images in their layout The photos are very clear and the
    site moves smoothly/quickly.
    So, I guess my question is two-fold:
    1) What can I do to maximize the quality of the photos
    without compromising the speed of the site?
    2) As a general rule, what is the range of quality for photos
    brought from Photoshop into Flash? (jpeg, psd, gif?)
    thanks for any insight!

    Is this typical?
    I just exported a background image of bricks (which needs to
    look pretty
    clear) and the export on my jpg was 61KB, my png export was
    361KB.
    Should I use the *.png anyway? It doesn't look, to me, like
    there's much
    difference between the two.
    I don't expect to have the site scaling -should be pretty
    static.
    TIA,
    Jon
    "Nickels55" <[email protected]> wrote in message
    news:els0r1$h4r$[email protected]..
    >I like to use uncompressed .PNG files. That way you can
    change the quality
    >in
    > Flash very easily and you can use transparency with
    them. If you want to
    > change
    > the quality of the final output you can do it in the
    publish settings in
    > Flash.
    >

  • So I'm trying to get a window to fit my mac. Its a window on pokerstars if that helps, so no minimize/maximize. The window is actually too long vertical ways to fit the screen so the bottom is cut off? I hid bottom toolbar but still no help :-/ any help?

    So I'm trying to get a window to fit my mac. Its a window on pokerstars if that helps, so no minimize/maximize. The window is actually too long vertical ways to fit the screen so the bottom is cut off? I hid bottom toolbar but still no help :-/ any help? Yeah i have no fit screen button, the top toolbar doesnt have zoom/minimize available... any help???

    Hi RobSten1306
    Send us an email if you need help on this case and we can help look into this for you.
    You can email us using the contact the mods link in my profile under the section 'About Me'.
    Thanks
    Stuart
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • While searching for a photo, my Mac  went into endless loop, so had to shut it down using button. After restart,  highlightrd text looked "different." Also unable to  highlight layers in Photoshop.

    I was searching for a photo on myiMac when it went into an endless loop. Only way I could think of to stop was using the button at the back of my computer.  After restart, had to erase  text in Appleworks one character at a time, because  highlighter did  not work properly; also  looked "different: when typing  on an internet website . ..and was unable to highlight  layers  (in Photoshop). What did I do wrong? and How can I correct it? PS: Also unable to edit my system. (Am only using  my iMac Intel these days, with OS X.4.11)

    Anybody able to help me out with this one? West coast, you awake yet?

  • FCP Sequence compression / format for editing photos for a HD Plasma screen

    Hello Forum
    I'm editing a 10 minute documentary that's mostly based on graphics and photographs, and a voiceover. There's maybe 30 seconds of HD Video in it (Sony EX1 Camera). (But I assume the video will be convertable into any format anyway.)
    The final film will be screened on an 1920x1080 HD Screen.
    What sequence preset should I use? I don't see any 1920x1080 in my final cut pro 5.2.
    I'm somewhat new to the world of HD. Any advice would be much appreciated.
    Thank you.
    Cheers,
    sk

    Thank you for all your replies.
    You guys are right. Sorry it's 5.1.4...
    Let's assume there's no video involved. What would be a good format workflow for a 10 minute film containing audio, graphics and photos only (72dpi jpgs and tiff files)?
    I will receive low res / temp photos for a rough cut. And then high res photos for the final cut.
    I would like to edit offline with a timeline setting that allows me to pan and zoom in/out of photos without much rendering, a fast compression. And then once the cut is approved another setting that allows me to uprez to a higher compression with little effort.
    My setup: Mac Pro (2009) with 3 gigs of RAM (thinking of upgrading to 6) and 512 megs graphics card.
    Any advice is much appreciated.
    Thank you
    sk

  • App for taking photo for contact

    I would like to use iPhone 4 taking a photo with new friend and put it into contact. I am wondering if there is any app to make the whole process simpler. Thanks!

    Sorry, I believe I did not clearly describe the issue. The current method is quite simple and I love it. So far, I have not added any photo in my contact yet but want to do so from now on. It is very useful for some friends who meet once a year or two years. The camera captures 5m photo but for such small photo. It should scale down the size in order to save the file size. Currently, I have over 700 contacts in the database. If I put photo in contact, I am unsure if it will impact the performance of the phone and occupies huge space. The other issue is to crop the head only for such small space provided for the photo in contact. Of course, I can do it manually but take time and is inconvenient. If there is an app that can have a small frame for the photo space in contact, that would be great.

  • I am trying to get the music content on my Mac onto my iPhone. When I connect the devices, the computer does not seem to recognize the iPhone, i.e., on the open itunes window, the iPhone is not seen as a connected "device".

    I am trying to get the music content in iTunes on my Mac onto my iPhone. When I connect the devices, the computer does not seen to recognize the iPhone. i.e., on the open iTunes window, the iPhone is not seen as a connected "device".

    Hi,
    See Here
    iPhone, iPad, or iPod touch not appearing in iTunes
    From Here
    http://www.apple.com/support/itunes/devices/
    Also...
    Device Not Recognised
    For PC
    http://support.apple.com/kb/TS1538

  • Older powerbook, trying to get it up to snuff for new ipod

    First, thanks in advance for your help.
    I am trying to run a new ipod Classic on my G4 Powerbook with the following specs:
    OS: Mac OS X 10.3.9
    Hardware Overview:
    Machine Model: PowerBook G4 15", CPU Type: PowerPC G4 (1.1), Number Of CPUs: 1
    CPU Speed: 1.33 GHz, L2 Cache (per CPU): 512 K, Memory 256 MB, Bus Speed:167 MHz
    I am aware (now) that I need 10.4.8 or higher (I know it's written on the box...). I have read through roughly 25 pages of posts and could not find the answer to my questions. Here they are:
    How do I upgrade my current OS to 10.4.8 or higher given my hardware limitations (add more RAM? Possible even?)?
    - I saw that Leopard was too much for my modest Powerbook, but think maybe Tiger will get me there. Am I wrong to think that?
    Can I use Tiger on this CPU? Will it run 10.4.8 or higher? How do I find and install Tiger as I cannot buy it anymore from the online store, only Leopard is available.
    Do I need a new computer to run my iPod, or does someone here have a suggestion as to what I could possibly do short of buying a whole new CPU for my new iPod to connect with?
    Again, thanks very much for your help, and I hope there are some options available to me.
    Best regards,
    NSS

    There's nothing wrong with your question. There are just no great answers.
    OS10.4.x Tiger would be fine for you, much better with 1-2GB of RAM. However, it's hard to find for sale now commercially. I have no idea if the license allows a private party to sell you their old copy or not. Maybe in a year, some of the used equipment vendors will have it, but even then, the price will probably be so close to just buying Leopard, you may as well do that. Especially if you upgrade RAM.
    As a practical matter, I would suggest upgrading RAM to 1 or 2 GB and buying Leopard OS10.5.x. Unless you don't have a DVD drive, or are tied to using Classic. Leopard doesn't run Classic.

  • I am having trouble trying to get my address book from my mac (just downloaded Lion for this purpose) to my 3G ipad. Set up an icloud account but still confused! Please help !

    I updated my mac with  os x Lion so that I could accomplish moving my address book from the mac to my new IPad 3G. I also set up an icloud account for this purpose, but I *still* cannot figure out how to move my address book from one computer to the other. When I'm on my mac and try to use bluetooth to export the address book, I'm able to find my ipad but I soon get a message that it does not support the necessary services. I have no idea what's going on and would appreciate any advice. tks in advance, Sarah

    blacksheepfibers wrote:
    I updated my mac with  os x Lion so that I could accomplish moving my address book from the mac to my new IPad 3G. I also set up an icloud account for this purpose, but I *still* cannot figure out how to move my address book from one computer to the other. When I'm on my mac and try to use bluetooth to export the address book, I'm able to find my ipad but I soon get a message that it does not support the necessary services. I have no idea what's going on and would appreciate any advice. tks in advance, Sarah
    The address book syncs via iCloud, not Bluetooth or iTunes.
    You upgraded to Lion so you could use iCoud.
    On the computer. go to Apple menu > System prefs > iCloud.
    Sign into your iCloud account.
    Tick everything.
    This enalbes the se items syncing to iCloud.
    On the iPad, Settings > Mail, Contacts, Calendars.
    Create a new iCloud account.
    Sign in with the same AppleID as your computer.
    Settings > iCloud and turn everything on.
    BAM!
    That is all you need to do.
    Your contacts (and all other checked items checked) will sync between computer and iPad.
    No need to use iTunes

  • I'm trying to get a style switcher going for my site(for the colour scheme)

    I'd like to give my users the choice of changing the colour
    scheme of my site (
    http://chaoscoalition.net) at
    will, through css style changing buttons such as the ones on the
    forum's theme(
    http://forum.chaoscoalition.net).
    I've read many articles and tutorials on how to set up
    alternate stylesheets for a webpage, but I can't quite get it
    right. Every time I seem to have gotten it right, it either opens
    the php file that sets the cookie, or it opens the stylesheet as
    text. I want to end up with something like the forum's theme
    changing module, but for the homepage.
    I have 5 different versions of the page made, all as
    different pages(php format), but I don't understand how to link the
    buttons at the top to trigger the stylesheet change, and I don't
    even knwo if it's possible to rely on a css file to change the
    whole colour scheme of the page(which is image based).
    It'd be great if someone could walk me through this, or offer
    some tutorial that explains how to do this from scratch.
    Thank you.

    First, never use Fireworks or any graphics app to build HTML and CSS for you.  The resulting code is rigid, fragile and only good for quick comps or prototypes to show a client.  Use DW to generate actual site code.
    Secondly, external stylesheets must not contain JavaScripts or X/HTML code as your green.css does.  Only CSS rules and comments are allowed inside external stylesheets - like so:
    /**Green CSS**/
    body {
         margin:0 auto;/**this centers page**/
         padding:0;
         width: 900px;
         font-family: arial, helvetica, sans-serif;
         color: white;
         background: green; /**this is green**/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/

Maybe you are looking for

  • Someone else living in my house created their own apple ID, and since then all the music in my library is gone. What can I do to fix this?

         I have tried seeing if there are any other systems in the library. There are not. I have been able to get back all the songs I downloaded off of Itunes, but there are a lot more from CDs that are missing.

  • Adobe Readerを先に開いておかないと.IEでのpdfリンクが開けない

    質問します. IEでインターネットを利用し.見たいリンクをクリックしますよね. 今まで.それがpdfファイルのリンクでも 自動的にAdobe Readerが起動して表示されていました. ところが.近頃pdfファイルのリンクをクリックすると. 画面が真っ白になって少し時間が経ってから 以下の表示が現れて.IE自体は強制的に終了してしまうんです.↓ iexplore.exe 問題が発生したため.iexplore.exeを終了します. ご不便をおかけして申し訳ありません. 作業中であった場合.その情報

  • Folder Creation is Messy

    Hi there, When I create a folder anywhere in Finder, why does it not align with the grid automatically and instead overlap other folders? This is incredibly annoying, is there anyway to change it? Many thanks.

  • Bind Additional User Defined Fields at Fixed Assets

    Hi, i already created additional user defined fields at fixed assets table, but i don't know how to bind the fields into edit text. i try to do like below : otext.DataBind.SetBound(True, "@BA_OAMD", FieldName) And also when i add a few new edittext a

  • Multiple column seq update

    Hi all, Can someone help me to update my emp table. this is my orginal table SQL> select * from emp_addr order by 1, 2; EMP_NAME        EMP_ADD              CO_NAME ADAM            803, Coton Gren rd   hl bank ADAM            803, Coton Gren rd   hl