Another daft question about browsers...

OK, I just clicked on a link in an email which took me to a website.  I didn't actually know I could look at websites on my BB but clearly I can.  However, if the link isn't in an email... where do I type in the web address?
Solved!
Go to Solution.

After you open your browser, press the menu key and choose "Go To...". You can enter an address there.

Similar Messages

  • Another BW question about filter in the query definition

    Hi ,
    I have another question about filter in the query definition.
    <u>Question:</u>
    Which of the following objects can be filtered in the query definition?
    A. characteristic
    B. Key figure
    C. Structure
    D. Units
    E. Hierarchy
    My answer is A,B,D,E.
    The answer in the book is A,B,D
    Can anybody tell me which one is wrong?
    Thanks in advance,
    Liu Jia

    HI
    1.The answer could be A,B,D.you can not apply filters on hierarchies
    2.Whenever there is a change in Attribute data(like Location,Num etc...)that has to be reflected in all aggregates of the cube.Thsi can be done by running "ATTRIBUTE CHANGE RUN".
    sri

  • Another one question about how to download applet (not using external tool)

    Hi
    i write tool for downloading applet on card. I use apdu trace from NXP eclipse plugin as source of information and i read also about cap-file format in Java Card Virtual Machine specification. And i have questions about data transferred by LOAD command.
    As example - from apdu trace i see that transferred data are "C4820E33 DATA1 DATA2". Full length of transferred data is 0x2EE2.
    C4 - OK, this is "Load File Data Block" tag as specified in Global Platform
    820E33 - OK, this length of tag, =0x0E33
    DATA1 - sequence of cap-file components: Header.cap, Directory.cap, Import.cap, Applet.cap, Class.cap, Method.cap, StaticField.cap, ConstantPool.cap, RefLocation.cap. Length of DATA1 is 0x0E33, i.e. DATA1 = 'C4'-tag value.
    DATA2 - sequence of two cap-file components: Descriptor.cap and Debug.cap. These components are out of 'C4'-tag.
    the questions mentioned above... here they are:
    1. Global Platform does not define any data in LOAD command except 'E2' and 'C4' tag. Why DATA2 is transferred out of any tags?
    2. Whether the sequence of cap-file components is important? i.e. Can i load Header.cap, Directory.cap etc. in other order than i see in DATA1 field from apdu-trace?
    3. Debug.cap seems to be optional component. And what about Descriptor.cap component? Need i load it on card?

    666 wrote:
    1. Global Platform does not define any data in LOAD command except 'E2' and 'C4' tag. Why DATA2 is transferred out of any tags?Because the components are either optional or only required when communicating with a JCRE that has debugging capabilities. I assume you ran the project in JCOP Tools in debug mode against the simulator? If you did this against a real card it would fail as it does not have an instrumented JCRE capable of debugging code. You could try running the project as opposed to debugging to see the difference.
    2. Whether the sequence of cap-file components is important? i.e. Can i load Header.cap, Directory.cap etc. in other order than i see in DATA1 field from apdu-trace?Yes it is. It is defined in the JCVM specification available from the Oracle website.
    3. Debug.cap seems to be optional component. And what about Descriptor.cap component? Need i load it on card?No, it is optional and is not referenced by any other CAP file component.
    Cheers,
    Shane

  • Another beginner question about targeting functions

    I've read what I thought was an excellent thread about scope in EA, but I'm still not getting some of the basics (btw the thread was http://forums.adobe.com/message/5287753#5287753).
    I have "slides" in the symbol library and in the main composition compositionReady script I've set up a generic script for playing back sound. That script works fine when I bind it within the compositionReady script to a symbol and click, so I know the funciton itself is fine. My question, I'm programmatically loading the slides from the library as I go along and want to use the generic function I created in the compositionReady script, but I can't seem to create the proper syntax to call the script. Here's some that I have tried. What is the correct syntax? The script is on frame inside the slide symbol.
    //sym.getComposition().getStage().playSound();
    //sym.getComposition().playSound();
    //Edge.getComposition("CER_1").playSound();

    Thanks for having a look. Yea, it's getting to the script fine but it doesn't like the syntax. Console always indicates javascript error, which is what happens when Edge throws an exception because it doesn't know what to do. The article that Elaine posted on above gives me the sense that it might be best to change the function to a variable, then it would be in scope to call but I have parameters I'd like to pass with it and I don't think  I can pass a parameter with to a variabalized (word?) function. I know it's just me moving from ActionScript to Edge JavaScript and scope. Whereas I could always find a homebase in ActionScript with the stage, it seems that the stage in Edge is just another symbol and calling a function within the stage is never getting there. Elaine hints at putting outside the stage closure and it would be accessible, which, of course, has led me to start readying JavaScript books and learning more about scope etc. It seems like that is life as a developer. I  dont' get that, oh, better take a day or two to  understand that concept, oh, that function works now, next problem. ;-)

  • Another IT question about iTunes...

    When I plug my IT into my MB and I open iTunes, the option to “Open iTunes when this iPod is connected” is greyed out.
    The other two options, “Sync only checked songs and videos” and “Manually manage music and videos” are available to be checked.
    Anyone know how I can get the greyed out “Open iTunes...” to become optional again?
    Another note. Besides my IT, I just bought an IP. When I go into iTunes and authorize either the IT or the IP, I get a message saying that I have authorized one unit out of 5 even though I have authorized both the IT and the IP. Is this normal?

    Hi Macaby,
    If you have turned off automatic syncing you will not be able to have the option to Open iTunes when plugging in the iPod. I suggest that you send feedback to Apple about this as it may be a bug in iTunes or the behaviour of iTunes that needs to be improved.
    You don't need to authorize your iPods to play music that you have downloaded from iTunes, you only need to authorize the computer that you are using.
    Hope this helps
    J.C

  • Another syntax question about two dots

    i'd learned that the meaning of " .. " is to access the child nodes in XML.
    but i saw this in source of flex, <mx.skins.halo.RadioButtonIcon.as>
       override protected function updateDisplayList(w:Number, h:Number):void
                 g..beginFill(radioColor);
       where variable g is a graphics object. ordinary, this should be "g.beginFill", i thought.
       now my question is, what does the ".." mean ?
       thank you for any helps.

    I'll ask people I know on the Apache team. I know they code review everything, but it seems to me if they're going to use nonstandard notation they should comment so people know what it means. I don't see any possible way this could be referring to xml, since there is no beginFill method on XML, and hacking the XML object on that scale through prototype would be highly destructive to the codebase.
    Note that just because source is being picked up and shown as the source code doesn't 100% mean that this code was what the swc is compiled from.
    Note that if you try
    import flash.display.Graphics;
    var g:Graphics = graphics;
    g.beginFill(0xFF0000);
    g.drawCircle(100, 100, 100);
    and
    import flash.display.Graphics;
    var g:Graphics = graphics;
    g..beginFill(0xFF0000);
    g..drawCircle(100, 100, 100);
    They both yield the same visual result. My suspicion is maybe this is a shortcut to the GPU.

  • Another MySQL question about averages. Remove outliers.

    I have a number of observations that I can get from a MySQL database.
    Let's assume the values I have are, ordered ascending:
    3, 5, 5, 6, 6, 6, 8, 9, 15.
    Just calculating the AVG results in 63/9 = 7.00
    If I want to repeat that but leave out both the minimum and the maximum values, in this case both the 3 and the 15, giving the following list:
    5, 5, 6, 6, 6, 8, 9
    then the average is only 45/7 =  6.43 to gain more statistical accuracy, how do I need to modify my query?
    Currently the query is like this:
    $query_Recordset1 = 'SELECT COUNT(Graphics_card) AS Obs, Graphics_card, AVG(MPE_Off/MPE_On) AS Gain , AVG(MPE_On) AS Speed FROM `Personal_data` WHERE MPE_On >0 GROUP BY Graphics_card HAVING COUNT(Graphics_card) > 4 ORDER BY Speed ASC, Obs DESC, Gain DESC LIMIT 0, 20' ;
    In this query the minimum number of observations is 5 for each distinct 'Graphics_card'. In the future I may change that to another figure and that is easy, just change the bold 4 to another figure but then, I may want to recalculate the adjusted average by leaving out the two bottom observations and the two top observations, so the range in the calculation would look like this:
    5, 6, 6, 6, 8
    and then the adjusted average is only 31/5 = 6.20
    How do I need to adjust my query to achieve that?
    Or, to put it another way, how can I first exclude the top X and bottom X observations from the query and only then calculate the AVG?
    Here is the page I want to apply it to: http://ppbm5.com/MPE%20Charts.php

    I solved it for the first part like this:
    SELECT COUNT(Graphics_card) AS Obs, Graphics_card, (SUM(MPE_On) - MAX(MPE_On))/(COUNT(Graphics_card)-1) AS Speed, (SUM(MPE_Off/MPE_On) - MIN(MPE_Off/MPE_On))/(COUNT(Graphics_card)-1) AS Gain FROM `Personal_data` WHERE MPE_On >0 GROUP BY Graphics_card HAVING COUNT(Graphics_card) > 5 ORDER BY Speed ASC LIMIT 0, 20
    This effectively removes the most significant outlier (MAX for Speed and MIN for Gain) and calculates the average based on the number of observations minus 1 for each category. In the same way I could remove the outlier at the other side of the spectrum, MIN for Speed and MAX for Gain, but then reduce the number of observations by 2 instead of 1.
    SELECT COUNT(Graphics_card) AS Obs, Graphics_card, (SUM(MPE_On) - MAX(MPE_On) - MIN(MPE_On))/(COUNT(Graphics_card)-2) AS Speed, (SUM(MPE_Off/MPE_On) - MIN(MPE_Off/MPE_On) - MAX(MPE_Off/MPE_On))/(COUNT(Graphics_card)-2) AS Gain FROM `Personal_data` WHERE MPE_On >0 GROUP BY Graphics_card HAVING COUNT(Graphics_card) > 5 ORDER BY Speed ASC LIMIT 0, 20
    I struggled with the Group function to use the suggestions in the link you gave me and of course the different functionality between MySQL and Oracle SQL.
    I look forward to having a MEDIAN function in MySQL.

  • Another dumb question about transferring files

    OK - so now I'm trying to transfer (as in move) the photos from my laptop to a portable drive in order to move them to my desktop machine.  I have Lightroom 2.5 installed on both PC Vista machines.  So...how do I do it without messing up my laptop.  I am concerned about what happens to the Lightroom catalog when I export them to my external drive.
    Thank you,
    J.

    One way to do this is to run Export as Catalog to the external, including the images, then from the other machine, run Import from Catalog. You can choose to not export the Previews, as they will be rebuilt in the new location. You can then run the catalog from either machine or the external, but subsequent changes in one will not be carried to the others.

  • Yet another pointless question about the practically non-existent iMac G5 Apple Hardware Test (AHT) disk.

    I have a 17" iMac G5 (iSight model) also known as model A1144, PowerMac12,1 or MA063LL/A.
    Where do I download the Apple Hardware Test (AHT) disk for this machine? Apparently nowhere. However, it would really help me on my quest if I knew what I was looking for.
    Does anyone know what AHT version is compatable with my machine? 2.2.1? 2.3.1?
    How about the part number on the disk? I have some Intel disks that say 2Z691-5734-A that (obviously) won't work.
    Is the AHT on Disk 1 or Disk 2? I'm starting to think there never was an AHT for this model.
    Where do I get those ASD disks the so called "geniuses" have?

    Disk 1: 2Z691-53179-A
    Disk 2: 2Z691-5493-A
    Compatible with eMac (2005), iBook G4 (Late 2004), iBook G4 (Mid 2005), iMac G5 17-inch (ALS), iMac G5 20-inch (ALS), iMac G5 (17-inch iSight), iMac G5 (20-inch iSight), iMac (Early 2006 17-inch), iMac (Early 2006 20-inch), Mac mini, Mac mini (Late 2005), Mac mini (Early 2006), MacBook Pro, Power Mac G5 (Early 2005), Power Mac G5 (Late 2005), PowerBook G4 (15-inch Double-Layer SD), PowerBook G4 (17-inch Double-Layer SD)
    http://www.welovemacs.com/2z69153179a.html
    AHT I think was on a seperate CD.
    Thanks Kappy, if v2.2.1 then search for...
    018-1680-A.dmg

  • Another Mail question about certificates.

    Hi all
    I know there have been a lot of posts on that but I didn't find any answer working. I have an IMAP account whose certificate is said to be invalid by Mail.app. I tried ticking the always trust box, it did not change anything. Mail won't trust even without restarting it.
    The detailed message is "The certificate for this server is invalid... etc." and then in the display under it "Unable to display certificate." It also works perfectly well in thunderbird.
    Thanks if you have any answer.

  • Another NewB question about Cubase LE / monitoring and click

    I am using Tascam 1804 and Cubase LE on windows XP.
    I want to record analog signal on Cubase LE, but hear monitoring from Tascam. That goes well as long I want to hear CLICK as well through Tascam. Is this possible? How?
    I have tried to utilize ASIO, no result. I can see that Tascam received click by MIDI (green light blinks according to click), but no click sound from headphones.
    Please advice, how to make clicking to Tascam in a simple way.
    Thanks,
    Jani

    What you need to do to monitor VST effects in Cubase in real time whilst recording.
    This is Applicable to all EMU patchmix soundcards eg. EMU 0404, 1212.
    1. Switch off Direct monitoring in Cubase.
    2. Switch off Direct monitoring in patchmix: Mute the input channel(s) you are using in patchmix.
    Q. Why does this work?
    A. You currently can not hear the effects whilst recording because Cubase is using the unprocessed signal as the monitor signal. What you want it to do is to hear the processed signal. Therefore Switch Off Direct Monitoring.
    HOW-TO
    = Switch off Direct Monitoring in Cubase =
    1. On the toolbar Click on Devices=>Device Setup
    2. In Device Setup Click on VST multitrack
    3. Untick Direct Monitoring
    4. Click on Control Panel Button
    5. Set ASIO Buffer Latency to a low figure. Say 5ms
    (The lower the Buffer Latency the more the 'responsive' the computer.)
    6. Press OK (Your Back in Device Setup)
    7. Press OK
    HOW-TO
    = Mute Input channel(s) you are using in patchmix =
    1. Run the patchmix software
    2. Click on the M button@ bottem of fader to mute the input channels.
    Done :-)
    dG

  • Question about IPC for CRM 5.0

    Hi ,
    I have a question about CRM 5.0 with relation to the IPC .
    As we know the IPC  will be available internally from  CRM 5.0 , but we would like to know if the internal IPC  will be distributed with different applications or will it be one IPC  for all the different applications .
    Thanks in advance
    BR//
    Ankur

    Hi Ankur,
    See my reply in your another thread Question about IPC for CRM 5.0
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Questions about typography

    Hi,
    I was wondering what is the exact meaning of the FontMetrics.getAscent() method. The documentation says that "The font ascent is the distance from the font's baseline to the top of most alphanumeric characters".
    1. So, It's not possible to calculate the ascent of a single char like 'g' ?
    2. FontMetrics.getAscent() returns an integer, but what does exactly mean this number? Pixels?
    Another related question about typography in Java:
    Is it possible to print a char with some rotation? e.g. print 'g' with a rotation of 90 degrees.
    Thanks in advance,
    Roger

    Actually, technically, you probably can't get the ascent of 'g'....
    From the API docs...
    "The ascent is the distance from the baseline to the ascender line. The ascent usually represents the the height of the capital letters of the text. Some characters can extend above the ascender line."
    So it more or less is this:
    ascent ---  ####### #              ----------------\
                   #    #                               |
                   #    #                               |
                   #    #####   ###                     |
                   #    #    # #   #                    |
                   #    #    # #   #                    |
    baseline ---   #    #    #  ####                    |
                                   #                    |-- height
                                   #                    |
    descent ---                 ###    -\               |
                                         |-- leading*   |
    ascent ---  ####### #              -/ --------------/
    baseline ---   #    #    #  ####
    descent ---                 ###* leading, in the Java APIs docs, appears to be from descent to ascent, but I'm thinking (it's been a while) that this is not the proper traditional definition of leading. I thought it as from baseline to baseline. What they call leading I think is really line gap, but I forget the exact details.
    Unfortunately, I can't find any site that gives decent info on fonts, it's all free font sites.

  • Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update.  EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off.

    Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update. EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off. never had this trouble with my 3...I don't even want to talk to anyone on this phone! Is the sensor bad? That is what the AT&t rep suggested.

    Restore as new... if the problem still continues then there is a hardware issue.
    If it stops after a restore as new, then the issue is with the backup the device is currently setup with.

  • I have a question about using multiple ipads in our school.  Each of our teachers have a iPad and AppleTV in their classroom.  The issue is, with our classrooms so close in proximity to one another, is there a way to pair teacher

    I have a question about using multiple ipads in our school.  Each of our teachers have a iPad and AppleTV in their classroom.  The issue is, with our classrooms so close in proximity to one another, is there a way to pair teacher #1 iPad to its AppleTV without effecting/projecting onto the adjacent teachers #2 classroom AppleTV?

    Not as such.
    Give the AppleTV units unique names and also enable Airplay password in settings with unique passwords for each teacher.
    AC

Maybe you are looking for