Reputation points

This may seem a stupid question and if so, I apologize, but why our totals have been removed from beneath our avatars?  It is slightly irritating to have to keep control of my profile to see if someone has been kind of marking no response from my helpful or solved.  I loved seeing it.

We know it. I have access to the lounge, and other users have complained to this topic here.

With the most recent change in these forums, it seems that Apple is more focused on the "specialties" instead of the points system (even if you still need points to level upwards). This is the reason why you have the Safari below your avatar icon. Take a look at specialties-> product specialties.

Tags: Using Support Communities

Similar Questions

  • Support communities not update the rep points.

    Not much, but my 'reputation' points were not updated in the last hour or two. Apple just updated from time to time? Just curious...

    Thank you!

    No points = should be instantaneous - I statement now

  • Difference between points

    Hello

    You don't know if what is happening with me or everyone.

    When I check my points total after the connection points and check in my reputation tab there is difference of 50 points. Reputation points are higher.

    concerning

    Pravin

    Huh! Well, that's weird. Let's see it!

  • Nice announces changes to rankings. Would be nice if someone cared to explain what actually ARE the rankings.

    Okay, that's really stupid and frankly also pretty boring. Am I supposed to guess that the rankings have something to do with reputation points? And this assumption would be correct? And why the announcement is related to a private chat with the same ad, not adding one iota of new information in the message - in particular an explanation as to what a ranking actually is?

    He said: «Read more here» I see nothing of 'more' in this message.

    I'm sorry Mandy, but you can retract your thanks for my patience, because I did not have more after this nonsense. Please, do not messages that promise to give additional information when it is not. Excitement of you guys is not relevant information.

  • GPIB coding for HP4191A impedance Analyzer

    Hello world

    I try to use Labview as a HP4191A impedance Analyzer make some measurements of the base frequency. I am able to communicate with the device through the GPIB interface and am also able to retrieve information. However, I cannot successfully carry out a sweep or even to move the marker to measure so that I can read the impedance/phase information at frequencies other than the default game on the instrument at the time I perform the measurement.

    Because the 4191 is so old, I've got my code manual programming for the HP4291A GPIB, which is supposed to be compatible with the 4191A. I suspect that this difference might be cause my problems.

    In particular, after the implementation and launch of the instrument, I am initiating the measure and it reads as follows:

    'INIT ';

    ' DISP:TRAC:MARK:ALLTAT. »

    "CALC: EVAL: Y1:XPOS 300 MHz;

    "CALC: EVAL: Y1ATA?;"

    that comes straight from the manual of programming. In the code above, 300 MHz is an arbitrary frequency. However, rather than be sent back data at 300 MHz, I returned the data how the parser is currently set at.

    If someone has worked with the 4191A and/or the front GPIB, can you check if my GPIB strings are valid or not?

    Thank you

    Matt

    I worked with the 4191A and, if I remember, orders are nothing like any other tool I've seen.  You really need the manual.  I think the 4291 would probably take the old 4191 commands, but ALSO of new orders has the 4291.

    IIRC, the scan settings have been something like this:

    A = (start freq)

    B =(stop freq)

    C = (size not?)  or was - the number of reputation points?)

    Good luck with it...

  • Strange problem of Getter Setter in interface

    Hi people, I have a strange compilation error

    package  {
      public interface IGet{
      function get someInt():int;
      }
    }
    

    package  {
      public interface ISet {
      function set someInt(value:int):void;
      }
    }
    

    package  {
      public interface ISomeInt extends IGet, ISet{
      }
    }
    

    package {
      public class SomeInt implements ISomeInt {
      public function SomeInt () {
      }
      public function set someInt (value:int):void {
      }
      public function get someInt ():int {
      return 157;
      }
      }
    }
    

    package  {
      import flash.display.MovieClip;
      public class InitSomeInt extends MovieClip{
      public function InitSomeInt() {
      var so:ISomeInt = new SomeInt;
      so.someInt = 15;
      }
      }
    }
    

    compiler says: 1059: property is read-only.

    all solutions?





    put ction someInt

    Just to chime in... I'm not sure how familiar vakhtangi is with ACE and don't want him to get discouraged by false information by a person with a lot of reputation points. He knocks on the interface is the right thing to do and the type of implementation will not help (and of course also will not accomplish the goal of using Interfaces in the first place).

    I think what actually happens are the IGet and ISet are defined separately, then combined in ISomeInt. When you try to set the value, the compiler considers as separate and straightens the first IGet (this is the order specified in ISomeInt), which specifies someInt as a read-only property. It is a strange but not illogical behavior. It's probably an edge case that never took place at Macromedia/Adobe.

  • Variable record for later use (meter simple app)

    Hello world! First of all, I would like to say that I am not very familiar with ac3.

    I'm doing a counter simple app, basically 1 buttons add 1, 2 adds another button and another button adds 3. I have this variable (pts), which corresponds to the actuall data. What I want to do is to save the data of "reputation points" so that its there the next time I open the file.

    Here's what I have so far:

    var pts:int = 0

    ptstxt. Text = pts.toString ();

    ptstxt is the text box that displays the value of reputation points

    But1.addEventListener (MouseEvent.CLICK, click_handler);

    function click_handler(event_object:MouseEvent) {}

    PTS += 1

    trace (pts)

    ptstxt. Text = pts.toString ();

    }

    This button adds 1 to the pts

    but2.addEventListener (MouseEvent.CLICK, click_handler2);

    function click_handler2(event_object:MouseEvent) {}

    PTS += 2

    trace (pts)

    ptstxt. Text = pts.toString ();

    }

    This button adds 2 points

    I searched and found that it would be for the best that I used the "shared" object, but my knowledge of the ac3 is not big, I was unable to do without help.

    In addition, it would be usable in an android app?

    Looking forwad to a response and thanks in advance.

    :

    var pts:int = 0

    var so:SharedObject = SharedObject.getLocal ("counter", "/");

    {if (SO. Data.Count)}

    do something with so.data.count which is the value of reputation points when your app last used by the client computer.

    }

    ptstxt. Text = pts.toString ();

    ptstxt is the text box that displays the value of reputation points

    function saveCountF (): void {}

    so. Data .Count = points;

    so. Flush();

    }

    But1.addEventListener (MouseEvent.CLICK, click_handler);

    function click_handler(event_object:MouseEvent) {}

    PTS += 1

    trace (pts)

    ptstxt. Text = pts.toString ();

    saveCountF();

    }

    This button adds 1 to the pts

    but2.addEventListener (MouseEvent.CLICK, click_handler2);

    function click_handler2(event_object:MouseEvent) {}

    PTS += 2

    trace (pts)

    ptstxt. Text = pts.toString ();

    saveCountF()

    }

    This button adds 2 points

  • Calculate the percentage based on the other 2 columns column

    I did 2 columns. These two columns are column_a = separate count of all documents and
    column_b = separate count of the subset of records based on the specific condition.
    I try to get column_3 = (column_b/column_a) * 100
    These 2 columns comes from the same physical tables but two different logical tables (I have the condition where the different for each)
    Result is correct (100) where column_a = column_b, but I get 0 when they are different
    col_a, col_b %
    8 7 0 why not 87.5
    1 1 100
    27 23 0 why not 85.2

    NP, any chance of some reputation points if this has been helpful?
    Thank you

  • Email problem: Error 550 - 0x800CCC69 - Message rejected due to the reputation of the sender's IP

    Hello

    I have a problem running Outlook Express in WinXP SP3. I can receive but not send an email, I got the error next message when sending email:

    Error 550 - 0x800CCC69 - Message rejected due to the reputation of the IP of the sender (or words to that effect, at least)

    I have other messages on the forum the impression is that this error occurs usually when there is a suspicion that an e-mail account is used to send the spam, but I talked to our ISP and email provider (this does not relate to a Hotmail address) and they said that there is no problem from their point of view , and it must be something to do with OE. We also checked all the settings of the ISP account and everything is perfect.

    Can anyone offer any help?

    Thank you

    This error message comes from your ISP. They refuse to relay messages. Unless you are not connected to your ISP directly, IOW, sending another address through your ISP, they have blocked you.

    Remember their service tech and ask to speak to a technician level 2.

    P.S. When an error message in question, please copy and paste in your message. Wording right can make a difference.

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • Cannot start windows, impossible to reinstall windows, can't restore windows to the external hard drive or to an earlier point in time!

    I have a Dell studio 1535 laptop. When I start it the typical loading screen appears with Dell logo and the possibility to go to the installation or boot menu.

    If I leave this office, I go to the Windows Error Recovery screen with give me the opportunity to start the system restart or start windows normally. If I start windows normally, the loading windows screen comes up while the screen flashes blue with white writing (too fast to read) and I am referred to the Dell loading screen.

    If I select the Startup Repair tool, I come to a screen where I am asked to select my operating system, but the list is empty. It also shows if you don't see your operating system in the list then click loading drivers to load the drivers from your hard drive. He said now insert the device installation media, so I put in the installation CD for the drivers that came with my laptop. I browse through the files on the cd and select 1386 > R180982 > IAAHCI. This will display a list of drivers and I chose Intel(r) 82801HEM/HBM SATA AHCI Controller (I'll explain why later). However when I add this driver it says that the software that supports your device requires you to restart your computer. Also, if I check computer while browsing my HDD is not listed, which I think might be a problem.

    Furthermore, if I don't take any driver, and then click Next when I have 5 options. If I do the Startup Repair, it only takes a few seconds and said if repairs where succesful windows starts normally (which it doesn't).

    If I do the system restore an error comes up saying that, to perform an offline system restore, you must specify which windows installation you want to restore. By example, if the installation is in "C:\Windows" should be restored in the following command: rstrui.exe/OFFLINE:C:\Windows. I have it entered in the command prompt, it runs it sends me to the System Restore screen, but says that no restore points were created so that I can't keep (However, I know that I don't actually have the restore points.

    If I select Windows complete PC Restore it gives the error message "an internal error has occurred. The following information can help you resolve the error: the parameter is incorrect. (0 x 80070057) ».

    If I select Windows memory diagnostic tool and select Restart now and check for problems I get the error "Windows cannot verify the memory problems. A problem is preventing Windows from checking for memory problems during startup. Try to check the problems again by running the tool manually.

    I managed the Dell Factory Restore Image but that did nothing.

    And no, I can't reinstall windows.

    I have a Dell studio 1535 laptop. When I start it the typical loading screen appears with Dell logo and the possibility to go to the installation or boot menu.

    If I leave this office, I go to the Windows Error Recovery screen with give me the opportunity to start the system restart or start windows normally. If I start windows normally, the loading windows screen comes up while the screen flashes blue with white writing (too fast to read) and I am referred to the Dell loading screen.

    If I select the Startup Repair tool, I come to a screen where I am asked to select my operating system, but the list is empty. It also shows if you don't see your operating system in the list then click loading drivers to load the drivers from your hard drive. He said now insert the device installation media, so I put in the installation CD for the drivers that came with my laptop. I browse through the files on the cd and select 1386 > R180982 > IAAHCI. This will display a list of drivers and I chose Intel(r) 82801HEM/HBM SATA AHCI Controller (I'll explain why later). However when I add this driver it says that the software that supports your device requires you to restart your computer. Also, if I check computer while browsing my HDD is not listed, which I think might be a problem.

    Furthermore, if I don't take any driver, and then click Next when I have 5 options. If I do the Startup Repair, it only takes a few seconds and said if repairs where succesful windows starts normally (which it doesn't).

    If I do the system restore an error comes up saying that, to perform an offline system restore, you must specify which windows installation you want to restore. By example, if the installation is in "C:\Windows" should be restored in the following command: rstrui.exe/OFFLINE:C:\Windows. I have it entered in the command prompt, it runs it sends me to the System Restore screen, but says that no restore points were created so that I can't keep (However, I know that I don't actually have the restore points.

    If I select Windows complete PC Restore it gives the error message "an internal error has occurred. The following information can help you resolve the error: the parameter is incorrect. (0 x 80070057) ».

    If I select Windows memory diagnostic tool and select Restart now and check for problems I get the error "Windows cannot verify the memory problems. A problem is preventing Windows from checking for memory problems during startup. Try to check the problems again by running the tool manually.

    I managed the Dell Factory Restore Image but that did nothing.

    And no, I can't reinstall windows.

    Hey joeccash

    If you can not restore system reinstall windows etc you may have a hardware problem

    see if you can press F12 on startup to run dell diagnostics tools

    information on the dell below link

    http://support.Dell.com/support/topics/global.aspx/support/KCS/document?c=us&l=en&s=Gen&docid=DSN_A9E3A15597A04AFBB02EE16785D39C5C&isLegacy=true

    and below dell link has the factory recovery information

    http://support.Dell.com/support/topics/global.aspx/support/KCS/document?c=us&l=en&s=Gen&docid=DSN_336966&isLegacy=true

    If this does not help, try dell or a reputable computer repair persom

    Walter, the time zone traveller

  • Normaliz.dll was not found, Explorer does not 'Class not registered', and the restore points are gone

    I left the room for about 20 min then when I came back I got this error

    QPService.exe - Unable to locate component
    This Application has failed to start because Normaliz.dll was not found. Re-installing the application may fix the problem.

    Then I restarted and had the same problem.  If I click 'OK' and then I get "Quickplay Resident Program has stopped working," then the error box changes the same thing but for avast and when I click on it I get "avast!" Antivirus has stopped working. "Click again and"GrooveMonitor utility has stopped working ". That's about 10 programs until next stop errors.

    The Explorer is also not work, my computer, folders, windows update, and many many other programs won't open.  Whatever this either in the Explorer tells me 'class not registered '.

    What I tried:

    • System restore - but it says that I have no restore points.  I used to have dozens, I did a lot of myself, and I don't know where they went
    • I tried to download Normaliz.dll, but when I tried to extract it to System32 (following the instructions I found on the web) he's not here, he gets another error.  So I put it on the desktop but then realized that I can't move it anywhere because I can't pull the top of my work or the Explorer.  I also tried to go into the Task Manager and do 'New task', but if I type anything this either in or click on 'Browse' then I get the same error on Normaliz.dll and then Manager tasks becomes inadmissible and accidents.
    • I tried to go into safe mode and Explorer still does not work, "New task" in the Manager tasks still does not work and I still do not have restore points
    • I tried a few other recovery tools before start and none of them has contributed to

    A lot of what I've tried has been recommended by other people when I did some research on google, but most people seem to have this problem because of IE, but I don't use IE and haven't for months.  Also solutions that seem to work for them have not worked for me.  I can't understand what caused it because I have not downloaded anything recently and it just happened when I left the computer and came back later.

    Any help would be greatly appreciated, I don't really want to destroy everything and reload windows.

    This looks like a general Windows failure since all kinds of independent programs stopped working. I would like to begin the troubleshooting process by testing your hardware from the hard drive and RAM. The machine can also be overheating. You can do it yourself or take the machine to a local professional reputable (not a type of BigComputerStore/GeekSquad of the place).

    http://www.elephantboycomputers.com/page2.html#Hardware_Tshoot

    MS - MVP - Elephant Boy computers - don't panic!

  • What are user Points? Please explain to me

    Can someone please explain to me the point system and how it works? Thank you

    Hi Devirtaza,

    The points system is used to help determine a reputation for people in the forum. You get points for messages, replies, blog and other. In other words, more we are on the forum the more points than us.

    Copper = entry
    Bronze = 6-249 points
    Money = 250-1499 points
    Gold = 1500-5999 points
    Platinum = 6000-14999 points
    Diamond = 15000-750000 points

  • How are the best Participants points calculated?

    Hello

    I answered several questions in a number of areas and either I do not appear among the Top Participants list for the relevant spaces or it does not mention the correct points, I won.

    Could someone please provide a few details?

    Kind regards

    Bashar

    It seems that the 'Catch 22' user has made a comment and then deleted!

    In any case, I went to my profile and then the reputation-> Places.

    Points awarded in any field are the sum of the points in this area who helped a mission.

    I thought it was the points earned in a box regardless of the missions.

  • I uninstalled "Acrobat Reader DC = malware". Reputation of Adobe CRISIS

    I just uninstalled Adobe Acrobat Reader DC on suspicion he was causing a problem of operating system on my PC, that Adobe Reader DC behaved like malware.

    If I have correctly identified the question I came here to ask for because if I, the reputation of Adobe is subject to take a dip of a small crisis, but this is just warning so that Adobe can fix things and save his reputation until it was too late.

    I am running Microsoft Windows 8.1 on a HP desktop PC.

    When I uninstall Acrobat Reader DC I think installation date was January 14, 2016 - a few days before.

    The symptoms were that start menu text style "Home icon" was not popping up as it should. This meant that I couldn't access the functions via the start menu or even shut down my PC as usual.

    I could still access the start menu of Pseudo - touch button and through that I was able to access the PC - update and recovery settings and I was seriously considering a "refresh your PC without access to your files" involving removing dozens of applications and a lot of work to make my PC works again, but it would have been a panic measure then I studied deeper.

    I found a suspect through the Task Manager. Via the menu 'Details', I found that a file with the name of 'RdrCEF.exe' used about 8% of the time processor and had monopolized an extraordinary amount of memory. I note the figure, but it may have been something like 2 GB, certainly much more data than any other process listed in the Task Manager.

    I used the "Search online" feature to discover this "RdrCEF.exe" has something to do with Acrobat Reader DC and search results of online discussions said that claims he had problems with malware, something to do with sending data to Amazon or something.

    Online research identified the location of the "RdrCEF.exe" and I was able to track down to this folder -

    C:\Program Files (x 86) \Adobe\Acrobat Reader DC\Reader\AcroCEF

    At this point, I started to get a bad feeling Acrobat Reader DC and decided to uninstall.

    I can still read my PDF files on my PC after you have uninstalled because Windows 8.1 has a simple PDF reader, it offers up to.

    Internet Explorer and Chrome are able to read PDF files on the internet also.

    My PC now seems back to normal, but it's still the early days.

    It seems to me that a cloud of suspicion has descended on Adobe because of what is happening with Acrobat Reader DC, my operating system crash and I guess I'm not the only one who came.

    So this looks to me to a crisis for Adobe, either on it or imminent and I trust we PDF file readers can expect an emergency response?

    Thanks for your response, Claudio but looks like I was mistaken on my suspicions about Acrobat Reader DC causing a problem with my Windows Start menu 8.1, what problem is back today, long after that I uninstalled Acrobat Reader DC.

    Sorry Adobe if I made a false alarm.

    I'm going on the occasion of this question 'answered' and go back to trying to diagnose what's wrong with my operating system.

  • Station of satisfaction from the point of Distribution (after Buko)

    I have a serious question, and I hope someone here can give me a correct answer, or at least a useful. I'm really afraid that my social standing here in the User Forums is a little weak. You know, anyone who post here regularly has something of a reputation, and according to my own strictly qualitative analysis, my reputation is not as prestigious as it could be.

    Of course, if we had some kind of tool that would give us a feedback quantitative and reliable on the accuracy and usefulness of our messages, then it would be relatively easy for me to improve my reputation. I would simply publish, review the statistics feedback on this post and adjust my display style to match these positions who had the best comments. However, in the absence of such a tool, I have to count to ask you, the regulars of the forum, what you think I should improve my social standing and then think about your answers and to apply these answers to my display style. You may remember this somewhat quaint technique ('conversation') of the past. Before you say "Oh my gawd, how of the 20th century!" Let me say that, although I finally used this technique in a job where I put in place Arab signs with Letraset, I'm sure that it is still a perfectly valid tool. Like Ventura.

    So, fellow Forum-ites: what should I do to improve my social standing in these Forums? The only motivation I can offer are these 'points '. I think you might be able to Exchange 1 to 1 for common frequent flyer of participating airlines, or maybe if you save enough points, you could use for a Memorial light with the Adobe logo. Everything that they are for, I know you want, so please share your responses to my survey and I have some of these 'points' will give the poles with the best answers.

    That is why exact points # of messages of this whole thing is stupid. I had more 25 000 from when I started here. Then, at the last passage, I lost a lot now I'm back to 6000 +.

    Personally, I think that giving a response and the quality of the response is much more important than any one these stupid points and post numbers. Being known by your pillars as someone who gives answers right/correct worked in these parts for at least 10 years now.

    Why do we need to prove to us all over again.

