Struggling to find the right setting!

Hi
I use a web based portal for work, and am unable to click on links within as it brings up a message - Are you sure you want to resend the page? Yes/Cancel
When I use the portal on a desktop clicking on the links bring up a new page.
I know it is probably somehting simple, but I hvae been unable to locate the setting I need to change!
Any help appreciated xx

I am using Safari,
Sorry I am a bit technologically ********... I opened up my settings in the system preferences but couldn't see any for safari.

Similar Messages

  • Dont find the right setting in livetype to fit with my DVCPROHD timeline

    Hi,
    I go to options and then i have loads of format settings, but i cant find one for DVCPRO HD 1080i? Which one will work for that? or do i have to get n plug in or something
    THANKS!

    In LiveType Project Properties there is a preset for DVCPRO HD 1080i60.
    You might try that.
    The project properties can be found under the "edit" menu

  • 24P plug in on YouTube?  Finding the right export setting

    I am using a Nattress Film Effect to get 24P of my video which is shot on DV 16X9. I am using GFilm Extra, and it's looking like crap on YouTube. YouTube prefers mp4s and I have spent days experimenting with different frame rates and standards conversions to try to make it work. It's probably got something to do with interlacing, but also something to do with the mp4 conversion process, which makes the 24p a little stuttery, which is exaggerated when it gets compressed by YouTube. I have discovered however, that if I make a Quicktime mov file that is below 1 Gig, that it actually looks okay on YouTube. I have been using Quicktime conversion to get there, but I have tried several variations and am unable to find a setting that will do it correctly. I have been trying DVCPro50 NTSC, and one of the settings is either 4:3 or 16X9. If I select 4:3 and then select anamorphic, the actual settings are 720X480 anamorphic, so when I upload it to YouTube it looks great but it's stretched. It looks fine when I see it in Quicktime but when I upload it it is stretched. If I select 16X9 and then use a custom frame size to make the file smaller, then it always ends up as 853X480, which is 16X9, but about 1.62 Gigs. I'm trying to make a less than 1 Gig anamorphic 16X9 mov file that will look halfway decent on YouTube, and because of the interlacing, it would probably be better if it was progressive, although it seems fine with the interlace .mov version. There are several examples of the problem now at http://www.youtube.com/metapunker (the video is Marielle) if you want to see the problem. I have been exporting a lot of different versions but I haven't found a winner yet, and am hoping that you have some ideas.

    I tried a variation on that theme by exporting the sequence and then bringing it back into a 23.98 sequence, and standards converting it into a 23.98 finished product. The only problem then was flag edits, which are even more obvious and jarring when it goes to YouTube. If you want to see what I'm talking about, go to:
    http://www.youtube.com/watch?v=EI-2cNZx8JM
    The first one happens approximately 30 seconds into the video.
    It works with a .mov if I can just find the right setting to make a small enough file to upload to YouTube. If you want to see the stretched version, go here:
    http://www.youtube.com/watch?v=UkjKTyyqFNE
    This is a .mov 720X480 anamorphic which is what happens if you select 4:3 and then check the anamorphic button. It looks fine in Quicktime, but it is stretched on YouTube.

  • How to find the right kstat info & interpret it ?

    Having found out how to read the kstat structures I am
    still struggling with finding the right information which
    makes sense!
    I am interested in the following statistics:
    0. Swap Space - similar to that reported by swap
    1. Scan rate similar to that reported by vmstat
    2. Handspread page (see Adrian Cockcrofts' performance monitoring articles)
    3. Disk Space Usage - similar to df -k
    4. Process memory usage -- ps
    5. System Error Messages -- this may not be possible to read at all
    from kstat. Probably here I will have to make do with reading /var/adm/messages
    6. Disk Errors -- similar to iostat -E (Solaris 2.6 onwards)
    7. Ethernet stats -- like netstat -I le0
    I found the following article on SunSolve Online: FAQ 1230 'Three Virtual Memory Performance Monitors' which directs me to some of the kstat cell
    types.
    I started with swap space. The above article plus a few other pointers seemed to indicate the the
    correct kstat struct and field to use here was vminfo.swap_avail
    When I compared the figures dumped from this structure with those reported by vmstat & swap they
    did not compare! eg.
    kstat: vminfo.swap_avail 321393372929
    kstat: vminfo.swap_free 33339822544
    vmstat unix tool:
    swap avail (KB) 19932
    Furthermore sysinfo.h indicates that vminfo.swap_avail is expressed in pages.
    1 page = 4.096 KB, so the kstat figures should be multiplied by 4 which makes
    the comparison even worse. Whilst I don't expect the figures to be
    an exact match -- I was hoping they would be in the same ball-park,
    Next I tried page in/page out rate
    Here I compared:
    kstat: cpu_vminfo.pgpgin 473224
    kstat: cpu_vminfo.pgpgout 14554
    vmstat unix tool:
    pi (page in) 4
    po (page out) 0
    These figures sort of match up, if you take the most sig digit in
    vminfo.
    I was wondering if anyone has a definitive list on what are the best
    kstat fields to use -- and if any wierd and wonderful calculations must
    be performed on any of them to get figures close to that supplied by
    the familiar unix tools.

    Hi!
    I wrote a quick program to read the vminfo stats and like you saw completely crazy figures. I looked further into this and found that every second, the system clock routine adds the freemem, swap and so on to a cumulative total.
    To put it another way, the figure you see for free memory is the sum total of the value of freemem sampled every second since your system booted.
    Thus, to get the average freemem in pages since boot, you need to read the value of freemem and divide by the number of seconds since boot.
    You can derive the number of seconds in two ways from the kstats:
    (1) read lbolt (incremented every 100th sec) and divide by 100 (hz)
    or (2) read sysinfo.updates (which is incremented every time the kstats are updated).
    I have attached a sample program that demonstrates both of these and reports average freemem since boot in K (like vmstat).
    Similarly, to get a 5 second average, take two readings of freemem and sysinfo.updates five seconds apart , then calculate
    (freemem2-freemem1)/(updates2-updates1)
    It seems most, if not all, of the system counters are cumulative in this fashion.
    Hope that helps.
    Ralph
    SUN Developer Technical Support
    <pre>
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <kstat.h>
    #include <sys/types.h>
    #include <sys/time.h>
    #include <sys/sysinfo.h>
    #include <stdio.h>
    main()
    kstat_ctl_t *kc;
    kstat_t *vminfo_ksp;
    kstat_t *system_misc_ksp;
    kstat_t *sysinfo_ksp;
    kstat_named_t *lbolt_knp;
    vminfo_t vminfo;
    sysinfo_t sysinfo;
    int hz;
    int ltime;
    ulong_t updates;
    if ((kc = kstat_open()) == NULL)
    perror("kstat_open failed"); exit(1);
    /* get lbolt and divide by hz to get secs since boot */
    system_misc_ksp = kstat_lookup(kc, "unix", 0, "system_misc");
    kstat_read(kc, system_misc_ksp, NULL);
    lbolt_knp = kstat_data_lookup(system_misc_ksp, "lbolt");
    hz = sysconf(_SC_CLK_TCK);
    ltime = lbolt_knp->value.l/hz;
    /* get number of statistic updates so far (=secs since boot) */
    sysinfo_ksp = kstat_lookup(kc, "unix", 0, "sysinfo");
    kstat_read(kc, sysinfo_ksp, &sysinfo);
    updates=sysinfo.updates;
    printf("lbolt time %d\n",ltime);
    printf("updates %d\n",updates);
    /* get vminfo */
    vminfo_ksp = kstat_lookup(kc, "unix", -1, "vminfo");
    kstat_read(kc, vminfo_ksp, &vminfo);
    printf("freemem %lld\n",(vminfo.freemem*4)/updates);
    printf("freemem %lld\n",(vminfo.freemem*4)/ltime);
    </pre>

  • I have 10.6.8 and have installed two new printers HP 8610 and an Epson 7880 and can not find the Page Set-up menu anywhere in the applications I a trying to print from. There are no page sizes, paper types, appearsto be locked on a 13x19 size but It.

    Hi to the Mac Folks,
    I have 10.6.8 and have installed two new printers HP 8610 and an Epson 7880 and can not find the Page Set-up menu anywhere in the applications I a trying to print from. This is regardless of either printer selected.
    I primarily print photos from Photoshop CS5.  The term Page Set-up has gone missing in the file pull down menu. Can't make any choices  There are no page sizes, paper types, appearsto be locked on a 13x19 size paper format. Either being too large or too small.
    Saw a 2008 locked issue about this however none of the help fit my situation, options discussed are not available to me.
    Preview has no "Page Setup" - or does it?
    Does the constant struggle with computer compatability weirdness issues ever end or is it a enslavement scheme?
    Woody

    Hey,
    if you know the name(s) of the root folder(s) you want to access (eg. by making a note on the Windows side) then you can make them appear by just doing Shift-Command-G in Finder ("Go to Folder…"), and entering the full path to the required folders.  You can then navigate all the contents as normal.
    HTH,
    S.

  • HT2712 Network ip address keeps changing and for some reason I can't find the right settings. The diagnostics says to check with my network  administrator,  but idk whom that is being at a motel and all. I have made. New locations, & changed the ipv4 addr

    Network ip address keeps changing and for some reason I can't find the right settings. The diagnostics says to check with my network  administrator,  but idk whom that is being at a motel and all. I have made. New locations, &amp; changed the ipv4 address. Help plz

    Hmmm, is Network set to using DHCP?
    Go to System Preferences
    Click Network
    Highlight AirPort and click Configure...
    Choose “By default, join: Preferred networks”
    Select your access point and Remove your access point with the minus button.
    Launch your keychain access in Utilities and delete your access point keychain entry.
    Reboot
    Go back to the “By default, join:” page and click the plus this time to add your access point. Enter the correct password, save, reboot.
    Instead of joining your network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed

  • Need help finding the right codec to play QT files

    Like many others who have posted, all the quicktime files on my drive have turned to black. Previously when I opened the file, I saw picture and sound. Now every single file has only audio, but the picture is black.
    I am operation on Mac O.S. 10.4.11. I am using Quicktime Pro 7.5. I have been trying to fix this problem for a month now. Many people have suggested I need to find the right codec, but so far I have not found it. I have tried: A52codec.component, AC3codec, MacOS 8.x, 9.1.x, Apple Intermediate Codec.com, Apple MPEG2.codec.component, Avilmporter-r7.component, DivX Decoder.component, DivX Encoder.component, DivX Pro 6.8.0.19 + keymaker, EnsharpEncoderMacOsX.cmg, Fbx 20091quicktime_macemu.pkg.tar, Fbx QT.pkg, Flipsformac, WMV Advanced.component, Flipsformac WMV Advanced Exports.component, Flipsformac WMV Import.component, IMXCodec.component, LAAME Universal Installer.mpkg, LAAMEncoder.component, QSSP_2.1.dmg, QSXEssentials.component, QSXEssentials.dmg, QTFvx.component, Red Quicktime Codec v3.1.pkg, Red Code iedcod.qt.component, Spectrograph.component, TSCC.component xiphqt.component, XviD_codec-r58.component, XviDELEGATE.component
    Nothing worked!
    I also tried to install Perian. This did not work.
    What should I do? Should I re-install my operating system and start over? About a month ago, all the video clips played just fine. Is there any solution?
    Thanks

    Hi Wangerer!
    I haven't even heard of half of those! You may have reached overkill on codecs!
    Get rid of some of them and read this:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, 3.1, 3.1.1, QT 7.3, 7.4.x and 7.5 and OS 10.4.11.
    Assuming you already run Tiger versions OS 10.4.11 and have Quicktime 7.4 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 11 (which is no longer in beta) for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2
    and then the latest version obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed all the correct version for your Mac of Security Updates up to and including 2008-004. (N.B. Security Updates require both a restart and a permission repair.)
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
    On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
    On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
    And now there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash should be. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards):
    http://silverlight.net/GetStarted/
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • Help me to find the right function Module

    Hi
    Can anybody help me out to find the function module that creates the public ABAPlogon group
    I have to do a task which is as mentioned below:
    Our BI configuration assumes that an ABAP logon group with the name “PUBLIC” exists. However,after A1S installation no such logon group is present. So, my  task is to find out, how we can create such a logon group (this means finding the right ABAP Function Module or BAPI)
    Kindly reply as soon as possible
    Thanks and Regards
    Neeta

    Hi san
    I have gone to se38 then typed LogonGroup* and pressed f4,then I got a Transaction INST_LOGONGROUP but that sets a logon value ALL-IN-ONE <sid> as the name of the logon group .its hard coded in it.
    What I need is a generalized function module that accepta the logon name as parameter and sets the value
    When we go to the transaction smlg we can see a screen where we set the logon group value.Whatever value we give it sets that value.How to find out what is the function module corresponding to that?
    I have debugged it but unable to track the function module.:-((
    Kindly help me out if you can..

  • Finding the right computer

    I'm not that knowledgable on laptops and I'm looking to purchase one where do I start?

    Credit goes to an Author by the name of Paul Tansey on BestBuy.com  for creating this buying guide:
     Laptop Computer Buying Guide
    By Paul Tansey  
    There's no way around it: you need a computer at home. Computers make it so easy to stay in touch, stay organized, entertained and informed, it's a wonder we ever did without them.
    With laptop technology advancing in leaps and bounds, there's no reason you can't take this power and convenience with you wherever you go, considering you can stay connected wirelessly just about anywhere these days. And most laptops can do anything a desktop can do, without the bulky tower and without forcing you to stay indoors. So just because you're working doesn't mean you can't work in the park!
    There are about as many different kinds of laptops out there as there are ways to use them, so let's look at some key points that will help you decide which one is right for you.
    If you want the basics...
    Choose a model that has the features you need to everyday computing. Not for making crazy rocket science calculations or memory eating applications, but to do the things that make life easier, like e-mail, Web browsing and word processing.
    Most models come with wireless capability, so you can grab a seat in any wireless Internet hotspot and surf to your heart's content.
    If you travel a lot...
    Many newer laptops are thinner and lighter than ever but still deliver heavyweight performance, packing all of the processing power, hard drive space and versatility you want into a thin frame that weighs less than 4.5 pounds. You'll pay a little more for the thin and light, but if you have to carry your laptop around with you wherever you go, you'll very quickly appreciate leaving the extra bulk behind.
    If you're big on home entertainment, photos and music...
    These top-end models feature big widescreen displays enhanced for crystal-clear, smooth video playback. The video cards, processors and operating systems are also enhanced for high-performance video and audio, with Media Center models featuring personal video recorder (PVR) capability, a built-in TV tuner, surround sound and multiple digital and analog video inputs.
    PVRs will change how you watch TV. Pause and replay live TV, then skip back to the live feed when you're ready. You can also program your laptop to automatically record your favorite shows.
    For your always-growing collection of images and music files, there are models that feature faster processors, more RAM and larger hard drives. They are also enhanced for displaying photos, and you have more options for getting your media into the computer, including additional USB slots and built-in memory card readers to swap images straight from your digital camera or other device.
    If you're all business...
    Professional Series laptops meet the demands your business requires whether you're working from home, in the office or on the road.
    Since your laptop is your business, look for enhanced security features like a fingerprint reader, which allows only authenticated users to access it, and an encrypting file system to allow for file and folder encryption at the user level. Some include motion-sensing hard drive protection that safeguard the laptop's hard drive against damage from a sudden movement or drop - important to consider when going from meeting to meeting.
    If size matters...
    Laptops come in all shapes, sizes and weights. Many are now an inch thick or less, with absolutely every millimeter of internal space used efficiently. These thin laptops don't lose a step compared to their beefier competition, with just as much processing power and a screen size and keyboard that won't leave you feeling shortchanged.
    As laptops get a little larger, the size of the screen also climbs. You can find high-performance Thin Film Transistor (TFT) LCD screen sizes ranging from 4.5" to 17" or more, most set up as widescreens.
    If you prefer wireless freedom...
    Nearly all laptops are capable of working wirelessly, with wireless cards and processors enhanced to perform when you're connected at a hotspot. Many laptops now include Bluetooth wireless for easy, safe, secure linking with a wide range of other devices, from handhelds to cell phones to wireless headphones.
    Instead of confining yourself to your office or den, or inflicting a tangle of wires and computer components on your décor, you can set your family up with a network of wireless laptops. Everyone gets the access they need, when and where they want it. Plus, if you need your computer for work, you can take everything with you and not worry about leaving a file behind or denying anyone their computer time.
    Multiple users can go online at once, and all of the same access protection can be installed to keep your kids away from online dangers. You can all use one central wireless printer and scanner for total convenience.
    If performance is key...
    Processing power can separate the handy from the incredible, so if performance is key, look for more processing power. Most processors will fall within the range of 1.0GHz to 3.0GHz, but different types of processors excel in different ways.
    The Intel lineup starts with the Celeron® M, while the Pentium® Dual Core is peppier and more powerful. The top-of-the-line Centrino® chipsets feature Core™, Core™ Duo and Core™2 Duo processors with built-in wireless capabilities, improved power-saving capabilities and enhanced performance.
    AMD also has a good range of processors. The AMD Turion™ 64 X2 and Turion™ 64 mobile technology is similar to Centrino® and adds wireless performance to their high-end processors with some supporting Bluetooth technology.
    RAM is also an important performance factor and serves as the real-time memory that makes your applications run faster and makes it possible to work with huge files. RAM starts at about 512MB, but most models can be upgraded with extra memory. You can find some that can be upgraded all the way to 4.0GB, which comes in handy for demanding multimedia applications.
    Many of the higher-end models will also include a generous amount of RAM built into the video card for smooth performance, especially for today's advanced 3D games.
    Drives
    Hard drive sizes vary considerably, from about 60GB (more than enough for basic computing needs) all the way up to 240GB, ideal for multimedia, home entertainment and games. Faster hard drives (measured in RPM) are better for quick access to data and for smooth video and game operation.
    Optical drives - The DVD/CD drive is at least capable of reading DVD-ROMs and burning CDs, but more and more can now work with rewritable DVD±R/RW and even double-sided or double-layered DVDs. If you need better performance, look for write speeds in the range of 24x for CD and 8x for DVD.
    Increasing the cool factor, optical drives on some HP computers are outfitted with a technology called LightScribe, which can burn a professional-looking label right onto your disc.
    The softer side
    The operating systems you can choose from will also impact performance, and will often include software to work with photos, multimedia or even TV.
    Windows Vista features Windows Media Center, a multimedia powerhouse that lets you watch your favorite shows, enjoy prized photos and manage your music. In addition, Windows Vista has numerous enhanced security features, new interface elements and increased mobility for working with other users or devices.
    The Apple® Mac OS X 10.4 Tiger also delivers great multimedia and networking performance and comes bundled with photo, music and moviemaking software.
    Staying power
    Battery life is also a consideration. Many manufacturers have been working to improve the efficiency of their systems to extend the amount of work you can accomplish per charge. This will come in handy on long trips or when you have to finish a project but can't find anywhere to plug in, like when you're on a park bench or a coffee house patio.
    Accessories for protection and convenience
    First and foremost, a laptop case will not only make it easier to carry around your computer and its related accessories, but it will also protect your investment. Laptop cases range in size, with some designed for style and others for capacity, and many for both.
    A small laptop mouse will give you a welcome break from your current pointing device, making it easier to navigate your screen. They come in either wired or wireless versions. An extra power adapter - one in the bag and one for the office - and back-up battery are also a good idea, so you never get caught without power.
    A flash drive that plugs directly into a USB port is an inexpensive and efficient way to transfer files. Pop one into your laptop case.
    With a better understanding of what separates a good laptop from a great one, it's easy to find the right one for you.
    Shop our current selection of laptops or check out our Laptop Finder. 
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

  • I have a iphone 4s with ios 8.3 and I used to be able to sync only a week or two of emails from outlook email.  Now it won't let me do that and it syncs all my inbox.  How can I change it back to sync less.  I can't find the right place.

    I have a iphone 4s with ios 8.3 and I used to be able to sync only a week or two of emails from outlook email.  Now it won't let me do that and it syncs all my inbox.  How can I change it back to sync less.  I can't find the right place.

    I understand, as that was the place I would change it before 8.3 but now that option of Mail Days to Sync is not available?  Any idea why that would be?

  • How can I get a search bar added to my email archives screen to make it easier to search for the right archives folder, Samsung has one so I was surprised to see that I have to scroll up and down to find the right folder?

    How can I get a search bar added to my email archives screen to make it easier to search for the right archives folder, Samsung has one so I was surprised to see that I have to scroll up and down to find the right folder?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search

  • HT1443 I need to upgrade from 10.5.8 to 6.0 or better to use a new HP wireless printer.  How do I find the right item to download?

    I need to upgrade from 10.5.8 to 6.0 or better to use a new HP wireless printer.  How do I find the right item to download?

    There is no download; you need to buy a Mac OS X 10.6 DVD.
    (83218)

  • Finding The Right App

    im having trouble finding the right app for my ipad. i will spend money and everything, but there are just no good apps out there. the type of app i want is a creation app, sort of like google sketchup, or even better, something like cinema 4d. ive never seen any app come even close to anything like that. i just like making and designing things. i play the game "Soundrop" alot because you just simply create lines into creative little structures and paths for the balls to bounce. if they ever came out for a line rider for the ipad i would probably pay $50+ just for that one app which already exists on the iphone but sadly not on the ipad...does someone have any suggestions for any apps that you think i would like?

    if they ever came out for a line rider for the ipad i would probably pay $50+ just for that one app which already exists on the iphone but sadly not on the ipad
    Sure it is. $2.99
    -> Line Rider HD

  • HT4539 I have 2 year old I-phone 4 that has never been updated. I need to download an update from my computer but can not find the right place on the I-Tunes page. Do you know where is the right place to update a phone that does not have an "update" butto

    My (old, never updated) I-phone has no "update" button in Settings and I would like to update it. I can not find the right place on I-Tunes to download the updates. Do you know where to look?

    Update your iPhone, iPad, or iPod touch - Support - Apple

  • Finding the right htmlBusiness page

    Hi,
    we are on WAS 700 with internal ITS.
    I am dealing with SRM EBP templates and I can't find the right htmlBusiness source .
    From the html source code of the page rendered in the webbowser I get the info that my page is
         <!--
    This page was created by the
    SAP Integrated ITS, WebAS: EBT, workprocess: 2
    All rights reserved.
    Creation time:  Wed Oct 31 12:00:57 2007
    Charset:        iso-8859-1
    Template:       bbpsc02/99/saplbbp_sc_ui_its_100.html  -->
      <!-- No session management -->
       <!-- Domain relaxation already done -->
    <!-- START:  GENERAL DATA                         : Template   100 -->
    Looking at it in the ABAP Workbench I can find an entry which seems to be responsible for the peace of source I have to change - its a subscreen:
    <b>Look at this:</b>
    <!--  SUBAREA:     ACCOUNTING    ------------------------------------------------ -->
    `if (gs_screen-subgeneral-EXT_SCR_TYPE.value == "ACCO")`
      `BBPXBoxBegin(TITLE-ACCOUNTING.label, BTN_SUB_GENERAL_CLOSE.okcode )`       
        `includeFrame (~frameName="gc_sub_general")`
      `BBPXBoxEnd()`
    `end`
    The Dynpro 100 infact has a subscreen called gc_sub:general.
    <b>The Question is:</b> Where do I find the html Version for the subscreen. It includes icons, which I need to replace.
    I notice that there is  this function BBPBoxBegin which might also be responsible for my source. Didn't find it yet, either...
    Thanx a lot,
    Matthias

    Sorry - just found the source - it is in the BBPXBox function, which I just found...
    thanx anyway, kind regards, matthias

Maybe you are looking for

  • Archiving Object MM_EKKO-MM_EBAN-MM-MATBEL- Display archived/deleted doc

    Hello all, I need your help to understand if in Release 4,6C following archived and deleted documents should be displayed through Standard Transaction. Currently my system doesn't allow me to do that. Purchase Order, Contract, RFQ, --> ME23N Purchase

  • How to get rid of feedback in logic pro x!?

    I am using Logic Pro X, and bought a Behringer small USB Audio Interface to record guitar through it's 1/4 input. However whenever I assign one of the amp configuration presets in Logic, I get crazy feedback. I didn't have this issue at home with my

  • Unable to refresh one or more data connections in the workbook.

    Hi All, I'm Getting below error once i refresh all the connection in Power query. External Data Refresh Failed An error occurred while working on the Data Model in the workbook. Please try again. We were unable to refresh one or more data connections

  • Strange Ad-Hoc Issue

    I've been getting this Ad-Hoc warning on the WLSE, the name is PwC80211 and the MAC keeps changing on it except the manufacurer code. I've read where this is probably a Linux OS and it's scanning for other Ad-Hoc's to connect to. Has anyone else ever

  • Problem in loading images.

    I am doing a project. I am creating a jar file which i can execute anywhere. I have some 30 class files in my project. i am creating jar file by this command jar cfm IBC.jar *i have not specified manifest file and then after i am modifying manifest f