Dialing a number that starts with "#".

Does anyone know how you dial a number that starts with a "#" symbol?
You can often call some places such as radio stations from your cell by just dialing # and then 4 digits - ie. #4567
Thanks...Tommy
Solved!
Go to Solution.

during the phone call,
if you want to type : #4567 you have to type the keys QSDFZ (as if the SYM key was locked)
if you want to type : A4567 you have to type the keys Alt-Q SDFZ (as if the SYM key was locked)
The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Similar Messages

  • Australian phone number that starts with 07 54** *...

    Is it possible to get an australian phone number that starts with 07 54** ****?profile.language=en

    Hi,
    I am facing the same issue - has anyone got a resolution to this?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^(\*7\d{2})
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^01[1-9]\d{7,8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^02[03489]\d{8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^03[0347]\d{8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^05[56]\d{8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^08((4[2-5]\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^070\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^(00)?((1[2-9]\d\d[2-9]\d{6})
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([2-9]\d{6,14}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^1([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert all the MicroSoft(Lync) Dial plans
    thanks
    jack

  • Our benefit administrator keeps getting an error on adding a social security number that starts with a 9, that is a valid SSN for a spouse, How do we allow this to go through?

    Our benefit administrator keeps getting an error on adding a social security number that starts with a 9, that is a valid SSN for a spouse, How do we allow this to go through?

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • How to access a JSON structure key that starts with a number

    I've got an odd issue here.  I'm accessing someone else's JSON structure so I am not able to change it.  The JSON structure keys are named with both characters and numbers like this:
    0
    198456
    product_id
    198456
    1
    Rashaan Houston feat Tony Loreto
    artist
    Rashaan Houston feat Tony Loreto
    So, in other words, there's a key named "0" and a key named "product_id", both of which contain the same key.  Why they did that, I don't know, but they did.
    In one of the instances, the data stored under the text-named key isn't the same as the numerical-named key.  I tried to output the data in the numerical key like this (it's an array of structures):
    #strStompyJSON.data[1].0#
    but I get the following error:
    Invalid CFML construct found on line 41 at column 31.
    ColdFusion was looking at the following text:
    .0
    When I do the following, it works fine:
    #strStompyJSON.data[1].product_id#
    So it looks as though CF doesn't like accessing a variable that starts with a number.  I am able to loop through the structure using a collection loop, and it outputs all of the keys (including the numerical ones) and their values using the following code:
    <cfloop collection="#strStompyJSON.data[1]#" item="key">
    #key#: #strStompyJSON.data[1][key]#<br />
    </cfloop>
    However, that doesn't allow me a way to access specific keys named with a number.  Is there a way that I can specifically access a key that is named with a number?
    thanks!
    Mike

    No problem--glad it worked out.
    As a follow-up to this, I'd encourage you to keep the bracket notation in mind during future development.  It is EXTREMELY useful in a lot of situations.
    For example, if you're building a structure on the fly with dynamic keys, bracket notation is extremely helpful:
         <cfset authors = structnew()>
         <cfloop list="authorlist" index="name">
              <cfset authors[name] = getbooklist(name)>
         </cfloop>
    Also, bracket notation is really nice when creating json from ColdFusion structures.  Consider this:
         <cfset author = structnew()>
         <cfset author.name = "Neil Gaiman">
         <cfset author.genre = "Fantasy">
         <cfset author.awesome = true>
         <cfset authorjson = serializejson(author)>
    By default, the serialized json produced will have all UPPER CASE keys.  Not a big deal in most cases, but if you're returning the json to something (like a JS library) that is expecting keys in a certain case, it can be a problem.  Fortunately, bracket notation allows you to specify exactly what case you want the structure's keys to be in:
         <cfset author = structnew()>
         <cfset author['name'] = "Neil Gaiman">
         <cfset author['Genre'] = "Fantasy">
         <cfset author['AWESOME'] = true>
         <cfset authorjson = serializejson(author)>

  • Trying to install Elements 13 and it asks for a serial number. The instructions say the number should start with 1057 but there is no code on the disks, box or envelopes the disks came in that start with 1057. I cannot activate the software without this c

    Trying to install Elements 13 and it asks for a serial number. The instructions say the number should start with 1057 but there is no code on the disks, box or envelopes the disks came in that start with 1057. I cannot activate the software without this code and it is a Christmas gift to my wife. HELP!

    I had this problem. There are actually two boxes. The outside one with the photos and stuff and glued into it is another box containing the disks. That box has the serial number. Adobe was NO help with this as if no one else ever could not find it. I had to rip open the outer box.

  • Can Check Number be start with zero?

    Dear all,
                   I knew that check number on SBO is numeric but check number of my country some number can start with zero and it effected to check number printing form. So, I'm not sure whether we can set check number to be charactor or not. Or how to apply for this issue, pls. suggest.
    Thanks you very much.
    Angnam

    Hi,
    It is not possible to set check number as alphanumeric, you can use remarks field to enter check number or any other filed that you think is not required and can be used as check number.
    it is not possible to add UDF in checks for payment . if you are using payment method checks tab, you can use UDF.
    Thanks,
    Neetu

  • What are the weird files that start with ._ that pc users get when I send zips?

    When I send files that I zip using Stuiffit to pc users they get the files plus an equal number of files that start with ._ Does anybody know what these are and how to get rid of them?
    Thanks!
    Karen

    Dot files are invisible files that OS X uses to display positions of files and folders icon for instance when you open a folder.
    That is indeed what a .DS_Store file does, but that's not the ones Bogies is referring to.
    There are various other items that start with a period, such as .Trashes. Every drive gets a trash folder, just as Windows does to each of its drives. While it hides its own trash folders from view, Windows doesn't recognize OS X's version of the trash folder, so you see it.
    But you're likely talking about these. Every file you copy from OS X to a DOS/Windows formatted drive gets a ._ file. The Mac OS has a twin file system; the data fork, and the resource fork. Windows has only a data fork.
    In order for OS X to maintain the resource fork data on a Windows drive, it has to write the resource data as a separate data fork file. So a file named foo.tif will also get a ._foo.tif file on the drive. Mac users don't see them since UNIX automatically hides anything that starts with a period. When you copy the file back to OS X, the data and resource fork info is combined again into a normal Mac file.
    Most of the time, removing these are no big deal. They hold simple data like Type and Creator codes, modification dates, icons, etc. Others, like Mac Type 1 PostScript or Mac legacy TrueType fonts have all of the font data in the resource fork. Delete the ._ files for those types of fonts, and you're left with nothing.

  • There are several items I'd like to remove that are on the line at the top of my page that starts with "Most Visited," and I have been unable to find a way to remove them.

    At the top of the page, between the address of the page I'm on and the tabs that are open is a line that starts with "Most Visited" and also includes Amazon, aBay, Yahoo, etc., all of which I want to keep. But there are also a number of other links that I don't want but can't find a way to delete. I've looked at suggestions til my eyes bugged out of my head, but nothing I've found allows me to get rid of them. Only one of them is something I saved, but it is no longer usable.

    The mouse that came with my Mac does not have a right click feature. When I try to highlight and click, it just opens the link I don't want anymore. What I want to do is remove unwanted links from the top bar. For example, I no longer use GoodSearch or myEarthLink, but I can't delete them. There are also some links that never should have found their way up there, and I don't know how they ended up there, and I can't remove them either. I've read through a ton of questions and answers, and I can't find one that addresses the problem. With my Safari browser, all I have to do to remove an unwanted link is to click and drag it to the trash. It doesn't appear to work that way with Firefox, to my chagrin. I hope this better explains my question. Maybe that will give you a better insight into a solution.

  • Blocking all numbers that start with +23

    Hello,
    I have a big problem, because someone from Nigeria is calling me all the time (i dont know where did they get tnis number!!!). I tried to bock their numbers, but whenever I do that, they just change the number and call again. I think I have bloked over 100 numbers, but they keep calling!
    Is there any possiblity to block all numbers that starts with +23?
    Tnx

    Hi,
    You will not be able to do this.
    If the material number is fully numeric you can only have leading zeros On or OFF, you cannot store a material number with differeing leading zeros.
    If this was a new implementation you could have set the "lexicographical" flag on the material master controls and you could then have whatever leading zeros you wanted, but this flag can ONLY be set BEFORE you add your first material and so you no longer have the option.
    If you really MUST have this option then define an external number range for alpha characters and use an alpha character on the end of the number, so for 00456 you would have to create 00456a and train your users to ignore the "a". This is a really bad solution but you have no option of having variable numbers of leading zeros.
    Sorry
    Steve B

  • I am using Firefox 11 and I am unable to print web pages. I can print PDFs ok. I tried to open the prefs.js file to delete anything that starts with print and I get an error message.

    I cannot print web pages. I've tried the solutions suggested like deleting anything that starts with print in the prefs.js file but I get an error message: Script: c:\users\rick\appdata\roading\mozilla\firefox\profiles\iviwh5c1.default\prefs.js
    line: 1
    Char: 1
    Error: invalid character
    code: 800A03F6
    Source: Microsoft JScript compilation error

    When editing '''prefs.js''' you need to use a simple text editor program. WinXP Notepad messes up the line formatting of prefs.js, so I use Wordpad - but you need to save the edited file in a Text-Only format (Wordpad asks about that when you go to save the edited file). I never used Win7, so I don't know if that version of Notepad messes with the line formatting of prefs.js or not.
    Another thing - make sure '''''"Hide extensions for known file types"''''' is de-delected in Windows file / folder options > view -> advanced settings. Otherwise Windows may add a .txt file extension that you won't be able to see, and that will break that file in Firefox. '''prefs.js.txt''' won't be recognized by Firefox, when is expecting to find '''''prefs.js''''' .

  • Possible bug in iTunes 8 adding folders that start with '..'

    So I discovered tonight when trying to load tracks into iTunes from a folder that started with '...' (specifically, '...andjustice_forall'). iTunes did nothing. No reaction whatsoever. If I try to load the mp3s in that folder directly, they load fine, but it ignores the whole folder if I try to add it to the library.
    I tried to replicate the issue with another folder that also started with '...' ('...andyou_will_know_us_by_the_trail_ofdead'). Has anyone else observed this behaviour? I have a feeling if it's in iTunes 8, it's been around for a while. I'm guessing it's treating the first dot as an indication that the file's a hidden file, and then ignoring the rest of the name.
    Can anyone else replicate this? I was loading files from an SMB share served by a Linux host.
    cheers,
    Klaus

    I just sent feedback as suggested, hope this helps. What bothers me is that these songs were visible in previous versions of ITunes. I'd actually feel better if there were a setting I just missed that would explain the weird behavior.
    Looking through support topics, I specifically did a search using ".38 Special" and found an article concerning the order in which Itunes displays artists, with .38 Special being at the top of the list in the example... so that also tells me that it SHOULD be showing them. sigh

  • [svn] 3794: Fix loading RSLs with URLs that start with "./" or "../"

    Revision: 3794
    Author: [email protected]
    Date: 2008-10-21 14:21:45 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Fix loading RSLs with URLs that start with "./" or "../"
    QE Notes: Only one "./" is supported at the beginning of the path. Multiple "../" may be in the path, but only at the beginning of the path. No mixing of "./" and "../" is supported.
    Doc Notes: None
    Bugs: SDK-17696
    Reviewer: pfarland
    tests: checkintests, RSL mxunit
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17696
    Modified Paths:
    flex/sdk/branches/3.2.0/frameworks/projects/framework/src/mx/utils/LoaderUtil.as

    Oh I am using Dreamweaver to put it on the web :-)

  • Count files that start with a certain letter

    I need a simple script to give me a count of the files in a certain folder that start with "A" or some other character that I might choose.
    I tried this but got an error
    count every file name starts with "A" of folder ProofsOutFolder
    Thanks for the help.

    You can also approach it this way...
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theFolder to choose folder
    set theChar to text returned of ¬
    (display dialog "Enter Search Character:" default answer "A")
    do shell script "find " & quoted form of POSIX path of theFolder & ¬
    " -type f -name '" & theChar & "*'|awk 'END{print NR}'"</pre>
    Just another option to try out.

  • Copy all the objects from the one system that start with (ZANK)

    hi to all,
    I have installed the name space /ank/ in the US system, we need to copy all the objects from the India system that start with (Zank) and re-create them as /ank/. problem is how can i copy objects and re-create.
    thanks

    Hi Ankal,
    I guess this is your second thread on the same question. Ok provide these information
    >>I have installed the name space /ank/ in the US system,
    Are you saying that you have a machine (US System) and i has a namespace /ank/ ? What all objects are there in this namespace?
    >>we need to copy all the objects from the India system that start with (Zank) and re-create them as /ank/.
    Is the India system on the same US system?
    Also tell me whether you have opened the home page of SAP XI/PI?  If yes , are you able to open Integration Repository? If yes then how these US and India systems are referred in Integration Repository? Are they referred as separate software components?
    Regards
    Suraj

  • Im am trying to send the reset information for my apple security question to my email, they are not be received and it says it is sending it to a email that starts with c

    Im am trying to send the reset information for my apple security question to my email, they are not be received and it says it is sending it to a email that starts with c

    That's not a good sign if it said it was going to send it to an email address you've never heard of. Contact iTunes Support and let them know this: http://apple.com/support/itunes/contact/

Maybe you are looking for

  • IPhone 3GS no longer works with bluetooth since ios 4.3.2 update

    Hi all. Since the ios 4.3.2 update my iPhone 3GS no longer works correctly with the bluetooth in my car (2006 Acura TL).  I know it's not an issue with the car and the only thing that has changed is the update with the phone.  Anybody else having thi

  • Pie Chart select event fires all items instead of selected

    Hi, I would like to fire an event from the select on a particular element in a pie chart. The Flash Debugger shows that the select is sending all items to the data service. I only want to send the selected item to the data service I am using SP8. Any

  • How to refresh portlet??

    I have couple of questions. Please help me by giving the answers. 1) How to refresh only portlet not whole page? 2) If I can refresh only portlet, is there any property to set so that i can refresh periodicaly? 3) What is Cache expire property in por

  • Stuck

    I tried setting up my new gmail account today in mail, but whenever I try, it gets stuck in "Checking connection to mail server "smtp.gmail.com"" What is going on? What should I do to get it working?

  • LAN BASE and LANE LITE Software

    Hi , I found this info in the Q&A for Catalyst 2960 Switches: Q. What are the advantages of Cisco Catalyst 2960 Series Switches with the LAN Base software relative to Cisco Catalyst 2960 Series Switches with the LAN Lite software? A. Cisco Catalyst 2