Airport driving me mad...please help!!

I recently got a macbook and an airport to connect to the internet. Some days it works fine but some days for no apparent reason the macbook just doesn't find the airport. There are other computers connected to it and they work fine so it must be the Macbook. I've experienced the same problem at school and places where I know I should be able to find 7-8 connections usually. Some times it works again after a simple restart and some times it can take hours before it works again. Please help!
(I apologise clumsy description, I'm not a computer person at all)
MacBook   Mac OS X (10.4.8)  

There are multiple threads on the exact same topic, but anyhow, here's a possible solution that i posted in some of the others:
A guy I e-mailed with last night who had the exact same problem as I described above seems to have stumbled upon a possible solution to the problem!
He downloaded the 293 mb Combo Updater (Intel) found here: http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=11797&cat=1&platform =osx&method=sa/MacOSXUpdCombo10.4.8Intel.dmg
He had taken a look in /Library/Receipts and found that the previous update by Software Update was only about 9 mb big, so he tried this update and his problem disappeared!
My own airport has mysteriously started working again as well, but I installed the update just to be sure.
I hope it works out for you guys!
Creds to Brad Price for the (possible) solution.

Similar Messages

  • UNKNOWN SYMBOL DRIVING ME MAD, PLEASE HELP!!!

    I have a symbol that has come up on my screen. It's a white box with a black dot inside and a red dot like the 'notification star' on it. It's in the same area as where you get your bbm, facebook, email, etc. notifications. I've tried going through all my apps and nothing is helping. It's driving me mad. PLEASE PLEASE HELP!

    Hi DivaAoife,
    Sounds like an update notification for BlackBerry App World. Do you have an email regarding an update? If not, you may be able to see the update notification in My World within App World.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Airport Express (AX) not found after restart....driving me mad, please help...!

    Hello,
    I tried to search for this issue but never found the solution. In the meantime, it drives me mad......so please do respond if you know the answer.
    Here is the problem. I have a WDS setup for our home, time capsule as base and several airport extremes (AX) for the wifi net through the house. In addition there is one AX for iTunes and I have one setup for the printer. Untill last week everything worked just fine. However, after installing a new printer, the printer AX blinked amber. I performed a reset and went through the setup, my AirPort Utility found it right away. I followed the steps for setting it up to join my current wireless network (usb printer). However, after the message: "The settings for this AirPort Express have been successfully updated. You can close this window or wait for this AirPort Express to restart" , the AX restarted, I finally got a message telling me there was an error joining my network. So I closed the ultility, resetted the AX and went through the process again. Unfortunately, the same result. Tried to connect the old printer, same result. Tried another AX, same result. Tried connecting it with a LAN cable, same result. It all goes fine untill right after the restart phase. NExt the AX is not recognized.
    As nothing has been changed in the meantime, I have no clue at all what might be the problem. Anyone ????
    Looking forward to the answer, untill now, I have not been able to find a solution.
    Kind regards,
    Mark

    Mark,
    I am having the same problem.  I found this website, not sure if you have already given this a try.
    http://adamantventures.com/blog/airport-express-setup-troubleshooting/

  • Html:link not working in struts project driving me mad, please help...

    Afternoon all,
    Can anyone help me with an issue I'm having with my first struts project, I'm learning as I go.
    Anyway, I'm trying to create a bog standard hypertext link which passes a value back to a specified struts action. The flow of the application
    is as follows:
    1) search.jsp
    User enters a name and postcode to search on, then click submit
    2) searchAction
    Struts action 'search' is called and does the search in a back-end db.
    Each result found from search is created as a javabean (named resultsBean), and added to a list object. The list object is set as a request
    attribute named 'SearchResults'.
    The action is then forwarded on to another jsp page named results.jsp
    3) results.jsp
    The results.jsp page retrieves the list object from the 'SearchResults' attribute and loops through each entry
    in the list and converts each entry to the 'resultsBean' javabean object.
    Each resultsBean object has a getVirtualID method which stores a string value. This value is retrieved and a hypertext link is created which
    passes this value on to another struts action named 'select'.
    When this link is clicked on, the select struts action is called and the value passed as a parameter is retrieved.
    This is the part I can't get to work, I can't get the link to render properly. When I click the link the select action retrieves
    & lt;%= resultsBean.getVirtualID() & gt; as the value of the parameter 'vid' instead of the value stored in the getVirtualID method of the resultsBean.
    Listed below is the code from my results.jsp page. If anyone can help me get this to work I would be very grateful.
    Thanks in advance,
    Alex
    results.jsp code
    <%
       List searchResults = (List)portletRequest.getPortletSession().getAttribute("SearchResults");
    %>
    <div id="table_layout" style="width: 713px; margin: 0px 0px 0px 3px;">
      <div id="row">
        <div id="column"><img src='<%= response.encodeURL("/images/results.gif") %>' alt="" width="223" height="159" border="0" /></div>
         <div id="column" style="width: 30px;"></div>
         <div id="column">
          <div id="table_layout" style="width: 460px;">
            <div id="row" style="width: 430px; border-bottom: 1px solid #4e137d;">
              <div id="column" style="width: 155px;">Name</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" style="width: 130px;">Address</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" align="right" style="width: 120px;">References</div>
            </div>
    <% if (searchResults.size() > 0) {
           Iterator it = searchResults.subList(0, searchResults.size()).iterator();
           ResultsBean resultsBean = new ResultsBean();
           while (it.hasNext()) {
                resultsBean = (ResultsBean)it.next(); %>
            <div id="row" style="padding: 5px 0px 10px 0px;">
              <div id="column" style="width: 155px;"><html:link styleClass="results"  page="/select.do?vid='<%= resultsBean.getVirtualId() %>'" title="<%= resultsBean.getFullName() %>"><%= resultsBean.getFullName() %></html:link></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" style="width: 130px;"><%= resultsBean.getFullAddress() %></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" align="right" style="width: 120px;"><%= resultsBean.getReferenceIcons(portletResponse) %></div>
              <div id="column" style="width: 13px;"></div>
              <div id="column" style="width: 22px;"><input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;"></div>
            </div>
    <%     }
       } %>
           </div>
         </div>
      </div>
    </div>
    <br />
    <br />
    <html:link forward="/searchpage">Return to search page</html:link>

    If you have part of an attribute dynamic, you need to make the entire attribute an expression.
    ie instead of
    page="/select.do?vid='<%= resultsBean.getVirtualId() %>'"
    it has to be
    page="<%= "/select.do?vid=" + resultsBean.getVirtualID() %>"
    However for my approach, I would aim for zero scriptlets, and use the struts tags even more. For instance instead of an iterator, use the struts logic:iterate tag (or the JSTL c:forEach>
    Also instead of div tags, I would use html table tags - <table> <tr><td> etc etc. Thats what its for right?
    Here is at least some of it rewritten with struts tags.
    I left out the div tags so I could focus on the "important" stuff.
    <logic:iterate id="resultsBean" name="SearchResults">
      <html:link styleClass="results"  page="/select.do" paramId="vid" paramName = "resultsBean" paramProperty="virtualId">
        <bean:write name="resultsBean" property="fullName"/>
      </html:link>
      <bean:write name="resultsBean" property="fullAddress"/>
    <%= resultsBean.getReferenceIcons(portletResponse) %>
    <input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;">
    </logic:iterate>I'm not entirely certain what you are doing with that checkbox at the end. They all have the same name, but no value. You couldn't identify at the server end which one was clicked.
    Hope this helps some,
    evnafets

  • I tunes problem driving me mad - please help

    Hi, I've just got a new laptop and have installed i-tunes on it. I have copied all my music to the hard drive from my previous computer and i-tunes has has automatically placed all of the music in the i-tunes library. The problem is that for some reason the library is showing 3 copies of each song even though there is only one of each on the hard drive. i have tried removing i-tunes and reinstalling but it is still happening. i have looked through the i-tunes settings but can't work out why it is happening. i dont want to have to go through the library deleting songs as it would take forever...
    Has anyone else had this problem? any help would be greatly appreciated
    Thanks

    sometimes different songs are placed under one name and also it looks through multiple directories.try to single the folder out for music and then it might work
    hope i helped.

  • FCP plays DVCPro HD - QuickTime does not - Driving me mad – please help-.

    Hello
    This is a follow on from a previous post. Trying to get DVCPro HD QuickTime file to playback on a MAC Mini. The file opens but the image is white and I occasionally get a dialog box informing me that a QuickTime component is missing.
    I have installed Final Cut Pro on to this MAC
    I have downloaded and installed the DVCPROHD components software from apple.
    From FCP I can do a custom export (File Export QuickTime Conversion) for DVCPro HD but the same option isn’t available if I try and do a custom export from QuickTime.
    I have done the same install on a G5 and all is well. Is it the Intel – Mac Mini that is causing the problem? Both MACs have 10.4.8 installed so I don’t think it’s a system thing.
    ?????..any advise is greatly appreciated.
    Sincerely
    D

    you answered yourself, give you the green star,
    http://forums.creativecow.net/cgi-bin/newreadpost.cgi?forumid=8&postid=914678&pview=t#head

  • Display of eBay Sales Manager Sold Page to wide for screen. Scrolling is driving me mad. Help please for Newbie to Mac!

    I have a new Mac Book Pro 13” & an iPad for my Amazon and eBay business. I have been a PC user.  The problem relates to both.
    On my eBay Manager Sold page, the display of the page is wider than my screen. I use Safari and all other webpages are fine apart from this and a couple of other eBay Sales Manager pages.  I have tried using the eBay default column widths for the Sold display page & also setting the widths of the Sold columns to my own preferences.  However, on each page refresh the display page width reverts meaning I am having to scroll left and right to see full details of each sale.
    Help would be much appreciated as it is driving me mad.  I have tried all the usual things - page display, clearing cookies, restarting computer but nothing helps. 

    Hey mylittlefleur,
    Sounds like the eBay Manager Sold page expects a very wide window.
    Does the content get too small if you zoom out the window?
    Zoom in on webpages - Safari Help
    Make the webpage content larger: Choose View > Zoom In, press Command (⌘)–Plus Sign (+), or pinch open on your trackpad. To make only text larger, choose View > Zoom Text Only before you zoom in.
    Set a minimum font size for webpages: Choose Safari > Preferences, click Advanced, then select “Never use font sizes smaller than.” Click the pop-up menu and choose the minimum font size you want.
    Expand to full-screen view: Click the green full-screen button in the top-left corner of the browser window, or press Control-Command (⌘)-F. To return to standard view, move the pointer to the top-left corner of the screen, then click the green full-screen button again, or press Control-Command (⌘)-F.
    Of course you can zoom out to see more.
    Nubz

  • Airport simply not working :( PLEASE HELP!!

    I have macbook OS X 10.5.6, and recently acquired an airport (4.1) from my grandmother, who has a slightly earlier version of the macbook.
    I decided i want to try to use it to print. I plug it in and it comes up in my network as 'sue's airport'(it was my g-mas) but the light is yellow and won't give me internet access. I don't mind though, because i already have wifi.
    but i would like to use it to print. I've plugged it in to the outlet and the printer's USB. i tried printing bu it didn't work.I tried going to airport utility and it scanned but said it couldn't find an airport. mind you i was like 2 feet away from it.
    So i put in the CD to try and install it, but during the installation, during 'destination select' this came up: 'You cannot install AirPort 4.1 on this volume. Your AirPort software is currently up to date.' i have enuugh room, and can't figure out why it won't let me install!
    please help!
    AND THEN si tried restarting it and it came up in airport utility. Everything was going great, i named it and configured it with my wireless network. But then after it said the update was complete, it was lost again I can't even find it in my wireless networks dropdown, where it was before

    You could probably go through about a dozen different settings to find out which one is preventing communication, or you could simply perform a "hard reset" and start from scratch:
    http://support.apple.com/kb/HT1406
    If you do the reset properly (hold the reset button in until the LED flashes rapidly - about five seconds) and it will appear as "Apple Network xxxxxx" in Airport Utility.
    After that launch Airport Utility, select your Express and configure it using the "Continue" button. Answer the few questions and you'll be all set.

  • Verizon Fios and Airport not working. PLEASE HELP!

    Ok, so I have been trying to get my Airport Extreme and Express to work with my new verizon fios service for about 5hours now. incrediably frustrating becasue with my old service provider it took about 5min.
    Here is what i need to do.
    extend the fios network using my airport extreme. I need to wirelessly print and use it in my office which is far away from the Verizon MI24WR router. cords are not an option. I need this to be wireless.
    I also need to extend my network downstairs to my airport express in order to use itunes to wirelessly listen to music on my speakers.
    I have tried other things described in message boards but I need both the extreme and express to be wirelessly connected to the verizon router. Is this possible and if so how! Please explain in the simplest of terms.
    I am beyond frustrated! PLEASE HELP!

    do you have printer driver v6.12, if not here's the link
    http://www.epson.com/cgi-bin/Store/support/SupportLeopardDetails.jsp?BV_UseBVCoo kie=yes&oid=54861#stage1
    did you contact epson? try them too..

  • Oracle 10g Rel2(10.2.0.3) on Vista ultimate driving me crazy, Please HELP

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

  • Wireless/airport/IP address problem- please help

    I have a Powerbook G4, and have recently set up a wireless system in my apartment. When I open the network connection, I'm told that Airport has a strong signal, is connected to my wireless network, and is connected to the internet- yet I can't actually get on the internet or use any program that requires internet access. Can you please help me figure out what settings I need to change to get this to work?
    Powerbook G4   Mac OS X (10.4.8)  

    Here is the only way I have gotten it to work. No one has provided a better answer and no one has provided a reason why this fails for so many people. This is a pain in the butt, but it works...
    Unplug your laptop
    Take out the battery (i use a penny as the key)
    Push and hold the power button for 5-10 seconds
    Put the battery back in
    Plug back in if necessary
    Turn on the computer and you should be able to connect.
    Unfortunately, I have to do this EVERY time I open the laptop and want to access the internet. HORRIBLE!

  • Help!!  Suddenly..no airport hardware found!  Please help!

    My 17" powerbook fell and now claims that no airport hardware can be found. I'm thinking the card dislodged or something but how do I re-secure it??
    Please help.

    I don't think they do loaners, since I've never been able to get them to do that when I've asked, but you can sometimes ask for a replacement machine if the repairs have been enough that they can't solve the problem. Never wait for them to call you back. I've never gotten a call back. Hold onto a case number and if you need to reach them for any reason call them on the case number. We can't really discuss Apple policy here, though I can certainly tell you what I've experienced.
    A loaner would technically be a machine you can borrow while yours is off to repairs. The machine you'd ask for a replacement would be yours to keep, and you'd never get back the original machine. Hence the good reason for a backup so you can restore to the replacement machine.

  • E: drive full and trying to back up! driving me craaaazy please help

    hey! my laptop is like 5 days old! i put all my old photos and music from itunes onto disks from my old laptop and put them onto this one. everything was fine until sunday! the laptop started a back up! i got a messege saying that the disk E: drive was full and to delete files ect... or i could change the settings! i tryed to change the back up to do this onto disk. but iv been told there should be a place to do this on the laptop and the the wall partions may not be set rite. i also keep getting a warning that my E: drive is full and to make space! i have phoned hp support and they say talk to the place i got the laptop from and so i did they said i could sent it back but that means removing everything! i have googled and seen loads of people with this prob so is there a way to fix this? someone please help its drivng me crazy! i have a hp pavilion g6 series. thaaaaaaaanks x

    You need to re-run the backup program to unselect the E drive.
    As a sidebar, it is actually unwise to backup to the same physical hard drive. You need to realize that you have a single hard drive , that is partitioned in hard disc C,D,E.  If that physical hard drive were to crash, cease to function. burn-out, etc, you lose all of it. It is not separate drives.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Can't open .pkg files. Going mad, please help!

    I'm trying to open an edirol driver with a .pkg file type but the icon just expands and then nothing happens. Same thing happpens with other .pkg files. I've opened with Installer, tried creating a new admin user, copied to desktop but to no avail. Is there anything else I can try short of Archive & Install? Bit scared of trying that. Please help.
    Thanks.

    Prince of Wales:
    I just downloaded the file in Firefox. In the download window I clicked Open and the file was expanded on my desktop. I located the folder and double clicked. I then double-clicked on the .pkg and it opened the installer and was ready to run the script to see if the software could be installed on my computer.
    I suggest that you try downloading the file again and see if a new download makes a difference. Incidentally, not that it should make a difference, what browser are you using? Have you had difficulty expanding and installing any other downloads.
    Good luck.
    cornelius
    Message was edited by: cornelius

  • Windows 7 application error 1000 - driving me insane please help

    I keep getting the message - windows explorer stopped working when i tried to upload photos, look at them on computer etc
    I tried many offered solutions and this is what i found:
    System
    Provider
    [ Name]
    Application Error
    EventID
    1000
    [ Qualifiers]
    0
    Level
    2
    Task
    100
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-05-28T20:41:48.000000000Z
    EventRecordID
    30226
    Channel
    Application
    Computer
    Mia-PC
    Security
    EventData
    explorer.exe
    6.1.7601.17567
    4d672ee4
    ntdll.dll
    6.1.7601.18247
    521eaf24
    c0000005
    00000000000317a7
    18f4
    01cf7ab4b783d6b3
    C:\Windows\explorer.exe
    C:\Windows\SYSTEM32\ntdll.dll
    7cc28f3a-e6a8-11e3-8a86-14dae9e553d7
    I have been trying to fix this for over a week, please help before i sling this computer out of the window
    Mandy

    Hi, I would try to use the calendar to fallback on a system restore's point if you can, something hooked's up on your explorer.exe. Could be a malware too, depend what you do on your Windows 7.
    Regards, Philippe
    Don't forget to mark as answer or vote as helpful to help identify good information. ( linkedin endorsement never hurt too :o) )
    Answer an interesting question ? Create a
    wiki article about it!

Maybe you are looking for

  • Script with different language

    Heloo all, I have a form in EN, I want the same form in Japan language JA. It should support the following condition: 1. If i login in JA, for example TEXT window show some text in JA or other what i maintained. 2. If I login in EN, then the same TEX

  • QuickTime's Screen Recording; Video AND audio?

    Hi, I just now figured out how to use QuickTime player to record footage of my computer screen. It works well, but the only problem is, that it doesn't record the sound from the speakers! Does anyone know how to fix that?

  • Text objects

    Greetings all! Working in CS3. I'm writing a script in which I want to reference every paragraph in every text frame from a particular page to the end of the document. Given that neither the Document or Page objects have Text objects I'm thinking the

  • Do I need 1 or 2 licenses?

    I have a Mac Pro 8 core, 2GB RAM, Mac OS X 10.5.6 on which I use Adobe CS Premium 1.0. I will upgrade in the near future to CS 4 Design Premium. I'm also thinking about purchasing a MacBook Pro primarily for use as I travel. On the MacBook Pro, I int

  • Power builder 6.5 and oracle 8.1.7

    dear friends I am using powerbuilder as front end and oracle as backend and extensively depend on Oracle stored procedures result set values for my datawindows.But i amd facing a problem .The problem being that i connect to ORACLE from Powerbuilder u