Maybe you are looking for

  • the custom words does not appear in my iPhone

    Hello I joined my iPhone IOS 10 6 more and I noticed that the custom words does not appear in my iPhone, even if I have them in my iTunes library. I signed up with the same Apple ID on all devices. Very few of them, I can access the lyrics in my phon

  • Wireless keyboard connection after the update of El Capitan

    Hello My wireless keyboard freeze constantly or delayed response of the keys after waking from sleep. I never had this problem before the update. And it happened for a while. I have tried resetting SMC and have test the AHT but still does not solve t

  • How to disable the internal speakers?

    I have Windows 7 and are the standard audio Realtek.When I plug a set of external speakers, internal speakers are not automatically turned off, and I can't understand to change this setting. Anyone?I use the laptop for professional presentations, in

  • Satellite Pro A300 - for Windows 7 power management strategy

    Hi all I have the following on my Satellite Pro A300 problem: My laptop fan works continuously, which means almost always turn. I cleaned the entire cooling with compressed air, so it is not clean, no problem with that. The reason is that in browsers

  • Dual Boot on Satellite M300

    Hello It's about dual-boot for Toshiba Satellite M300. I bought Toshiba Satellite M300 in January 2009 with preload MS Windows Vista OS, and now I wish to dual boot with Linux. Is there a possibility of conflict between Windows Vista and Linux instal