Dynamic text Underline Links

I have created a RSS feed viewer, parsing the RSS feed with
actionscript 3.0 and viewed on the stage in dynamic text boxes. The
text in these dynamic boxes is scripted to link to web addresses
contained in the RSS feeds in the same node as the text being
displayed. So far so good. Now I need the text in these boxes to
act as if they were HTML links and show an underline and color
change when rolled over and clicked on. Help. Attached is my code.

The trick with the help files is to realize that everything
is organized by classes. So if you want to do something with
text...
Open the help files and select the ActionScript 3.0 drop
down. Then from that list Expand the Actionscript 3.0 language
reference and the All Classes section. Next scroll down to the "T"
section and start looking.
The ones that seem interesting to me for what you were
looking for are TextField and TextFormat. Even if you don't know
exactly what you need those seem like they would have something to
do with text and how it looks.
Then start looking through the entries for each of those
sections. Everything that can be done with text is in there. So
after looking at TextField I didn't see anything about making an
underline or even how to change the color. But I did see a method
called setTextFormat()
So next I check out the documentation on the TextFormat class
and sure enough there is an underline property.
Great, so by this point I've figured out how to make some
TextFormats and then use the setTextFormat() method to apply them.
So next you've got to figure out how to apply the different formats
when I want them.
Things that happen at certain times are events, so anything
that you want to happen now, not then -- or I suppose then, not
now! -- will require an event. So again it is something about
events. So I'll go back to the textfield class and see what kind of
events there are. At first glance you might think that TextFields
only have 4 events -- change, link, scroll, textInput -- and that
none of them seem to be what you would want. Now this is the tricky
part...
At the top of the events section in the documentation there
is a little arrow for "Show inherited events." So going down that
list you will find that TextFields get a lot of events from
inheritance. Sure enough reading down the list I see mouseOver and
(this is important) finishing the list I also see a rollOver. They
both seem promising. Always read the entire list. There are many
times when there are two similar things and if you stop at the
first you might miss out.
Anyways, I hope that this helps you see how the process can
work. The Flash help files are actually pretty awesome and helpful,
but you have to know how to work them. You will very seldom find
the answer by searching or find a fully formed answer to your
specific needs.
Break it down into the classes you think you might need. Then
look for the properties, methods, and events you might need. Most
of them have fairly straight forward names the should suggest what
they might be for. And then follow the hyper links to related
classes than their methods, properties, and events.
PS: I just noticed your second problem. So do the same thing.
So notice that if you look through the TextField class there isn't
anything that lets you chop a string or cut it up or anything. But
notice the text property of the TextField class. That is what shows
in a textfield. And notice that it takes a String.
If you didn't know it a String is some text. You would never
find the String class if you didn't know that techy word, but by
noticing how often it is mentioned in the TextField class you could
get there.
So next look at the String class. What methods and properties
do you need for what you want to do?
The length property might tell you when a String is too long.
And the methods substr() and substring() seem promising to
cut up part of a String.
Finally adding an ellipsis at the end might be hard to figure
out if you don't know the trick. Fortunately you only need to read
the methods to the "c" or concat(). Fancy talk for putting strings
together. Always read the entry to the end. There you will see a
link for "See Also Concatenating Strings." That will show you that
you can easily use a plus sign to add strings together -- just like
addition.

