Problem with advanced action and a counter.

Hi!
I got a problem on a project with a counter and advanced action.
I got 7 words (3 wrongs and 4 rights), each associate with captions that shows on click
When the students had clicked on the 4 rights (and their captions are shown), the 3 wrongs captions are shown.
variable:
v_count
on wrong words:
simple action: on click, show captions
on good ones:
advanced conditional actions:
1) IF 1=1, THEN show > caption and v_count = v_count + 1
2) IF v_count=4, THEN show> all captions of the wrongs
The problem is: (Only when seen in browser) when I click on 3 rights (and not 4), all captions are shown! I have tried to put v_count=5, but then nothing happens.
Really, I'm lost! Have an idea of what could cause that problem?
Thanks
Laurie-Anne

You already posted this question, thought I asked you if I could have access to your file, because with this explanation only it is a bit difficult to answer. But I cannot find the thread anymore...
Maybe I'm wrong, or you did not see this answer?
Lilybiri

Similar Messages

  • Problem with Group policies and Administrator count

    I have one problem with Group policies and Admnistrator count.
    Win XP, Client 4.91, Client Zen 4
    I use DLU for users.
    the Group policies are well applied and i keep them after logout for
    security reasons.
    But my problem is, after logout, the Administrator count becomes this
    Group policies, and the only technique that I use, is to remove the
    repertories c:\windows\system32\GroupPolicy*. Administrator must
    loguing again for having good policies.
    Can you help me?

    Bill,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • I have upgraded Apple Aperture from version 2 to version 3 and I'm having a problem with the "Highlights and Shadows" adjustment. According to the user's manual, I should have access to an advanced disclosure triangle which would allow me to adjust mid co

    I have upgraded Apple Aperture from version 2 to version 3 and I'm having a problem with the "Highlights and Shadows" adjustment. According to the user's manual, I should have access to an advanced disclosure triangle which would allow me to adjust mid contrast, colour, radius, high tonal width and low tonal width.
    If anyone has any suggestions as to how to access this advanced section, I'd be most grateful.

    Hi David-
    The advanced adjustments in the Highlights & Shadows tool were combined into the "Mid Contrast" slider in Aperture 3.3 and later. If you have any images in your library that were processed in a version of Aperture before 3.3, there will be an Upgrade button in the Highlights & Shadows tool in the upper right, and the controls you asked about under the Advanced section. Clicking the Upgrade button will re-render the photo using the new version of Highlights & Shadows, and the Advanced section will be replaced with the new Mid Contrast slider. With the new version from 3.3 you probably don't need the Advanced slider, but if you want to use the older version you can download it from this page:
    http://www.apertureexpert.com/tips/2012/6/12/reclaim-the-legacy-highlights-shado ws-adjustment-in-aperture.html

  • Problems with ListViews Drag and Drop

    I'm surprised that there isn't an Active X control that can do this more
    easily? Would
    be curious to find out if there is - although we aren't really embracing the
    use of
    them within Forte because it locks you into the Microsoft arena.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 02/03/98 01:33
    PM ---------------------------
    "Stokesbary, Michael" <[email protected]> on 02/03/98 12:19:52 PM
    Please respond to "Stokesbary, Michael" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Problems with ListViews Drag and Drop
    I am just curious as to other people's experiences with the ListView
    widget when elements in it are set to be draggable. In particular, I am
    currently trying to design an interface that looks a lot like Windows
    Explorer where a TreeView resides on the left side of the window and a
    ListView resides on the right side. Upon double clicking on the
    ListView, if the current node that was clicked on was a folder, then the
    TreeView expands this folder and the contents are then displayed in the
    ListView, otherwise, it was a file and it is brought up in Microsoft
    Word. All this works great if I don't have the elements in the ListView
    widget set to be draggable. If they are set to be draggable, then I am
    finding that the DoubleClick event seems to get registered twice along
    with the ObjectDrop event. This is not good because if I double click
    and the current node is a folder, then it will expand this folder in the
    TreeView, display the contents in the ListView, grab the node that is
    now displayed where that node used to be displayed and run the events
    for that as well. What this means, is that if this is a file, then Word
    is just launched and no big deal. Unfortunately, if this happens to be
    another directory, then the previous directory is dropped into this
    current directory and a recursive copy gets performed, giving me one
    heck of a deep directory tree for that folder.
    Has anybody else seen this, or am I the only lucky one to experience.
    If need be, I do have this exported in a .pex file if anybody needs to
    look at it more closely.
    Thanks in advance.
    Michael Stokesbary
    Software Engineer
    GTE Government Systems Corporation
    tel: (650) 966-2975
    e-mail: [email protected]

    here is the required code....
    private static class TreeDragGestureListener implements DragGestureListener {
         public void dragGestureRecognized(DragGestureEvent dragGestureEvent) {
         // Can only drag leafs
         JTree tree = (JTree) dragGestureEvent.getComponent();
         TreePath path = tree.getSelectionPath();
         if (path == null) {
              // Nothing selected, nothing to drag
              System.out.println("Nothing selected - beep");
              tree.getToolkit().beep();
         } else {
              DefaultMutableTreeNode selection = (DefaultMutableTreeNode) path
                   .getLastPathComponent();
              if (selection.isLeaf()) {
              TransferableTreeNode node = new TransferableTreeNode(
                   selection);
              dragGestureEvent.startDrag(DragSource.DefaultCopyDrop,
                   node, new MyDragSourceListener());
              } else {
              System.out.println("Not a leaf - beep");
              tree.getToolkit().beep();
    }

  • Problem with java, ASCII and Linux

    Hi Friends,
    I has a Linux RedHat 9.0 with a jre1.5.0_04 (rpm package of Sun).
    I has a problem with ASCII , for example :
    import java.io.*;
    public class HolaMundo
    public static void main (String[] args)
    System.out.println("Hol� M�ndo");
    this programs runs ok on my windows jdk so it prints "Hol� M�ndo", but when i run the same HolaMundo.class program on my linux redhat it prints "Hol�� M��ndo"
    I think the problem is with the ASCII table that uses the linux version of jre, but i dont know how to solve this problem. I need a Spanish-European ASCII table on my application but i think it is working with a US-ASCII table.
    Then i has installed a kaffe 1.0 (rpm) java machie on this linux and this solve the problem but i has another problems of compatibility with this old version of java kaffe.
    Do you know whats happening?
    Thanks in advance.

    The problem doesn't have to do anything with Java or Linux as far as i can see. It's more likely a problem with Windows XP and IE. Be assured that normally downloading the Linux JDK in windows is not a problem.

  • Problem with Advanced Routing in WRT320N

    Hi, everybody.
    First of all, sorry for my poor English.
    I've a problem with Advanced Routing in router. My provider using routing and it looks like that:
    route add -p 172.16.2.0 mask 255.255.255.0 10.1.0.2
    route add -p 172.16.5.0 mask 255.255.255.0 10.1.0.2
    route add -p 10.0.0.0 mask 255.0.0.0 10.1.0.2
    Everything is working well in XP (or other OS), but then I try to setup a Routing in router:
    1.
    2.
    I'm realy tired to flashing and reflashing between 1.00.02 and 1.00.03, changing browsers, and hard reseting.
    Anybody'll gimme a shot trick to my tired brains?
    Solved!
    Go to Solution.

    1. Yes.
    2. netstat:
    C:\Users\dan>netstat -rn
    ===========================================================================
    Список интерфейсов
    31...........................inet
    12...00 40 f4 76 95 bd ......VIA Rhine III Fast Ethernet адаптер
    11...00 1d 92 2c 23 02 ......Realtek RTL8168B/8111B Family PCI-E Gigabit Ethern
    et NIC (NDIS 6.20)
    1...........................Software Loopback Interface 1
    15...00 00 00 00 00 00 00 e0 Адаптер Microsoft 6to4 #2
    21...00 00 00 00 00 00 00 e0 Адаптер Microsoft ISATAP #2
    13...00 00 00 00 00 00 00 e0 Teredo Tunneling Pseudo-Interface
    14...00 00 00 00 00 00 00 e0 Адаптер Microsoft 6to4
    19...00 00 00 00 00 00 00 e0 Адаптер Microsoft ISATAP #3
    18...00 00 00 00 00 00 00 e0 Адаптер Microsoft ISATAP
    16...00 00 00 00 00 00 00 e0 Адаптер Microsoft 6to4 #3
    20...00 00 00 00 00 00 00 e0 Адаптер Microsoft ISATAP #4
    ===========================================================================
    IPv4 таблица маршрута
    ===========================================================================
    Активные маршруты:
    Сетевой адрес Маска сети Адрес шлюза Интерфейс Метрика
    0.0.0.0 0.0.0.0 10.1.0.2 10.1.3.42 4501
    0.0.0.0 0.0.0.0 On-link 91.203.178.26 21
    10.0.0.0 255.0.0.0 10.1.0.2 10.1.3.42 4246
    10.1.0.0 255.255.0.0 On-link 10.1.3.42 4501
    10.1.3.42 255.255.255.255 On-link 10.1.3.42 4501
    10.1.255.255 255.255.255.255 On-link 10.1.3.42 4501
    91.203.178.26 255.255.255.255 On-link 91.203.178.26 276
    127.0.0.0 255.0.0.0 On-link 127.0.0.1 4531
    127.0.0.1 255.255.255.255 On-link 127.0.0.1 4531
    127.255.255.255 255.255.255.255 On-link 127.0.0.1 4531
    172.16.2.0 255.255.255.0 10.1.0.2 10.1.3.42 4246
    172.16.2.10 255.255.255.255 10.1.0.2 10.1.3.42 4246
    172.16.5.0 255.255.255.0 10.1.0.2 10.1.3.42 4246
    224.0.0.0 240.0.0.0 On-link 127.0.0.1 4531
    224.0.0.0 240.0.0.0 On-link 10.1.3.42 4502
    224.0.0.0 240.0.0.0 On-link 91.203.178.26 21
    255.255.255.255 255.255.255.255 On-link 127.0.0.1 4531
    255.255.255.255 255.255.255.255 On-link 10.1.3.42 4501
    255.255.255.255 255.255.255.255 On-link 91.203.178.26 276
    ===========================================================================
    Постоянные маршруты:
    Сетевой адрес Маска Адрес шлюза Метрика
    172.16.2.0 255.255.255.0 10.1.0.2 1
    172.16.5.0 255.255.255.0 10.1.0.2 1
    10.0.0.0 255.0.0.0 10.1.0.2 1
    ===========================================================================
    IPv6 таблица маршрута
    ===========================================================================
    Активные маршруты:
    Метрика Сетевой адрес Шлюз
    16 1125 ::/0 2002:c058:6301::c058:6301
    11 276 ::/0 fe80::f88b:9485:52cd:caaf
    1 306 ::1/128 On-link
    13 58 2001::/32 On-link
    13 306 2001:0:4137:9e50:2846:3ccb:a434:4de5/128
    On-link
    16 1025 2002::/16 On-link
    16 281 2002:5bcb:b21a::5bcb:b21a/128
    On-link
    11 276 fe80::/64 On-link
    13 306 fe80::/64 On-link
    13 306 fe80::2846:3ccb:a434:4de5/128
    On-link
    11 276 fe80::b9aa:b87b:89ea:fcdd/128
    On-link
    1 306 ff00::/8 On-link
    13 306 ff00::/8 On-link
    11 276 ff00::/8 On-link
    ===========================================================================
    Постоянные маршруты:
    Отсутствует
    C:\Users\dan>
     2. ipconfig:
    C:\Users\dan>ipconfig /all
    Настройка протокола IP для Windows
    Имя компьютера . . . . . . . . . : druh
    Основной DNS-суффикс . . . . . . :
    Тип узла. . . . . . . . . . . . . : Гибридный
    IP-маршрутизация включена . . . . : Нет
    WINS-прокси включен . . . . . . . : Нет
    Порядок просмотра суффиксов DNS . : mannet.lan
    Адаптер PPP inet:
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : inet
    Физический адрес. . . . . . . . . :
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    IPv4-адрес. . . . . . . . . . . . : 91.203.178.26(Основной)
    Маска подсети . . . . . . . . . . : 255.255.255.255
    Основной шлюз. . . . . . . . . : 0.0.0.0
    DNS-серверы. . . . . . . . . . . : 91.190.68.2
    91.203.177.4
    NetBios через TCP/IP. . . . . . . . : Включен
    Ethernet adapter lanHOME:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : VIA Rhine III Fast Ethernet адаптер
    Физический адрес. . . . . . . . . : 00-40-F4-76-95-BD
    DHCP включен. . . . . . . . . . . : Да
    Автонастройка включена. . . . . . : Да
    Ethernet adapter 1000LAN:
    DNS-суффикс подключения . . . . . : mannet.lan
    Описание. . . . . . . . . . . . . : Realtek RTL8168B/8111B Family PCI-E Gigab
    it Ethernet NIC (NDIS 6.20)
    Физический адрес. . . . . . . . . : 00-1D-92-2C-23-02
    DHCP включен. . . . . . . . . . . : Да
    Автонастройка включена. . . . . . : Да
    Локальный IPv6-адрес канала . . . : fe80::b9aa:b87b:89ea:fcdd%11(Основной)
    IPv4-адрес. . . . . . . . . . . . : 10.1.3.42(Основной)
    Маска подсети . . . . . . . . . . : 255.255.0.0
    Аренда получена. . . . . . . . . . : 17 октября 2009 г. 17:37:10
    Срок аренды истекает. . . . . . . . . . : 18 октября 2009 г. 17:37:09
    Основной шлюз. . . . . . . . . : fe80::f88b:9485:52cd:caaf%11
    10.1.0.2
    DHCP-сервер. . . . . . . . . . . : 172.16.2.2
    IAID DHCPv6 . . . . . . . . . . . : 234888594
    DUID клиента DHCPv6 . . . . . . . : 00-01-00-01-12-43-2B-71-00-1D-92-2C-23-02
    DNS-серверы. . . . . . . . . . . : 172.16.2.2
    Основной WINS-сервер. . . . . . . : 172.16.2.2
    NetBios через TCP/IP. . . . . . . . : Включен
    Туннельный адаптер Reusable Microsoft 6To4 Adapter:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Адаптер Microsoft 6to4 #2
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    Туннельный адаптер Reusable ISATAP Interface {543B8BBE-84D2-471B-B8FB-F73600B4A8
    2B}:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Адаптер Microsoft ISATAP #2
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    Туннельный адаптер Подключение по локальной сети* 5:
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    IPv6-адрес. . . . . . . . . . . . : 2001:0:4137:9e50:2846:3ccb:a434:4de5(Осно
    вной)
    Локальный IPv6-адрес канала . . . : fe80::2846:3ccb:a434:4de5%13(Основной)
    Основной шлюз. . . . . . . . . :
    NetBios через TCP/IP. . . . . . . . : Отключен
    Туннельный адаптер 6TO4 Adapter:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Адаптер Microsoft 6to4
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    Туннельный адаптер isatap.mannet.lan:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . : mannet.lan
    Описание. . . . . . . . . . . . . : Адаптер Microsoft ISATAP #3
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    Туннельный адаптер isatap.{AE6B314F-94BA-478F-8751-74DEB5AB1888}:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Адаптер Microsoft ISATAP
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    Туннельный адаптер Подключение по локальной сети*:
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Адаптер Microsoft 6to4 #3
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    IPv6-адрес. . . . . . . . . . . . : 2002:5bcb:b21a::5bcb:b21a(Основной)
    Основной шлюз. . . . . . . . . : 2002:c058:6301::c058:6301
    DNS-серверы. . . . . . . . . . . : 91.190.68.2
    91.203.177.4
    NetBios через TCP/IP. . . . . . . . : Отключен
    Туннельный адаптер isatap.{8B513FFA-4355-406F-B999-1701EE42D5B9}:
    Состояние среды. . . . . . . . : Среда передачи недоступна.
    DNS-суффикс подключения . . . . . :
    Описание. . . . . . . . . . . . . : Адаптер Microsoft ISATAP #4
    Физический адрес. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP включен. . . . . . . . . . . : Нет
    Автонастройка включена. . . . . . : Да
    3. 
    4. without privider's cable:
    4. with provider's cable:

  • Photosho cs4 - problem with filter liquify and gallery

    Hello averydoby, when i try to open the filters liquify and the gallery filters happens that before you open takes 10 minutes to load and when you open the program takes any action carried out for 2-3 minutes. The problem essentially is that charge too.
    I own a compute macbook pro with 512 mb video card and 2 gb of ram, I have also tried to use the filters with images of a few kb but the same thing happens.
    Someone knows what could be the problem?
    Thanks to all

    I asked because I had the same problem with PS CS2 and mac OS 10.2.8 on a 2 x 1Ghz mac.
    (adbobe level 3 Support was able to reproduce the error but there was no solution)
    I don't have the this Problem neither with PS CS4 nor PS CS2 on a mac pro (early 2008) running mac os 10.5.6 anymore.
    I was just curious if I 'd have an idea to solve this problem.

  • Since upgrade to ios6 l have been having problem with wifi connection and connecting to App Store and iTunes store

    Q since upgrade to iOS6 l have been having problem with wifi connection and getting into App Store and itunes

    Saw this on another post.
    Applecare Senior Advisor Txx Bxxx (I have his contact info in an email he just sent) just confirmed with me that the problem people are having with the App Store not loading is an apple issue with there servers, ITS NOT YOUR IPAD so don't go restoring it!   It's not happening to everyone however but they are looking into it, its really hit or miss.
    In the meantime ...........
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
    ~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Problems with syncing music and podcast to iPod

    hey guys, i'm having a problem with the podcast and music on my iPod. i don't know why all my podcast is showing up in my music folder. is that anyway that i can correct that problem?
    i just want to hear my music randomly without listening to any of my podcast at all.
    thx in advance!!!!
    3.4 Dual Core, 2gig DDR2 677MHZ, Geforce 7950 GX2   Windows XP Pro  

    http://discussions.apple.com/message.jspa?messageID=4189835#4189835

  • Problem with Address Book and Exchange

    Hello,
    I have a little problem with Address Book and Microsoft Exchange 2003. I am able to connect to Outlook Web Access via Safari without problem. I see my contacts. Unfortunately when I setup everything needed in Address Book preferences (Synchronize with Exchange) the contacts didn't show in my Address Book. Strange thing is that no error is generated. can someone please help me what I am doing wrong ? Thanks in advance.

    My suggestion is that you consider using Microsoft Entourage. For Exchange users on a Mac, Entourage is by far the best option. The down side is, you need to buy Microsoft Office 2004 to get Entourage, but your employer might own a site license, in which case, Office 2004 might not cost you anything.

  • Toshiba sattelite pro ( SPM30 ) problem with black screen and white cursor

    I have a toshiba SPM30 from a friend and I couldn't succed to resolve the problem with black screen and white cursor.I can enter in bios using F2 and I can use F12 but is not booting, I have some CD and DVD with Win Xp but it seeams that is not booting.I've traied to change the order in boot order: first CD/DVD and after HDD but still is not working...I saw that a HDD I can see details about it but at CD/DVD I can't see...I think that the CD/DVD is not working( but I can see the light and hear the sounds when I put a bootable CD or DVD)...Please, if someoane can help me......( byt the way I've traied to remove the bios battery and still is not working...)

    Try f8 and try the repair your computer options
    This explains advanced start up options:
    http://windows.microsoft.com/en-us/windows/advanced-startup-options-including-safe-mode#1TC=windows-...
    This explains start up repair:
    http://windows.microsoft.com/en-us/windows/startup-repair-faq#1TC=windows-7
    A system disc can be used for these repair options also, in your case if the DVD drive is not working you can use an external dvd drive if you have one.
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

  • What is the problem with native dynamic sql when counting rows in all table

    what is the problem with native dynamic sql when counting rows in all table?Giving an error "table or view does not exist". Thanks.
    DECLARE
    v_sql_string varchar2(1000);
    v_no_of_rows number;
    BEGIN
    for i in ( select table_name from all_tables )
    loop
    v_sql_string := ' select count(1) from ' || i.table_name;
    dbms_output.put_line( v_sql_string );
    --execute immediate v_sql_string into v_no_of_rows;
    end loop;
    END;

    Usually your problem can be described with 'Who cares'. I mean, for what reason do you do this? I doubt that there's a business need to get 100 % accurate answers for this. Normally such things are used to get a picture about the growth of data.
    Personally I would prefer to have up-to-date statistics for all tables and just query the number of rows from there. Sufficient for me in < 99 % of all cases.
    Just my $ .02...

  • Flash Player 10, strange problem with emdedded fonts and movieclips

    Hello, developers! I have a big problem with font embedding
    and I can not debug it myself. So I need you help.
    I' ve done a simple list of attached movieclips with
    textfields inside them, with embedded fonts. I have no problem with
    flash player 9 in order to see the list, but in flash player 10 I
    can't see it. The font is very common, Arial actually so you can
    test it very easily. I am using a font symbol in the library, a
    class and an xml file for my data.
    Also you can see it online in (if you have flash player 10
    you can't see a thing)
    http://www.forestonfire.com//research/flash/fontproblem/index.html
    I have compiled the file as an exe projector in order to see
    it as I do in flash player 9
    http://www.forestonfire.com//research/flash/fontproblem/fontinflash9.zip
    I have zipped also the source code in order to compile it
    yourself.
    http://www.forestonfire.com/research/flash/fontproblem/fontembedded.zip
    and the same example without embedded fonts (I have the same
    problem there so perchaps are not the fonts)
    http://www.forestonfire.com/research/flash/fontproblem/fontnotembed.zip
    Please, check it and tell me if there is a solution
    available. Thank you in advance.

    I've included also a much more simple example without the xml
    and the font symbol, only the class and a movieclip from the
    library, but I can't still see it on flash player 10
    http://www.forestonfire.com/research/flash/fontproblem/simplyfied.zip
    I have no clue about this problem.

  • Problems with Customer Service AND unexplained charges!

    I've been with Verizon for I-don't-know-how-many years, and through the years you are bound to have a few problems here and there but some of the problems are just ridiculous! It's also the same reocurring problem!!!!!!!!!!!!!!!! I was with Alltel first, before it was bought out by Verizon. The years I was with Alltel, I didn't have near as many problems. It seems EVERY time I do the smallest change or something to my phone or bill, I get a ridiculous amount of charges that I was NOT aware of, nor told about... EVEN IF I ask "So this isn't going to change my bill, or there will not be any unexpected/unexplained charges that I don't know about?"... BUT not matter how many times I ask... and NO matter how many times I am told "no"... there always is. For example.... last year, I updated and signed a new 2 year contract and purchased the first Driod. Before, my 30 day warranty was up, I was having problems with my Driod, and decided to send it in and get a new one. Before I did this.. I called customer service to make sure there would be no interuption in my bill, and there wouldn't be any unexpect charges, and there would be no difference in anything. I was told there was not, and once I recieved my new phone, just send it in and nothing would be changed. Of course, when I get my bill.. I see I was charged $500 for the new phone. It was explained to me that my credit card was reimbursed (which I never check that card, because I never used it expect to purchase the phone) and that I was recharged for the new phone, since it was a new phone. So I had to fork out the $500 (on top of my bill) and then wait months to get the $100 rebate card. Months after that, I "assumed liablity of my line" because I was on a plan with my family. I decided to have my own line, so I "assumed liability." I was not told that when I did that, I "renewed" my contract date. So I just added 6 more months to my 2 year contract. Was NOT told about that! Then again...... I was recently having problems with my Driod (the screen went black and would not come back on.) I had to turn on an OLD motorola razor, so I would not be without a phone for two days while I was waiting on my phone to come in. As soon as my phone came in, I had my Droid turned back on. I recieved my bill recently, and my bill was $200 over what it normally should be.... so I called in... apparently, when I had my phone replaced, they dropped off my data package and when I recieved my replacement driod, they never put it back on. So I was being charged for alllll my data usage... again I was NOT told about this. I wasn't even aware that they had dropped off my data package, and when/where did they get the authority to do that??? These are just a FEW of the problems that I have had.................................
    Does anyone have these reoccuring problems!?

    I understand that my bill can be viewed online, and I do view it fairly regularly, so if there are any unexplained charges, I can call Verizon asap. The problem does not come from me not understanding my bill, but from customer service. I have been with Verizon for a very long time, and it is a continuing problem. Where did Verizon get the 'OK' to drop my data package off my plan? Who authorized that?
    After calling Verizon and trying to find out the problem, the gentleman told me that when I activated on old phone while I was waiting on my new Droid to arrive, my data package was dropped off and I "should" have been told about that. When I reactiviated my new Droid, I "should" have called and had them restart my data package. I was not aware that when you activate an old phone that data plan is taken off your plan. In all my years of having cell phones, I never make two years with one phone. I have always, at one point, had to turn on an old phone, and my data package has NEVER changed. Why would I have my data package dropped and why would I have to call Verizon to have it restarted. I would never know to do that unless I was TOLD that my data packaged HAD to be re-added when I recieved my new phone, but I was never told of that.
    All of that is beside the point, the point is, Verizon was never given the authorization to change my plan. Never. My bill was taken care of and readjusted, and I am thankful for that. It does not change the fact it is always a hassle with Verizon Customer Service and I am always the one having to PROVE that I am not at fault, or that I was NEVER told of certian things. EVERY TIME I HAVE CALLED CUSTOMER SERVICE, I AM TOLD "I'M SORRY, THEY SHOULD HAVE TOLD YOU THAT."
    "they should" does not help my bill with the extra armount of charges.

  • Problems with dropped calls and no reception on Samsung Continuum

    My mother and I both purchased a Samsung Continuum in late March 2011, and have experienced the same problems with the phone.  The device drops at least 2-3 calls per day, often on the same conversation; we have not found that location or time of day makes a difference.  The phone freezes up frequently, even if no apps are running in the background.  We lose our 3G network reception frequently, and cannot access our texts, emails, or the internet.  The screen saver kicks in even when we are actively dialing a number, or typing in a text message.  The overall performance of the phone is also poor, and it is quite slow much of the time.
    We have raised this issue several times with a representative at one of the Verizon stores, but he states that he can find no problem with the phone, and that these issues may not be covered under our insurance plan.  None of my friends with non-Samsung phones are having the same problems with phone reception and performance.  I am aggravated enough with these issues that I am considering reactivating my old Blackberry, which worked like a charm.
    I am not upset that my phone has not been updated to Android 2.2.  I just want the phone to perform as stated, and not fail at its primary function:  making and receiving phone calls.  I am not certain if these problems originate with the phone, Verizon, or Samsung, nor do I care.  I just want to resolve these issues as soon as possible, or I will have to look at other alternatives.
    Thank you.

    If this doesn't work...now what??? I have a useless $400 plus piece of unreliable junk. My Motorola Razor was ions more reliable than this phone...very, very sad but true.
    What carrier were you using with the Razor? AT&T? Same area?
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

Maybe you are looking for