Linking Text to a Loader-NEED HELP!!!!!

I have some text, let's say it's called "Photograph 1". How
do I use that text to load a .jpg image into a Loader when clicked?
Should I convert the text into a symbol (button)? I can do that
with no problem. I just dont know how to use that text link or the
button to load the image into the loader. Anybody got any code for
doing this? Is there a behavior that I can use to do this? Any help
will be appreciated!

Check the font size in the options bar. If it's really small you won't see it.
Look in your layer's palette and insure your text is in a layer located above the photo in the stack.
You might also check your image's resolution in the Image Size dialog. I've seen a couple of posts where someone changes the resolution to 1 with resample turned off...then can't see the text because it's too small even when they have large numbers inserted in the font size box.

Similar Messages

  • My mom and I both have iphone5 but when I send her messages they aren't blue but any other iphone I text is blue I need help to get that fixed

    My mom and I both have iphone5 but when I send her messages they aren't blue but any other iphone I text is blue I need help to get that fixed

    Both of you need to have iMessage activated, and both have to have active Internet connection for iMessage. Are you both using the same Apple ID? Are you using the phone number or Apple ID for messages?

  • TS1702 Whenever i click the link for a great app i found, to go to the app-store, the app store reply is " could not complete your request" this happen for every app link that i persue! Need help

    Whenever i click the link for a great app i found, to go to the app-store, the app store reply is " could not complete your request" this happen for every app link that i persue! Need help

    Try signing out of your account and then sign back in and see if that helps.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try again.

  • Loader (Need help to convert from AS3 to AS2)

    Since I know this code works fine and that I use it into one of my AS3 flash, I need it in one of my AS2 flash and I don't know how to adapt it. I've searched in over 100 threads and I can't find something similar... Thanks to help me get it to work in AS2! Since I need it in AS2, I thought it would be the right place to post it.
    I posted all the loading process code, but I would need help mostly with the Loader part. How to do it in AS2? Thanks!
    var img = 0;
    var image_total = 0;
    var myImages_array:Array = new Array();
    var myBitmaps_array:Array = new Array();
    function Init();
    // Images urls are loaded into an array before this call
    LoadImage();
    function LoadImage()
        if (img < myImages_array.length) // img is the current image index and myImages_array is my array of URLs
    // I need help with this part please
            var loader:Loader = new Loader();
    // returns the image full path and load it
            loader.load(new URLRequest(my_site_url + myImages_array[img]));
            loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
        else
            if (count == 0)
    // When everything's loaded, I'll start loading my Bitmaps into a small slideshow
                count += 1;
                init_slideshow();
    function imageLoaded(e:Event):void
        var image:Bitmap = e.target.content;
    // Bitmap manipulation here (removed)
        image_total = myBitmaps_array.push(image);
        if (img < myImages_array.length)
            img += 1;
    // Call next image
            LoadImage();
    function init_slideshow():void
    // Reserts the current index for the first one
        img = 0;
    // Start the slideshow since everything's loaded
        animate_slideshow();

    If you look at the Flash help documentation for the addListener metod of the MovieClipLoader class, there is an erxample there that you should hopefully be able to work from.  It will be better if you get your stuff coded into AS2 before you pursue more help with it.  IT is difficult to tell you how to fix something if you don't show what you are using.

  • Text index search issue -- need help

    Hi,
    We have created a text index using the below script. This is working fine and we are able to retrieve data when we do a search on this with 'contains' clause.
    CREATE INDEX ITEM_TXT_IDX ON ITEM
    (ITEM_NAME)
    INDEXTYPE IS CTXSYS.CONTEXT;However now the problem is we are not able to search with special characters.
    when we perform search with below query it doesnt retrieve any record. i guess when we search with special character using text index, it ignores the special characters and performs search
    SELECT * FROM item
    WHERE contains(item_name, 'AGREE NATURE BALANCED NRML LIQ 300 ML (#', 1) > 0 the below query retrieves record fine as it doesnt have any special character search.
    SELECT * FROM item
    WHERE contains(item_name, 'AGREE NATURE BALANCED NRML LIQ 300 ML', 1) > 0can anyone pls help?

    You need to escape the special characters by either putting \ in front of each special character or putting {} around each token containing special characters. That will cause the contains query to view them as ordinary characters instead of attributing special meaning to them. However, since, by default, they are not tokenized and indexed, they will be ignored and your search will find a string with those characters and a string without those characters. If you want to be able to search for the actual characters, then you need to set them as printjoins in a lexer and use that lexer as a parameter in your index creation. You can see what has been tokenized and indexed by selecting from the token_text column of the dr$your_index_name$i domain index table after index creation. Please see the demonstration below.
    SCOTT@orcl_11gR2> -- test environment:
    SCOTT@orcl_11gR2> CREATE TABLE item
      2    (item_name  VARCHAR2 (60))
      3  /
    Table created.
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO item (item_name) VALUES ('AGREE NATURE BALANCED NRML LIQ 300 ML (#')
      3  INTO item (item_name) VALUES ('AGREE NATURE BALANCED NRML LIQ 300 ML')
      4  INTO item (item_name) VALUES ('OTHER DATA')
      5  SELECT * FROM DUAL
      6  /
    3 rows created.
    SCOTT@orcl_11gR2> -- without printjoins:
    SCOTT@orcl_11gR2> CREATE INDEX ITEM_TXT_IDX
      2  ON ITEM (ITEM_NAME)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    SCOTT@orcl_11gR2> SELECT token_text FROM dr$item_txt_idx$i
      2  /
    TOKEN_TEXT
    300
    AGREE
    BALANCED
    DATA
    LIQ
    ML
    NATURE
    NRML
    OTHER
    9 rows selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML \(\#',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    AGREE NATURE BALANCED NRML LIQ 300 ML
    2 rows selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML {(#}',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    AGREE NATURE BALANCED NRML LIQ 300 ML
    2 rows selected.
    SCOTT@orcl_11gR2> -- with printjoins:
    SCOTT@orcl_11gR2> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('item_lexer', 'BASIC_LEXER');
      3    CTX_DDL.SET_ATTRIBUTE ('item_lexer', 'PRINTJOINS', '(#');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> DROP INDEX item_txt_idx
      2  /
    Index dropped.
    SCOTT@orcl_11gR2> CREATE INDEX ITEM_TXT_IDX
      2  ON ITEM (ITEM_NAME)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  PARAMETERS ('LEXER  item_lexer')
      5  /
    Index created.
    SCOTT@orcl_11gR2> SELECT token_text FROM dr$item_txt_idx$i
      2  /
    TOKEN_TEXT
    300
    AGREE
    BALANCED
    DATA
    LIQ
    ML
    NATURE
    NRML
    OTHER
    10 rows selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML \(\#',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    1 row selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML {(#}',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    1 row selected.
    SCOTT@orcl_11gR2>

  • SQL Loader - need help - any thought!

    I have a datafile with info like this,
    tag1,f01,f02
    tag2,.....
    tag3,......
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag1,f01,f02
    tag2,.....
    tag3,......
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag4,info1,info2,....
    tag5
    My requirement is like this,
    I have to load into a table with folloing info
    f02,info1,info2
    tokenize the tag1 record, get the f02 value use that along with tag4 fields to populate the table. This f02 field will get new value after reading the second tag2 occurance.
    Any thought on this is greatly appreciated!

    If you look at the Flash help documentation for the addListener metod of the MovieClipLoader class, there is an erxample there that you should hopefully be able to work from.  It will be better if you get your stuff coded into AS2 before you pursue more help with it.  IT is difficult to tell you how to fix something if you don't show what you are using.

  • I have issues with 2 websites, they are not loading need help

    This is so frustrating, i have 2 new clients whos websites are working when i use the
    http://caesars.businesscatalyst.com/index
    http://caesars.businesscatalyst.com/index
    I have used business catalyst for other clients and i have set them up exactly the same way, and when i go to the url for the website this is what i get.
    http://www.saporerestuarant.com.au/
    No Start Page
    Could not display this Web Site as no Start Page has been configured. To configure a default starting page, set one of your Web Pages to be the Start Page. Please contact your Administrator for more information.
    I have gone in and added the domain name and set the start page to index, this is driving me insane can someone please help.
    Also just to make sure, what is the ip address that i should be pointing the domains to due to the upgrade im from australia so is it 54.252.148.183
    if someone could help out it would be much appreciated.

    Hey,
    http://www.saporerestuarant.com.au/ is on the new Australia datacenter, so you need to point the A record to 54.252.148.134. This forum document lists all the IP addresses, depending if your site is hosted on the new or old datacenters: http://forums.adobe.com/docs/DOC-1741
    Please let us know if you have any questions on this.
    Thanks,
    Florin

  • Trouble with OS6- crossing texts and not loading apps- help?!?

    Updated four iPhones to 6OS last night- texts are getting crossed and apps/photos stuck- not all downloaded and say "waiting" or downloading.  Nothing's improved since last night.

    I don't quite understand the discussion about wireless vs. wired connections on the server (note: I'd generally recommend running the server on a wired, not a wireless connection).
    In either case it sounds like your issue is one of access from outside the network, right?
    If that's the case, this just sounds like a typical port forwarding issue. Your 10.0.0.1 address is a private class address - one that uses NAT to get to the wider internet. No one outside of your network will ever, ever be able to connect to this address.
    If you want external access to this server then you need to configure port forwarding on your router. Port forwarding tells the router to accept specific traffic on a public IP address and forward it to a server on your LAN. It just sounds to me that you haven't configured port forwarding. You'll need to check your router manual for specifics on how to do that.
    As for the accounts, there's no such thing as accounts associated with an specific IP address, just with the server. As long as users are pointing to the right server there shouldn't be any issue.

  • Core Audio Crashes when Logic Loads - need help

    Hi,
    Logic 8 and Garageband both crash when they load. If I turn off Core Audio during loading by Control clicking the Logic icon, Logic does load but without audio. In I then enable Core Audio, Logic crashes right away. If I take out all the audio plugins from the Library (none in user), it makes no difference. I have taken out the Logic preferences from the User Library. It did not fix the problem. I have looked for anything to do with Melodyne and Rewire on my system did not fine anything I could solve the problem with.
    Strangely, Sibelius or Sound Track Pro do not have this problem (not using Core Audio?). I was advised by someone to download the Pro Application Support Runtime. However, older versions of this (4.02) will not install on my computer, and the newer ones seem to be only for Final Cut Studio and will not accept a Logic serial number.
    It seems I have a serious corruption problem with Core Audio. I do not know what to do with Core Audio as it does not seem to be an actual application that I can trash and replace. Nor do I know of any Core Audio preferences to trash.
    Does anyone, including an Apple expert, know how to fix this problem?
    Regards
    Paul Nicholls

    It might help if you could post a crash report.
    Coreaudio is part of OS X. Worst case scenario would be an OS X reinstall.
    One thing to try: create a new User account, login to that and open Logic from that. Does it still crash?

  • InDesign Text Glitch. I need help!

    I am having an issue where regardless if I hand type text into the document, or copy and paste text from anywhere into the document then move the text box over the "live area" of the document, the text in the text box gets reformatted to have double spacing. (see screenshot below)
    When the fresh text is created.
    When I move the same box over the live area of my document.
    I already restarted my computer and deleted the preferences for InDesign when I started it up with no luck. If anyone has any other recommendations please let me know. This really is putting a kink at work.
    UPDATE: I made a new document with the same specs and tested the issue on that and it worked normal without any reformating. Also I noticed when I move the text box in the original document the text disappears while I am moving the text block.
    Thanks!

    It's not a glitch, it's Align to Baseline Grid:
    (I think I'll let the typo in my screenshot go unfixed )

  • Website not loading -- NEED HELP ASAP

    Hi everyone,
    I created a site using the business catalyst domain, and it has been working fine until 20 minutes ago. The page won't even load. I have a student account for the Adobe Creative Cloud Package, does anyone know what the problem might be?

    We are aware of the situation and working actively on resolving the issue.
    We will update our status page with investigation progress :
    BC Status
    Apologize for any inconvenience caused !
    Thanks,
    Sanjit

  • I am stuck in text messging mode and need help getting out

    Please help. How do i navigate

    If the phone freezes up press and hold the sleep wake button and the home button for 10 seconds... The phone will reset and you will see it shut off.

  • Need help installing Elements 12 on new computer!

    I have used the correct serial number, I called the help support desk and the technician told me that she didn't know what to do to fix the issue. Any suggestions?
    The editing portion of the software downloaded to the new computer works just fine. However the organizer doesn't load at all. I tried re-loading it but the system tells me I have two many computers.
    I can't deactivate the old one as the all-in-one monitor does not work.
    Any suggestions? Please don't tell me to just buy Elements 13...I can't yet.
    Thanks, Mary

    Contact Adobe support using chat and ask them to reset your activation count - ask for nothing more than that or they might tell you they do not support your older software and not help at all.  After that you should not be getting a "two many computers" message when you try to install and activate.
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Need help with student verification

    My daughter bought Adobe Acrobat XI Pro on Amazon new and then we followed the directions on Adobe to verify she is a student in high school.  It has been 3 days and we still have not recieved the activation code to use our product?  The Adobe support is horrible (I have been on the phone for hours with no one ever answering) and there is nowhere to submit a ticket.

    Unfortunately there is no one in the forums that can do much to help you since most of us are product users like your daughter, and any employees here do not have much ability to process anything in your favor beyond possibly checking a status.
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Get chat help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )
    Another good resource for getting information is the student and teacher edition information forum:
    http://forums.adobe.com/community/download_install_setup/student_and_teacher_edition_infor mation_?view=discussions

  • Need help changing from CC package to Photoshop only

    I purchased CC membership for one year in December 2013. As I hardly ever need InDesign or Illustrator, I would like to change my order to Photoshop (and Lightroom) only. I find managing my account online very confusing. Is there a number I could call? Or some other way to get rid of the software I don't need, and that I did not re-order after my one-year membership was over?

    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )

Maybe you are looking for