Similar Messages

  • Linking Dynamic text boxes?

    Hi there,
    This might be straight forward, but I would like to know how could one link dynamic text boxes so that the information would flow? In a way, the information would flow from:
    (XML) Input A into BOXA00, BOXA01, BOXA02, BOXA03, etc.
    (XML) Input B into BOXB00, BOXB01, BOXB02, BOXB03, etc.
    (XML) Input C into BOXC00, BOXC01, BOXC02, , BOXC03, etc.
    Any takers?

    Hi i recently have made a function that can calculate the amount of text that will fit into a specified text box. See my attached file. Notice that the box will only accommodate the text in red since that is the maximum it can display.
    "This here one is a very very very long long long text that cannot really fit completely into this box so we will have to cut it at some index point"
    My function getTextExtent will return an object with properties
    nIndex -> which determines the index at which the text will be delimited
    fExceeded -> is true if the text is longer than the allocated height of the text field.

  • Create a Link using Dynamic Text and Capture Variable

    I am building a dynamic website using Dreamweaver CS5 with Coldfusion 9
    Currently I have created a dynamic text table. The table is created by querying the Invoice table and displays the all the customers Invoices. The columns Include Invoice #, Date, Amount Paid, BalanceRemaining, Due Date. So basically lists all the invoices I have applied to the unique customer. It is pulled up using a session variable I created from the login page.
    My question is this I want to make the "Invoice #" linked so when you click on it it goes to a new page and performs a new query which retrieves infro related to that specific invoice such as Services Rendered, Service Description, Date, Price, Total. I was able to create a link to the Invoice # but I am stuck trying to figure out how to capture the Unique Invoice # and apply it to the new query. Is this possible if so how?
    Thanks for your help!

    Now keep in mind I am speaking strictly from a web and SQL standpoint as I have no experience with coldfusion.
    If you are able to create the link to the Invoice, I am perceiving this as the following:
    Invoice
    Links to
    #123
    page.php?invoice=123
    #345
    page.php?invoice=345
    If your page is setup like that then you already have the data stored in the browser request with the GET method.  In PHP the equivalent is the $_GET array.  I am assuming ColdFusion has a similar array to work with forms.  Then on your following page you obviously need to check that the visitor came from the prior page with the proper permissions to ensure that someone doesn't get the address page.php?invoice=### and just guesses through and views all invoices if they are not supposed to.  Then your query would look something like the following:
    SELECT * FROM invoice_table WHERE invoice_number = $_GET['invoice']
    Remember this in written in PHP so yours should be a similar equivalent.
    Hopefully this helps a little to get you going in the right direction.

  • Dynamic text link hover color change.

    I have some dynamic text in Flash and I have a link with the text. Is there a way I can change the hover color without CSS? Here is my code.
    thanks.
    data=EASTERN CANADIAN DISTRICT<br><a href='mailto:[email protected]'><font color="#51884B">Mike Linnen</font></a><br>905-430-0955<br>Cell: 905-409-7159

    Disable the "Show border around text" option of your dynamic
    text field.
    Draw a rectangle with the color you want, & locate it
    behind your dynamic text field.

  • Dynamic Text box with linking to frames

    I have a problem. I've tried everything I can think of and what I have Googled, but nothing has helped. I have a scrolling dynamic text box and I need some words in that text box to link to frames, like buttons (Not a URL). This is the file and the frame I'm on is "conflictNorthernPlains"     https://dl.dropbox.com/u/72608572/civilWarEra7.zip
    Thanks

    use:
    var tf:TextField = new TextField();
    addChild(tf);
    tf.htmlText = "<a href='event:frame1'>link to  frame1</a><br/>";
    tf.htmlText += "<a href='event:frame2'>link to frame2</a><br/>";
    tf.addEventListener(TextEvent.LINK, tfF);
    function tfF(e:TextEvent):void{
    gotoAndStop(e.text);
    p.s.  please mark helpful/correct responses, if there are any.

  • Flash dynamic text links

    I've created a dynamic (scrolling) text field in Flash MX
    2004 Pro. The text contains links to webpages. The links work in
    the published Flash SWF but not when I place the SWF in Director.
    Please help?
    Lars

    You need to catch the getURL() message in Director and have
    it open your
    browser to the link. Try attaching the following as a
    behavior to the
    Flash sprite:
    on getURL me, aLink
    gotoNetPage(aLink)
    -- better to use Buddy API:
    -- OK = baOpenURL(aLink)
    end

  • HTML links won't display in Dynamic Text Field

    I am loading external text files in dynamic text fields on my
    webage. These texts contain html links (<a href="page.html"
    target="_blank">Click Here</a> and I have "render as HTML"
    on and "selectable" off in my dynamic text field. Also, I am
    loading a CSS file. Not only do I not have a hand cursor, but I do
    not even have any of the text from that piece of html code down.
    What is going on with this? Please respond asap, as I have been
    struggling with this for a day now. Here is the Actionscript for
    loading the CSS:
    var flash_css = new TextField.StyleSheet();
    flash_css.load("styles.css");
    flash_css.onLoad = function(success:Boolean) {
    if (success) {
    zloc_txt.styleSheet = flash_css;
    } else {
    trace("Error loading CSS file.");
    var zloc_lv:LoadVars = new LoadVars();
    zloc_lv.load("zloc.txt");
    zloc_lv.onLoad = function(success:Boolean) {
    if (success) {
    zloc_txt.text = this.content;
    } else {
    trace("unable to load text file.");
    zloc_txt.html = true;
    zloc_txt.editable = false;
    _global.styles.TextArea.setStyle("backgroundColor" ,
    "transparent");
    _global.styles.TextArea.setStyle("border styles" , "solid");
    Here is a sample of the text file code:
    &content=<span class="headline">Northwest Arkansas
    Locations</span>
    121 Main St.
    Russellville, AK 77801
    (626) 111-1111<br />
    <html><a href="
    http://www.mapquest.com"
    target="_blank">Click Here for Driving
    Directions</a></html><br />
    Thanks for the help,
    Chuck

    The error is here:
    zloc_txt.text = this.content;
    Even if you rendered the textfield as HTML, you still need to
    tell flash that the variable you are inserting is HTML. Therefore
    you need to use the htmlText property.
    zloc_txt.htmlText = this.content;

  • All dynamic text links going to same link even though URLs differ

    Hi,
    I just made a flash news scroller where the news headlines are dynamic text and have different urls provided in the link section. But when I click on any of them, they all go to the first link only. Am I supposed to set something here to stop it from doing so?
    Any help appreciated.

    Ok, I figured out why all the links are going to the same page. Well all the other links are under the first headline, which I am making transparent for the others to appear, but not removing from the stage. Hence even though the first headline is not visible, it is still the top link on the screen, causing everything to go there.
    Any suggestions on how I can make it appear below the newly visible headline?? They are all arranged one below the other.

  • Email link in a dynamic text field

    I have a paragraph of scrollable dynamic text. I need to add
    an email link to one of the sentences. Is this possible? I can't
    make the line a button in the dynamic text paragraph. Can anyone
    help please.

    information about the asfunction() is in the flash help
    files: actionscript 2.0 language reference/index/asfunction.

  • How to make links in dynamic text?

    Hi All,
    I need to know how to make links in dynamic text. I have
    created a
    table to hold the dynamic copy, and the copy is added through
    a CMS page
    that I created. This Admin page is accessed through a
    browser, and I
    don't know how to attach a link to selected text within a
    browser. Can
    anyone point the way? It's probably so easy I'll feel dumb.
    Thanks,
    Brett

    "Brett" <[email protected]> wrote in message
    news:fpf7j6$23m$[email protected]..
    > Thanks Hunter,
    >
    > Yes, I suppose a legend on the admin page would provide
    a solution. And
    > ultimately, if the client doesn't feel confident doing
    writing the HTML
    > they would have to pay me to do it for them. OK, that
    works for me.
    The only other thing might be to use something like FCK (or
    one of the many
    others... ContentSeed, I think is one Murray mentions often)
    for the CMS,
    that would give an easier option for the end user. WebAssist
    has an
    FCK-based plug-in called iRite that can give a more
    wordprocessing-like feel
    to the field (i.e., they could just highlight the text and
    then click a
    button to add the link).

  • Can dynamic text links (XML) pass arguements to movie clips?

    I have a dynamic text field that i'm pulling a XML file into,
    but I need the URL links within the XML to control a movie clip.
    I've read that you can pass an arguement inside flash from within
    the XML doc but i'm not positive how it would be done.
    Any love on this one?

    Hmm, this leaves a couple questions... Where would I put the
    script/function, inside the <a href> tag? That could get out
    of hand... like in-line CSS styles. And I have a URL node within
    XML set-up so I don't know if this solution would work.

  • How to link one scroll bar with two dynamic text boxes.

    How to link one scroll bar with two dynamic text boxes.
    If i move scroll bar in one text box,automatically text will
    be moved in another text box.But scroll bar is not visible.
    Can you please help me.
    Thanks in advance.

    See the following article:
    JavaScript - setFocus Method for tabbing to next form field
    And see if iOS can even handle the sample form.
    iOS and android devices are not a powerful as your desktop of laptop computer and have limited support for JavaScript within PDF forms. This limitation for specific apps ranges from none to quite a bit but not all JavaScript.

  • Dynamic text links

    Can anyone help with this? I'm trying to get text on a screen
    to link to documents (that will be on a CD, currently on my hard
    drive) such as pdf, txt etc. Using Flash 9.
    Thanks.

    Thanks again for your reply. Since my last posting, I have
    gotten mostly everything figured out except the main issue, which
    is creating a link to documents from text. In the following code I
    was able to load dynamic text from an external txt file and I
    inserted an html link in the txt file but I don't want to open a
    browser link, but rather a file on CD or hard drive:
    var textLoader:URLLoader = new URLLoader();
    var textReq:URLRequest = new URLRequest("test.txt");
    function textLoaded(event:Event):void
    getStart_txt.htmlText = textLoader.data;
    textLoader.load(textReq);
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    So everything looks good, except how do I get the html link
    in the text file to open a doc instead of a url? Or maybe something
    in your post will work.
    Regarding buttons and code, this is from a Flash website:
    "So you just started AS3.0 full of excitement and ready for
    some coding challenges, you start coding your first button and
    suddenly, horror, you end up with "WARNING: Actions on button or
    MovieClip instances are not supported in ActionScript 3.0. All
    scripts on object instances will be ignored." or "1119: Access of
    possibly undefined property onPress through a reference with static
    type flash.display:SimpleButton.", indeed the good old AS2.0 event
    system is not working anymore in AS3.0: onClipEvent, onPress,
    onRelease, onLoad, onMouseDown ..etc, have become things of the
    past!!!
    What happened? well basically the whole event handling system
    has been revamped in Actionscript 3.0 and we are going to have a
    quick look at it."
    When I select a button in Flash 9, the error message I get is
    "Current selection cannot have actions applied to it."
    Thanks.

  • Linking a class to a dynamic text field to load XML data.

    Hi,
    I'm quite new to ActionScript and would be grateful for any help here.
    I want to load text into a dynamic text field (called 'about_tab') using  a class depending on the language selected (by clicking on a flag icon)  by the user.
    I managed to get this to work when the ActionScript was written directly  in the timeline, but am having problems with doing the same thing via a  class.
    This is my class file:
    package
    import flash.display.SimpleButton;
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import flash.net.URLRequest;
    import flash.net.URLLoader;
    import flash.events.Event;
    public class ChangeLang extends SimpleButton
    public function ChangeLang()
    addEventListener(MouseEvent.CLICK, switchLang);
    trace("ChangeLang class working");
    public function switchLang(event:MouseEvent):void
    var lang = event.target.name;
    var req:URLRequest = new  URLRequest("languages/"+lang+".xml");
    var loader:URLLoader = new URLLoader();
    var substance:XML;
    function xmlLoaded(event:Event):void
    trace("function xmlLoaded is running");
    substance = new XML(loader.data);
    about_tab.text =  substance.about_lbl;
    loader.addEventListener(Event.COMPLETE, xmlLoaded);
    loader.load(req);
    Here's one of my XML files (the other is the same except "About" is  written in German):
    <substance>
    <about_lbl>About</about_lbl>
    </substance>
    When I run it, it returns my trace statements that the class ChangeLang  and the function xmlLoaded are running, but no text appears in the  dynamic text field (I should/want to see the word 'About'). I get this  error message:
    1120: Access of undefined property about_tab
    The problem, I'm guessing, is in the part in red in my code. I think I need to target the text field in the display list by creating a  reference to it. If so, could someonw point out how I do this, or perhaps a tutorial that would help. I've tried adding the word stage (i.e.,stage.about_tab.text =  substance.about_lbl; ) but it still doesn't connect. I guess there's something really simple I'm missing, so I  apologize if this comes across as a stupid question
    Thanks for any help.

    Hello flashrocket!
    I'm also new to AS3 and I've just started using external classes and I think I know what you should do to put your code to work.
    Instead of using the text field you created inside your flash file, why don't you use the "TextField" class to create an instance of this object? It's the exact same thing as when you create and instantiate a new text field inside Flash.
    First, import flash.text.*; (includes classes like TextField, TextFieldAutoSize, TextFormat, TextFormatAlign, etc)
    Than you just have to create a var like
    public var about_tab : TextField;
    or
    public var about_tab : TextField = new TextField();
    then, to adjust the properties of this tab you use dotsyntax as if it where on your stage like:
    about_tab.x = 50; about_tab.alpha = .5; etc...
    you can even create a function to "config your textField"
              private function createAndConfigTextField() : void {
                   about_tab = new TextField(); //you only need this line if you
              // only typed something like "public var about_tab:TextField;
              // if instead you used "public var about_tab:TextField = new TextField(); outside
              // this function, just skip this first line because you already have an instance of
              // text field named "about_tab"...
                            about_tab.autoSize = TextFieldAutoSize.CENTER;
                   about_tab.background = true;
                   about_tab.border = true;
                   var aboutTextFormat : TextFormat = new TextFormat();
                   format.font = "Arial";
                   format.color = 0x000000;
                   format.size = 11;
                   format.bold = true;
                   format.align = TextFormatAlign.CENTER;
                   about_tab.defaultTextFormat = aboutTextFormat;
                   addChild(about_tab);
    This is just an example of what you can do... I hope you get it... let me know if you have any doubt...

  • Using Dynamic Text to tell a Hyperlink where to go.

    So I am having a little trouble on my site, and this community seems like a good place to go for help, and I am sure someone out here can help me.
    I have a webpage that uses dynamic text and images, and it serves as my user profile page. I know the database and all of that stuff is set up correctly because all of the dynamic text shows up as it should.
    Here is the problem I am having. I have an area where a user will be able to view files he has uploaded, and click on the name of a file to view it.
    The way I have it set up, is the clickable text is dynamic text from the server, called uploadname1. I want to make this text into a link, that sends them to the file stored as fileupload1.
    Here is my code that I thought should do it.
    "<a href="<?php echo $row_Recordset1['fileupload1']; ?>"/><?php echo $row_Recordset1['uploadname1']; ?></a>" (minus the quotes of course)
    The text underlines and changes the color as it should, but it is not clickable. Can someone out there help me?
    Tyler

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Profile - NoteScoop</title>
    <style type="text/css">
    body {
    background-image: url(../bgg.jpg);
    background-repeat: no-repeat;
    color: #FFF;
    #bio {
    font-family: Tahoma, Geneva, sans-serif;
    height: 213px;
    width: 460px;
    left: 404px;
    top: 53px;
    position: absolute;
    #editlink {
    font-family: Tahoma, Geneva, sans-serif;
    color: #FFF;
    position: absolute;
    height: 40px;
    width: 80px;
    left: 178px;
    top: 677px;
    a:link {
    color: #FFFBF0;
    a:visited {
    color: #FFFBF0;
    a:hover {
    color: #FFFBF0;
    a:active {
    color: #FFFBF0;
    #photo {
    position: absolute;
    height: 220px;
    width: 205px;
    left: 121px;
    top: 70px;
    #submit {
    font-family: Tahoma, Geneva, sans-serif;
    color: #FFFbf0;
    left: 290px;
    top: 25px;
    position: absolute;
    width: 59px;
    #about {
    position: absolute;
    height: 25px;
    width: 90px;
    left: 128px;
    top: 25px;
    font-family: Tahoma, Geneva, sans-serif;
    color: #FFFbf0;
    #abouthead {
    position: absolute;
    height: 25px;
    width: 48px;
    left: 466px;
    top: 25px;
    font-family: Tahoma, Geneva, sans-serif;
    color: #FFFbf0;
    #contact {
    font-family: Tahoma, Geneva, sans-serif;
    color: #fffbf0;
    position: absolute;
    height: 25px;
    width: 85px;
    left: 616px;
    top: 25px;
    #blog {
    font-family: Tahoma, Geneva, sans-serif;
    color: #fffbf0;
    position: absolute;
    height: 25px;
    width: 33px;
    left: 792px;
    top: 25px;
    #notes {
    font-family:Tahoma, Geneva, sans-serif;
    color: #fffbf0;
    position: absolute;
    height: 84px;
    width: 460px;
    left: 425px;
    top: 510px;
    #friends {
    font-family: Tahoma, Geneva, sans-serif;
    color: #fffbf0;
    position: absolute;
    left: 421px;
    top: 278px;
    width: 460px;
    #uploader {
    font-family: Tahoma, Geneva, sans-serif;
    position: absolute;
    height: 53px;
    width: 460px;
    left: 543px;
    top: 645px;
    #groups {
    font-family: Tahoma, Geneva, sans-serif;
    position: absolute;
    height: 354px;
    width: 292px;
    left: 80px;
    top: 366px;
    #ad1 {
    position: absolute;
    height: 220px;
    width: 205px;
    left: -40px;
    top: 38px;
    #sponsored {
    font-family: Tahoma, Geneva, sans-serif;
    color: #000;
    position: absolute;
    height: 22px;
    width: 122px;
    left: 958px;
    top: 69px;
    </style>
    </head>
    <body>
    <div class="sponsored" id="sponsored">
      <div class="ad1" id="ad1"><a href="http://www.xfactordesigns.com"><img src="xfactor_designs_badge.jpg" /></a></div>
      Sponsored Links
    </div>
    <div class="groups" id="groups">
      <p>Study Halls, a feature which we are waiting to bring out until it is fully ready, will change the way you study forever. </p>
      <p>Study Halls will allow you to create a worldwide network of people in the same class, school, or major as you.</p>
      <p>Study Halls will contain useful note listings, chatrooms, tutors and more! </p>
      <p>We look forward to being able to open these to you soon!</p>
    </div>
    <div class="uploader" id="uploader">
      <form id="form3" name="form3" enctype="multipart/form-data" method="post" action="">
        <input type="file" name="upload" id="upload" />
      </form>
    </div>
    <div class="notes" id="notes"><a href="az.doc"/>tester</a></div>
    <div class="blog" id="blog"><a href="http://www.quincycreations.com">Blog</a></div>
    <div class="contact" id="contact"><a href="contact.php">Contact</a></div>
    <div class="photo" id="photo"><img src="profilephotos/twhite.jpg" alt="UserPhoto" width="205" height="220" /></div>
    <div class="abouthead" id="abouthead"><a href="About.php">About</a></div>
    <div class="submit" id="submit"><a href="Submit.php">Submit</a></div>
    <div class="editlink" id="editlink"><a href="editprofile.php">Edit Profile</a></div>
    <div class="about" id="about"><a href="classes.php">Subjects</a></div>
    <div class="bio " id="bio">
      <form id="form1" name="form1" method="post" action="">
        <p><h3>Tyler      White</h3>
        </p>
        <p>College: Xavier University of Louisiana </p>
        <p>Major: Mathematics</p>
        <p>Not only am I the creator of NoteScoop, but I am also a college student. I study Mathematics and am doing research in Differential Equations. When I am not doing work or math, I am spending time with my wonderful girlfriend, most likely on Minecraft.</p>
        <p> </p>
        <p> </p>
      </form>
    </div>
    <div class="friends" id="friends">
      <form id="form2" name="form2" method="post" action="">
        <p> </p>
        <table width="460" height="147" border="o">
          <tr>
            <th width="146" height="141" scope="row"><img src="profilephotos/paminaprofile.jpg" width="104" height="107" /></th>
            <td width="146"><img src="profilephotos/default.jpg" width="104" height="107" /></td>
            <td width="146"><img src="profilephotos/default.jpg" width="104" height="107" /></td>
          </tr>
        </table>
        <p> </p>
        <p> </p>
        <p> </p>
      </form>
    </div>
    </body>
    </html>

Maybe you are looking for

  • Switching 3Gen Nano from Mac to Windows

    OK, I know what you're thinking, so let's not go there. In the meantime, I've purchased a nano in Japan for use with a Mac which I purchased at the same time. For a variety of reasons, I've returned to using a Windows machine. Don't ask. Now, I'd lik

  • Phone keeps shutting down & unexpected battery drain

    I'm having the same issue, my phone is just 3 days old but it keeps shutting down frequently. When I press the power button it doesn't get turned on, I called customer service who asked me to press power button +volume rocker which turned the phone o

  • How to block facebook "Trendings"

    Facebook seems to think it knows what I want to see, so every time I sign on they flood the screen with various articles that I really have no interest in. Is there an easy way to block this function. I notice that Google has a free download called F

  • Desktop Manager "hangs" at restore data service

    I am using a BlackBerry Bold 9700 and recently i just tried to update my BB through the computer. However, The Desktop Manager does everything nicely except that the restore data service part is taking tooooo much of time. I waited like 45 mins and t

  • Error occured when link the library

    OS: Oracle Enterprise Linux 5.3 64-bit File: andy_lib.c #include <ctype.h> int andy_upper(char istr, char ostr){ int i = 0; while(istr){ ostr[i] = toupper(istr[i]); i++; return 0; gcc -c andy_lib.c ld -shared -o andy_lib.so andy_lib.o Last command gi