Opening window text inside

Hi , i dont know that is it right category
problem is this , i dont know how to make window, if you scroll over than a window will open and text inside , if you click it , it will take you to the other site
its like this
The box should be bigger of course
>>>>>>>>>>>>>>>>>.
     The Dogs               .
>>>>>>>>>>>>>>>>  .
If you scroll over , some of the text will apear
like this
The box should be bigger of course
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
The Dogs            
                went to visit my .
                Grandmas  Dogs     .
                 They were intres
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
If you click it , than a site will apear where is all the text                             .

- make a button with just 'Dogs'
- add it to the stage
- double click on it to edit it
- go to frame 'Over' and add the Grandma interesting cookies text or what ever... this will make the text appear when you go over the button
- and as for the going to a site, i guess you could just hyperlink the text to the web page, but there is an action for that 100% but im not shure how it goes... ill try to get it and post it but im shore that somebody will help you before me...

Similar Messages

  • Can I enlarge the text on my Bookmarks Toolbar and my open window tabs?

    The text on my Bookmarks Toolbar and my open windows is too small for my eyes. Is there a way to enlarge the text? Also is there a way to enlarge the icons such as Home, Reload and Stop? I have already unchecked the "small icons" option.

    Once you get to "about.config" enter "pixels" in the search box at the top of the list. That will bring up the line you want to change, (layout.css.devPixelsPerPx.) Change the value from 1.0 to whatever suits you.

  • Open popup window and bring text to opener window jsp [help~]

    how to click a button then open popup window.
    and add somthing in the popup window, that can bring the text in the popup window to opener window in jsp.

    This is a javascript/html question, and has nothing to do with Java/JSP.
    You could do it with plain javascript/html using window.opener.
    I would recommend using something like a [YUI 2 Panel|http://developer.yahoo.com/yui/container/panel/] to do it.
    Opening new windows is a thing of the past.

  • How to Clear all the data of open windows form of another exe?

    Hi,
    I want to make utility which will clear all the data from one windows application.
    i know the application name. The application of which data i want to clear is made in C# and contains many windows forms and controls.
    out of that opened windows form and controls inside it need to be cleared.
    Please guide on how to do this in C#?

    Short version: Find the window and send it a message with
    SendMessage.
    Open up Spy++ and find your form's window.  You will see that the window has children and they have classes of the form "WindowsForms10.EDIT.*"  Those are TextBox controls.  You can call things like SetWindowText to set the
    text of the window to clear it.
    To do this programmatically, you'll have to obtain the window hand that corresponds to the control.  You can find windows with
    FindWindowEx or
    EnumWindows.  Locate the window by name or class or whatever else you can determine about it.  Find the child windows and "clear" them however you wish.  I assume you mean to set empty strings to all the TextEdit controls. If you
    intend to do something more sophisticated than that, then you'll have to be more specific about what you mean by "Clear all the data".
    It may or may not be obvious that you'll be poking around with Win32 API calls via PInvoke to accomplish much of this. Example:
    SetWindowText via PInvoke.

  • Opening a text file in a bundle with C++

    Hi folks! I'm working with bundles for the first time, and I'd like to know how to open a text file inside one with C++. What I have now is this:
    ifstream file = new ifstream(fileName.c_str());
    if (!file->is_open())
    return false;
    Where fileName is a std::string. This is the way I'm accustomed to opening files (I'm from a Windows development background -- don't hate me! ). Unfortunately, the is_open() test always fails.
    I know how to get the path of the bundle. Once I add on my data subdirectory and file name, the fileName variable ends up as this:
    /Users/sb/...project location.../Debug/MyProg.app/data/Dev Options.ini
    Should the path be different somehow? Thanks for any help!

    Your data folder most likely isn't directly inside the .app bundle. The first directory inside an .app bundle is named Contents. The article at the following URL should help you:
    http://www.meandmark.com/bundlespart1.html
    If you're going to use C++ streams to open files, you'll want to ignore the section on opening the file in Part 3 of the article. You'll want to read up on the Core Foundation CFURL functions. You'll want to use one of the functions that gives you a path to the text file that you can pass to a C++ file stream.

  • Pages '09: Can't use AppleScript for selected text inside tables?

    When I run get selection on selected text in a Pages document, I get something like this:
    <pre>text from character 1 to character 4 of body text of document id 9943974 of application "Pages"</pre>
    When I run get selection on selected text inside a table cell in a table in a Pages document, I get something like this:
    <pre>text from character 1 to character 4 of some table of document id 3539679 of application "Pages"</pre>
    When I run get selection on selected text inside a table cell in ANOTHER table in the same Pages document, I get the exact same thing. It still says "some" table. So there is no way to distinguish between tables if there are more than one table in the same Pages document.
    Am I correct in understanding that this means that most AppleScript commands for manipulating text are unusable inside table cells?
    For example, it seems impossible to get the properties of the selection when the selection is selected text inside "some" table. So it's impossible do anything about text styles, etc.
    Is AppleScript support in Pages ’09 really that limited, or am I missing something?

    The first script below should return the character style of any selection made in Pages ’09, whereas the second script should apply the "XXX" character style to any selection:
    --BEGINNING OF SCRIPT 1
    tell application "Pages"
    activate
    tell application "System Events" to tell process "Pages"
    -- Show the format bar:
    if not (pop up button 1 of window 1 exists) then
    click menu item "Show Format Bar" of menu 1 of menu bar item "View" of menu bar 1
    end if
    -- Show the styles drawer and character styles:
    if menu item "Show Styles Drawer" of menu 1 of menu bar item "View" of menu bar 1 exists then
    keystroke "t" using {shift down, command down}
    end if
    tell front window
    tell checkbox 1 of group 1 of drawer 1 -- “Show or hide character styles.” checkbox
    repeat until it exists
    delay 0.1 -- wait until the styles drawer is open
    end repeat
    if description is "show character style" then click
    end tell
    -- Get the row index (although it is not a property) of the character style:
    tell menu button 2 -- “Choose a character style.” menu button
    click
    set k to 0
    repeat
    set k to k + 1
    if value of attribute "AXMenuItemMarkChar" of menu item k of menu 1 exists then exit repeat
    end repeat
    keystroke return -- hide the menu
    end tell
    -- Get the character style name:
    if k > 1 then set k to k + 1
    value of static text 1 of row k of outline 1 of scroll area 2 of splitter group 1 of group 1 of drawer 1
    end tell
    end tell
    end tell
    --END OF SCRIPT 1
    --BEGINNING OF SCRIPT 2
    set myStyle to "XXX" -- the name of the character style you want to apply
    tell application "Pages"
    activate
    tell application "System Events" to tell process "Pages"
    -- Show the format bar:
    if not (pop up button 1 of window 1 exists) then
    click menu item "Show Format Bar" of menu 1 of menu bar item "View" of menu bar 1
    end if
    -- Show the styles drawer and character styles:
    if menu item "Show Styles Drawer" of menu 1 of menu bar item "View" of menu bar 1 exists then
    keystroke "t" using {shift down, command down}
    end if
    tell front window
    tell checkbox 1 of group 1 of drawer 1 -- “Show or hide character styles.” checkbox
    repeat until it exists
    delay 0.1 -- wait until the styles drawer is open
    end repeat
    if description is "show character style" then click
    end tell
    set characterStyles to value of static text 1 of rows of outline 1 of scroll area 2 of splitter group 1 of group 1 of drawer 1
    set k to 0
    repeat with thisStyle in the characterStyles
    set k to k + 1
    if thisStyle as text is myStyle then exit repeat
    end repeat
    -- Apply the character style:
    if k > 1 then set k to k - 1
    click menu button 2 -- “Choose a character style.” menu button
    click menu item k of menu 1 of menu button 2
    end tell
    end tell
    end tell
    --END OF SCRIPT 2
    I suppose that +paragraph styles+ should work the same.
    I'm beginning to know Pages ’09 a little better now.
    Message was edited by: Pierre L. (show format bar)

  • Downloads open as Text Edit files

    Hi, I bought my first Mac a couple of weeks ago (never been able to afford one before!) and it's proving to be as amazing as I expected, but I'm still trying to work lots of things out.
    When I try to download files from the internet or from email attachments they go to my downloads folder but when I open them they come up as what looks like a computer code in a Text Edit window.
    At first I thought this was because I was trying to open Windows only file types but I just tried to download a game that was supposed to be for Mac only and it happened here as well. (This is the website I was trying to download from: http://absolutist.com/mac/bubble_shooter/ )
    I appreciate I'm probably being a moron but I've trawled the forums here and can't seem to find an answer - any help would be very welcome.
    Thanks

    To The Apple Discussion Boards!
    After you click on the download link a window will pop up showing you what type of file it is you are trying to download. In this case, it's a .sit file.
    In the center of the window you will see:
    _*Open With.*_ Make sure this is selected.
    Now check to see what application/program is selected to open your files. It appears to be some text edit program. You will need to select an application that you want to open your .sit files or all your files for that matter.
    I personally, use the free Stuffit Expander to open all my files instead of depending on the OS to open them.
    You can download Stuffit Expander from VersionTracker.

  • Need help with refreshing open window in new tab

    Hello all,
    First, all my other problems I've solved.  One last thing, being a newbie and trying things I've found on the net and them
    not working, I can use your help one last time.  My code has a Home page that peforms a Search (most of you have
    I am sure done this), and from that search submit a window opens in a new tab (browser tab) and has the results on
    it.
    That works fine.  What I'm having trouble with is being able to perform a new search and refreshing that open window
    with the new data.  Right now I am closing that window by clicking on the tab and then performing the search.
    While it works, it's not user friendly.
    So, I've tried the usual  mywindow=window.open("url.cfm"); and then trying to grab that handle to refresh, but to
    no avail.  Has anyone done this?
    Thanks!

    Here's an example of how you could do it.
    <script>
    function submitAndFocusTarget(form) {
      var win = window.open("", form.target);
      form.submit();
      win.focus();
    </script>
    <form action="index.cfm" target="mysearchwin" method="get" onsubmit="submitAndFocusTarget(this); return false;">
      <input type="text" name="search" value="" />
      <input type="submit" value="search" />
    </form>

  • All open windows close when another one is opened

    Running OSX10.6.7
    Recently the window behavior has changed, now when a different active app is selected, all the windows from other active apps become hidden
    if one holds the Option key when selecting a new app or a hidden window in an open one, the new window opens and the old ones remain on screen but not active
    this behavior is new, perhaps coincident with the latest snow leopard update
    I suppose that I may have triggered this change by some accidental combination of key strokes 
    I prefer that the act of opening a new window not affect the other open windows
    is this behavior controlled by a preference pane somewhere, or some combination of key strokes or by one of those programs such as Macpilot or Tinkertool, although I do not recollect deliberately changing anything

    It's a hidden Dock preference. You can change it in TinkerTool, or launch the Terminal application, copy or drag -- don't type -- the following text into the window, and press Return:
    defaults write com.apple.dock single-app NO
    You may have to relaunch the Dock or log out for it to take effect, I'm not sure.

  • How to find list of all open windows?

    Hi,
    I was wondering how to find a list of all open windows on the
    desktop. I have been able to use this to find the number of open
    windows in the AIR application:
    var windows:Array =
    NativeApplication.nativeApplication.openedWindows;
    test.text = String(windows.length);
    I cant seem to get the list of all open windows on the
    desktop though or the names of the windows.
    Any pointers would be appreciated.
    Thanks!

    Thanks anirudhs. I had a feeling this was the case. It just
    seemed odd that the built-in function calls like orderToBack() and
    orderToFront actually put the AIR windows behind or in front of all
    the windows on the desktop. Somehow AIR is finding the list of open
    windows on the desktop. I just didnt know if there was some way to
    access AIR's way of finding the windows. Guess it must be a
    protected function. Thanks!

  • How can I adjust fonts in one window only without affecting other open windows

    I like to use a chat program and adjust font size without affecting other open windows

    thanks for quick answer but I'm looking to use what you said to affect Only one open window ( chat ). I got an answer to this 1 or 2 years ago using XP but forgot how to do it. I know typing in an url lets me inside the code to change something there choosing yes or no for that function. I forgot the url or particular function.
    thanks

  • How to recognize the text inside a text box

    we have a scenario where we are validating the text inside a text box. Actually, we are inserting a text matching test on a node.
    The scenario is like this:
    When we open the screen it contains 6 text boxes.
    We have to enter the text in the first 3 text boxes and save.
    Then based on the entry the values are populated on the other three text boxes.
    We have to validate the values in these text boxes , so we click and highlight the value.
    Openscript identfiy the text box ,but it did not identify or recorded the values we have highlighted.
    How to make the openscript recognize the values? Can we do it through menu options or else we need to write the code?
    Any help will be appreciated.

    I answer to myself:
    Put all inside a PanelGroupLayout and set the layout to SCROLL.
    Edited by: baol on Mar 15, 2010 9:09 AM

  • 2 Problems - Can't open a PDF inside IE 8, can't open a link in a PDF

    I am running Vista Business on a Lenovo ThinkCentre with dual core Intel processor, 2 GB RAM. I have 2 problems with Reader 9.3.0.
    First it will not open a PDF inside IE 8. Instead it opens the PDF in a new Reader window. It does open a PDF inside Firefox. In Edit|Preferences|Internet the Display PDF in browser checkbox is checked. In IE 8 Tools|Manage Add-ons|Run without permission Adobe PDF Reader is Enabled.
    The second problem is that I cannot open a link in a PDF file. When I place the cursor over an e-mail or internet link in a PDF file the little hand appears. However when I click on the link nothing at all happens.
    Does anyone have any suggestions on how to fix either of these problems?
    Ira B.

    In the replies I have been receiving, nobody has said which problem of the
    two I wrote about they are experiencing. I assume that all are using Vista
    (I use Vista business) since neither of these problems appear on my machine
    that runs XP Pro.
    I have managed to get around these problems and am happy to share my
    experiences with all, but I advise not getting too excited since my solution
    may not be exactly what others might want. Of the two problems, the one
    where I was unable to open an e-mail or web link in Acrobat Reader was the
    more serious for me. I edit a couple of newsletters that almost always
    contain some of these links and I need to be able to test them to make sure
    they are correct before I send out a newsletter.
    I found out that if I used Foxit Reader in place of Acrobat Reader I was
    able to open all links with no problems. For a while I had both readers
    installed with both able to open PDFs in IE8 but only Foxit able to open
    links in a PDF file. Then Foxit Reader began to exhibit the problem of PDFs
    not opening in an IE8 browser window. Then the problem spread to Acrobat
    reader. I have no idea as to the cause.
    I tried removing and re-installing both Readers but was unable to rid myself
    of the problem. I then contacted Foxit support for some assistance. Yes,
    unlike Adobe, they actually try to help if you are having a problem with
    Foxit Reader. Foxit support gave me a procedure to try but it did not work
    at first. I finally found out that I had to install Foxit Reader with User
    Access Control (UAC) shut off in Vista. If UAC was not shut off, Foxit's
    addin for IE8 would not install properly. Then I re-enabled UAC and followed
    the procedure Foxit support suggested which is:
    1. Login your machine with admin account, right click on > FoxitReader.exe
    2. Select "Properties"
    3. Select "Compatibility" tab
    4. Uncheck "Run this program as an administrator" under "Privilege Level"
    5. Select "Show settings for all users"
    6. Click on "Continue" if there is a prompt.
    7. Uncheck "Run this program as an administrator" under "Privilege Level".
    (This was already unchecked in my case.)
    After this Foxit Reader opened PDF files in browser windows in both IE8 and
    Firefox.
    I think that this procedure might work for Acrobat Reader; at least I think
    it might be worth a try. I don't want to try it myself because my computer
    is working just fine right now with Foxit Reader and I don't want to take
    the chance of screwing it up since it was so difficult for me to get to this
    point.
    If someone would like to try it, I suggest removing Acrobat Reader, then
    disabling UAC and re-installing Acrobat Reader. Then enable UAC again. Then
    follow the 7 steps above for AcroRd32.exe. I am hopeful, but by no means
    certain, that then PDF files will open in an IE8 browser window. I would
    appreciate it that, if anyone tries this, they would let me know their
    results. I regret not being able to provide a more definitive solution.
    irablum1

  • Text inside box

    How to print text inside a box in sap script?
      please let me know the process

    Hi
    If you wish to print the text in the box which is dependent on the page then:
    Create a window.
    Include the window on the page you wish to display text.
    In the text elements create a box using all the parameters.
    The different terms are shown below.
    Then add text(hardcode/Variable). This all should be done under one text element. Now call this element and window from your Print Program.
    The syntax for box creating statement can be seen from below link.
    http://wiki.ittoolbox.com/index.php/Sap_script#6.19.09Boxes.2C_Lines.2C_Shading:_BOX.2C_POSITION.2C_SIZE
    Regards
    Vijai
    *Reward Points if useful

  • How to format text inside text boxes?

    i'm sure there's a simple solution for this, but for the life of me, I can't find how to format the text (eg font type, size, colour, etc) inside a text box (one of the editing tools) in Acrobat 8 Standard.
    Is it just not possible, or is it just a case of extreme ignorance?
    Thanks for your help.
    cheers
    Ze

    You may need to mark the text first after opening the text touchup tool. Then use ctrl-E or right click for the properties.

Maybe you are looking for

  • Acknowledment No not appearing in FORM16 Output

    Hi, I am generating FORM 16 (TCode : PC00_M40_F16) and acknowledgement no is not appearing even though the data is maintained in PE03 by functional consultant. When i debugged the program i found in Include  PCF16IN7 i came across            RP-REF-C

  • How do I customize the index page?

    I can't seem to find out how to edit the default index page (ie content, banner, etc.) without it losing the theme or the css file, which i guess is somehow linked to it? The page points to "collaboration/css/serverhome_static.css" which doesn't seem

  • Migrating to BI

    Hi professionals, I am working in a ALE/IDOC support project for past 2 years and I am an ABAP certified consultant. Now I am planning to take up BI certification through TechEd. I have few doubts, 1. Is Bi certification taken through teched is simil

  • IMovie Full Quality

    Hi I've ben playing around with a few video clips of some friends of mine at some parties, i've put them together and put music to it and titles and it plays really well when I share it and select for CD-ROM but when I select Full Quality the picture

  • Canon G9 Scene Capture Type not working in Preview/Aperture

    Hi, I have a Canon G9, and have been using the SCN program on the program dialer on the top of the cam, letting me encode metadata about the content on the fly. When I upload pictures taken with the SCN program on the G9 using ImageCapture, I get the