question of textboxfield custom OS 6.0

Hello

I did a (editfield) textboxfield custom which has the background image. It works fine until os5.0 but OS 6.0, I'm superimposed image problem when scrolling text in the editfield. Can someone help me please?

protected void paintBackground(Graphics g) {
  super.paintBackground(g);

  g.drawBitmap(getHorizontalScroll(), getVerticalScroll(), managerWidth, managerHeight, draw, 0, 0);
}

Tags: BlackBerry Developers

Similar Questions

  • Question about action customized Windows install

    Hello

    We must decide whether to use the DLL and the VBScript in the custom action.  I know to run a custom action, the user requires administrator on the local computer.  Just amazing DLL and VBScript require different privileges to run.  A reference link would be appreciated.

    Thank you much in advance.

    Puyo

    Hi Puyopuy,

    I understand you want to learn about Windows Installer with VBScript executing in the custom action. I'll be happy to help you with this problem.

    It is better suited for the IT audience Pro on MSDN. Please ask your question in the MSDN Support Forum. You can follow the link to your question:
    http://social.msdn.Microsoft.com/forums/en-us/categories

    For reference:

    Windows errors install 2738 and 2739 with Script Custom Action
    http://blogs.msdn.com/b/heaths/archive/2007/05/31/Windows-Installer-errors-2738-and-2739-with-script-custom-actions.aspx

    To do: Important this section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:
    How to back up and restore the registry in Windows?
     
    I hope it helps. If you have problems in the future, please let us know. We will be happy to help you.
  • Questions about Failver customer and rapid failover

    have some questions about customer and quick Faiolver of Oracle Database HA failover. Before asking these questions, I want to explain my environment. Here are the details.



    -We have two physical locations called "ABC" and "PQR".
    -ABC is the main site.
    -PQR is the backup site.
    -In ABC, we have the database to Oracle RAC (11.2.0.2) with two nodes.
    -In the PQR, we have only one stand-alone server (11.2.0.2) database with ASM. This isn't a RAC.
    -Data Guard has been configured between ABC and PQR and it works as expected.
    -Please note that we have a license for Active Data Guard.
    -We have products of Oracle Identity Management to ABC and PQR and they will use the RAC database as a primary database that is in the CBA.
    -We have not yet set up a Data Guard Broker.

    We want to achieve under objectives:


    Objective 1:
    -------

    Whenever primary CARS down completely, standby database becomes a primary database AUTOMATICALLY and it should allow the read/write operation.
    I guess it's called 'Fast Failover'. Please let me know if I'm wrong.

    Issues related to the:

    -To do this, I need to set up Data Guard Broker so that this standy database becomes primary when CARS go down completely with a power outage, planned or not.
    -Let's say that CARS falls does completely, how long take Data Guard Broker do standby db as primary.
    -What the client application / which is already connected to the CARS.
    -Let's DB standby became as primary and after some time if RAC comes back, keep data automatically becomes the primary role of RAC?


    Objective 2:
    --------

    As I explained above, all products Oracle IDM and applications to speak to the RAC database, what do know only on the RAC database, which is the main. They are not aware of the pending database.

    -Whenever a client session is underway with the primary database of CARS if CARS completely falls down, we would like to wait until the client session should get transferred datbase standby without losing session information. However before that happens, standby database should become primary because the client session can perform write operations.

    -Whenever a client attempts to connect to the primary CARS and assumes that the cab is completely down, we would like to expect from any client connections should are transferred pending database.
    However before that happens, standby database should become primary because the client session can perform write operations.

    According to my knowledge, above scenarios are called "client failver." Please let me know if I'm wrong.



    Issues related to the:
    ----------

    1. Please throw some light to reach above features.
    2. According to my understanding, before customer failover happens, fast failover expected has already occurred and ensure should get the switch for the main role. I guess that all this happens thanks to timeout settings. What are those.


    Could you please help?

    Thank you

    I didn't say that clients cannot reconnect automatically when primary fails: I meant that client sessions can generally reconnect and also keep any session state.

    Yes, they can reconnect but only to keep the session state for a SELECT statement. It is also possible with Data Guard, not only in the CARS I wrote: here's a demo with 10 g
    http://uhesse.WordPress.com/2009/08/19/connect-time-failover-transparent-application-failover-for-Data-Guard/.
    What is not possible is to maintain a session state: (INSERT/UPDATE/DELETE) pending transactions must be cancelled.

    Edited by: P. Forstmann on Dec 8. 2011 20:30

  • stupid question on the custom java client

    Hello

    I came through the api and the user guide and found no answer to my question - if there is a way of
    connect a java client customized without having all this stuff of Cache coherence from the customer site? I mean the following:

    If you write a client that makes CacheFactory.getCache ("VirtualCache") as described in
    user documents, then it looks like you automatically start a node of coherence on the customer site

    I tried a few example to check that a "customer" who is CacheFactory.getCache ("VirtualCache") and
    com.tangosol.net.DefaultCacheServer executed separately. They share a configuration and function in replication mode:

    (1) customer makes data in cache and ends - DefaultCacheServer still has that data
    (2) customer is running again and waits, then puts an end to DefaultCacheServer - client keeps data
    (3) DefaultCacheServer started and customer cancels - DefaultCacheServer keeps data

    So it seems that customer fully plays a role of node replication consistency. How to avoid this? Suppose I want
    Just plug my client node consistency running on the remote host.

    Published by: user10381422 on 27.10.2008 09:01

    Hello

    You are right - consistency, by default, is not a concept of clients and servers, a few knots. It works in peer-to-peer mode of mesh, which means that all the nodes that join the cluster fully participates in all cluster, including cluster services cached. However, there are situations this behavior is not desirable:

    1. when clients are transient in nature (desktop applications that come and go, for example), because they trigger the replication of data unnecessary and/or repartitioning when they join both when they leave the group.

    2. in Wan environments, network latency will cause consistency consider remote nodes does not and kicked out of the bunch, who has once again as a result unnecessary replication and/or data repartitioning and increases network traffic.

    To deal with situations like these, coherence provides two features that can help you achieve what you're looking for:

    1. local storage

    By default, all nodes are considered as "storage nodes", which means that they fully participate in the cluster and are responsible for their share of the data storage. However, it is possible to change this by using '-Dtangosol.coherence.distributed.localstorage = false' system property. However, this works for partitioned/distributed caches and not replicated caches, so it wouldn't be useful in your case.

    2. extend * TCP

    Extend * TCP allows you to get what you want even with replicated caches, because it separates completely the customers of the bunch. You can find detailed information on how to configure Extend * TCP in a Guide of the user to http://wiki.tangosol.com/display/COH34UG/Coherence+Extend, but the basic idea is that you configure one or more servers within the cluster proxy to accept client connections and configure clients to connect to these proxy servers. All communications between the client and the server occurs over the reliable TCP/IP connection, and the client never really joined the cluster.

    The most beautiful thing is that all this is done by configuration, which means that your client code will not have to change a little bit.

    HTH,

    ALEKS

  • Question of width custom list.

    listItemComponents: [
                        ListItemComponent {
                            type: "item"
                            Container {
                                leftMargin: 5.0
                                topMargin: 5.0
                                layout: StackLayout {
                                    orientation: LayoutOrientation.TopToBottom
                                }
                                horizontalAlignment: HorizontalAlignment.Fill
                                Container {
                                    layout: StackLayout {
                                        orientation: LayoutOrientation.LeftToRight
                                    }
                                    horizontalAlignment: HorizontalAlignment.Fill
                                    Label {
                                        text: ListItemData.agencyName
    
                                        // Apply a text style to create a title-sized font
                                        // with normal weight
                                        multiline: true
                                        horizontalAlignment: HorizontalAlignment.Fill
                                        textStyle {
                                            base: SystemDefaults.TextStyles.TitleText
                                            fontWeight: FontWeight.Normal
                                        }
                                    }
                                    ImageView {
                                        imageSource: ListItemData.statusIcon
                                        verticalAlignment: VerticalAlignment.Center
                                        horizontalAlignment: HorizontalAlignment.Right
                                        preferredWidth: 32.0
                                    }
                                }
                                ProgressIndicator {
                                    fromValue: 100
                                    toValue: 0
                                    value: 50
                                    verticalAlignment: VerticalAlignment.Center
                                    horizontalAlignment: HorizontalAlignment.Left
                                }
                            }
                        }
                    ]
    

    Here, I have a custom list box. With a label on the left, a picture/icon on the right and a progress bar as to each item in the list.

    The problem is, I can't get the icon/image aligned right, it follows right after the text.

    That is to say.

    | This is a test X |

    | ------------------------------- |

    what I want

    | This is a test X |

    | ------------------------------- |

    Maybe my layout, I tried to add the horizontal fill everywhere, no change.

    You can fill a container with the background color to make sure that the external container takes the entire available width.

    If it doesn't, try setting preferredWidth (Infinity)

    HorizontalAlignment.Right won't work in LeftToRight in cause of a bug.

    There are several workarounds:

    -Use DockLayout. This is not very practical because can overlap, but for short strings (menus, etc), it can work. Here is an example in C++:

    http://supportforums.BlackBerry.com/T5/Cascades-development/list-item-image-size/m-p/2064721#M9602

    -Insert an empty container with .spaceQuota (1) between the left and right elements. Divide the right margin of the element left and the left margin of the right item in two (because the average container won't let not their margins overlap).

    PS Fill does not seem to work for StackLayout. Use rather preferredWidth/Height (Infinity).

  • Print questions after the custom section changes using a printed code

    Hello

    We have problems with the order of the custom section. Please find below bottom

    1. we have a custom code to print sections customized specification associated with the material specifications

    2 this custom code developed 2.5 years ago and absolutely perfect job

    3. this custom code actually built XML sections customized the associated specification which is transformed into PDF using XSLT by extending the print features.

    Recently, we changed the order custom sections appear in hardware specifications. Once the order gets modified with the help of Admin-> Data-> custom section order Custom. New order got reflected in all the technical features without any problem

    But the custom sections do not print in the same order

    When we studied, we found the following

    1. printing order is fine when using the default print template provided by oracle

    2. printing order is not very well when we use our custom print template that uses our custom code developed 2.5 years back

    When we have investigated further, we discovered that any new record is created once the order has changed to print very well in the same order using our custom code

    But the old specifications that were created before the implementation of the custom section control do not print in the same order

    Debug us the solution, with the old card and discovered that code is return data in the old order and not in the order indicated in the specification

    We tried all the properties we could and noting works as expected for the old specifications and new specifications get the order appropriate under the new defined order

    None of the sub properties get the data in the correct order in the old specifications

    ICollection customSections = ingSpec.ExtendedAttributeSections.OrderedModifiableValues;

    ICollection customSections = ingSpec.ExtendedAttributeSections.OrderedValues;

    ICollection customSections = ingSpec.ExtendedAttributeSections.ModifiableValues;

    Can you please let us know if this is a bug in the product? or is it possible that we can do our custom code works for the old specifications?

    Can you also let us know which table stores information about order of custom hardware specifications section?

    Thank you

    Mani

    Sounds like the same issue post to https://community.oracle.com/thread/3804143.

    Thank you

    Pourbaix

  • Question about custom components States

    Hi all.

    I have a question that I can't find an answer to any place.

    I created a screen edition, with two States, "view" and "Edit".  For 'view', the fields are not editable.  If the user presses the button "Edit", all fields become editable, as 'Edit' passes to the State of 'Edit' and all the fields to say "editable.edit = 'true'". "  It works very well.

    My question is a custom component that is contained in this form.  There is also two States, with the same names.  I want to spend the custom also editing mode component.  But I can't seem to do.  If I access the field by "component.state ='edit" "", which generates an error.

    This must be a fairly common thing to do.  I'll use this custom as well as screens component (I hope) so I don't want to lose him if I can avoid it.

    Or maybe that I approach the problem correctly?

    Any help or insight would be appreciated.

    Thank you

    Tom

    You should be able to define the State through the currentState property:

    If your custom component has all the same States as the Application then you may find it useful to link the current component State to the current state of the application:

  • Return policy for the laptop. 2 questions please.

    Hello world!

    I bought some computers laptops and desktops from HP over the years but never had back none of them until my recent order.  I recently placed an order on the laptop but I found a better computer hp laptop at bestbuy, so I called and cancelled the order (only after 15 hours of the order) but HP CS rep would not let me Cancel.  She told me to just leave it delivered and return it once I received the laptop.  HP will pay for return shipping charges and give me a FULL REFUND; which means that they don't give me the refund less shipping fees.  I asked to confirm what she has told me that I will receive my full refund for my order and HP will send me a return shipping label at their cost.  If this is true what she told me, then HP has the best customer service out there.

    My question to anyone who has purchased and returned HP stuff is it is true about what the CS rep tells me?  Moreover, I get free shipping on my order if it makes a difference.  I pray for your opinion on this please.

    Thank you all for your time and happy thanksgiving to all!

    Micca1234

    See the following page HP Shopping "Returns and exchanges" on their return policy / exchange:

    Return exchange

    Exchange & return policy

    Return period

    We encourage you to try your products immediately so that if there is a problem, you can return them before the return deadline. We accept returns and exchanges up to 21 days after childbirth, except on open software box, printers Designjet Z2100 series, HP Color LaserJet CP6015dn printer, and gift cards (except where required by law). After the period of 21 days, you can get support for questions of HP customer service product.

    Credits

    Credit for Returns or exchanges is given when confirm us the receipt of the goods. Please be aware that your financial institution may take 5 to 7 business days to process your credit and let the account in your account.

    Refunds

    Tax (if any) is refunded with returns.

    Original shipping and handling are not refundable.

    When you return the items in a group of items purchased, the remaining amount spent maybe is more eligible for a discount, you may have received (for example, for gifts with purchase, free gift, purchase in quantity). If this is the case, the discount is subtracted the price paid for the returned item. To receive a full refund, all items in the original purchase must be returned.

  • Customer service terrible to try to unblock the account via Live Chat

    Several months ago, my account has been hijacked by someone in Taiwan. Skype credit has been purchased and the pirate air started making phone calls. Fortunately, I took this activity from the outset, with recipes by e-mail and has managed to avoid further abuse with a change of password quickly. I followed its use for a while, it's been a few months now and all seems well again. However, it seems that my account is suspended. Not much, given a reasonable answer I reported the diversion of Service account customer, and it seems easy to fix via Live Chat. Boy I was wrong.

    I spent twenty minutes the cat in the round with a customer service representative, who insisted that I provide responses to the seven questions, the right answers, one of which is simply not possible for me to answer.

    Seventh question request I appoint FIVE people who are on my list of contacts. My problem is that my contact list is only three people deep. I'll be honest, I mostly don't use Skype to Facebook Chat integration, any other conatcts are always added to the length of my conversation with them. I literally can't answer this question correctly. Customer service telling me that without this response that they cannot help me is not useful at all, they react so robotic when I ask how to work around the problem that my contact list contains three names, claiming again to answer questions accurately will result in a permanent suspension of my account. Is not helpful in the slightest.

    In addition, they also want the month and year on my initial sign of Skype services? I have no idea. I use Skype for years, since it is in BETA, if my memory is good. I tried to search my profile, but I find this information? I mean who remembers the exact date they joined Gmail? Or Facebook? Sign up for web services all the time and I certainly never write down details about the dates for future safety violations.

    It is very obvious that my account has been hacked, my position jumped from the United Kingdom to Taiwan with a sudden flurry of activity before a change of password that brought to a halt and a return to the usual use of the service. Isn't there a more sympathetic way customer to deal with this problem asking me to remember the details of years ago?

    Thanks to the hump, I thought I should post an update on this situation, because of the fact that I finally found a fix.

    I recently signed up for Office 365. One of the advantages of this service is free Skype minutes each month. Another is access to a higher level of customer support from Microsoft themselves, which allows you to bypass the REPS of Skype once I mentioned my questions to a representative of Microsoft, they have solved my problems, literally within sixty seconds, without the need for a ridiculous of identity verification amount, once I reminded them how much to invest in their services on a monthly basis. They really could have more useful to maintain my subscription. So finally after more than 18 months, I once more full access to my Skype account.

    In short, Skype customer service is terrible and the script function, while Microsoft is inhabited by beings real humans who you can have a conversation with, reason with. If possible, seek out them, especially if you are a customer who pays for anything (Xbox Live, Office 365, etc...).

  • A6000 - anyone with a load of a6000, communication, customer service issue?

    My a6000 bought late in October 2015. There are a few bodies around and several batteries so the port micro-USB or cord used maybe 3 or 4 times. The kit was removed for the second time since my purchase when planning for a period of time. A small software update was in order. The unit would not connect to what anyone, nor make light for the load of come on.

    It was decided that I would contact the support of text that I couldn't use the phone. They were unable to process my application for a new cord of text / live chat. Am online somewhere else for telephone conversations with support to acquire a micro usb cable. My mind began to stir as if all goes well, we could imagine.

    During the convesation with telephone support I clearly state, that the question does not need to support the problem is isolated as I have several Sony products. Please, just send a micro USB cord the cord has been used only a few times and none no longer works. Then I heard, "which is not covered by the warranty." This is the case. (Laugh while wondering where a missing Sony since I bought my first Walkman) Everything in the kit is covered (the fact is in black and white) as time passes and then told me to prove when I bought the camera. My immediate exclamation has been that it has been made a month before I bought it (keep in mind this salesperson already knows my family name and that the product is registered and where it was purchased)

    Now here we have that I am connected to a database of the conversation disappointed by Sony. I am told that I will get my cord once they get a copy of the invoice. (the product is Sony - the serial number must be placed on the record of the manufacturing date) I can't wait to see how, "send me yours and I'll send you my own experience will.»

    I'll keep this simple it seems that I'm dragged in the mud to replace a defective micro USB cord? Of course, which is the backbone of the loading unit and communication (if you're a basic user)? Sony expressly warns not to implement a cord that is not come with the kit so why the first question of the customer service would be, "have you tried another cord after I carefully explained other cords are not recommended.

    Still awaiting a response to an email sent to the customer service almost 2 days ago...

    My last post was filed in a compromised box of a language that I don't speak...

    It could get better and better. Stay tuned.

    AWAKENING OF SONY

    The cable works.

  • Frustrations with Adobe Stock 'Customer Service '.

    This position was created in desperation as really seems them to be no other outlet for support when dealing with Adobe Stock. I am located in Melbourne, Australia, and the only way to contact the Helpdesk of Adobe Stock is done by the service "Instant Messaging".  However, to this day, I spent more than 6 hours repeat myself and my questions to the customer that a) don't understand not what I speak not b) only provide scripted responses to my questions and c) bounce around me, to other agents of customer service that ends up telling me that my problem was refitted There is nothing else they can help me with and I'll be in touch by email within 2-3 business days. Then, when I received an email a week later it has nothing to do with my question and the process begins again.

    Help, please. I've been a customer of Adobe software products for more than 10 years and I'm not like if it comes to the level of support that I receive from your company.

    Here is a brief history of my problem. If anyone could be of additional help for me it would be greatly appreciated.

    -J' have subscribed to the Club Photo Dollar prior to its acquisition by Adobe and really the service provided.

    -When my subscription with DPC finished I took 'your first month for free' offer with Adobe Stock because it seemed to be the next offers the best for stock photography.

    -In my first month of using this service, I used 10 images available in my subscription and was looking to buy more. Previously using the DPC service you offer you an amount of credits you must add to your subscription (once you monthly allowance was exhausted) and purchase which was fantastic. I use a lot of stock photography, so it is a common place for me. However, after using all the images that is available to me through my subscription to Adobe stock I couldn't add the extra credit in my account and buy only the images one by one. Which would be perfect, but since I am in Australia, I would be charged fees for international transaction for each image purchased on my allowance which for me is crazy and my interaction with the Adobe Stock customer service began...

    -After taking a lot of time to explain my situation to the service representative and still not get anywhere as it seemed like adding extra credit was not a feature that Adobe Stock has the offer, I learned if I had already subscribed to CPD, I was entitled to a reduced monthly subscription. As I had signed Adobe stock with another email address of my CPD membership this offer has been applied to my account.

    -J' expressly asked, if I was able to transfer my account using the same login as my former DPC subscription to take advantage of this offer and we told him 'NO,' I have to create a new account based on the same login as the old DPC members and cancel my existing subscription. I also specifically asked that I stay a client Adobe stock I undertake any kind of cancellation fees? I was told 'NO '.

    -So, I did as suggested, created a new Adobe Stock subscription based on the same as my old and weak DPC membership login and behold, I could enjoy a lower monthly subscription. fantastic news.

    - Then I cancelled the original Adobe Stock composition, I created without problem until I noticed that I had been charged of membership $180 cancellation fee!

    -I just spent an hour on the time trying to talk to someone because, they told me I should not this tax and that, due to the fact, I continue my subscription with Adobe Stock just under a different user name I should not be held responsible for the cancellation, but had absolutely no chance. No one understands what I'm trying to say, it takes up to 10 minutes in some cases has received a response through the 'cat' portal and then finally my question is 'up' and I you will receive an email within 2-3 business days. This has happened twice and after a week I received correspondence from Adobe Stock but email only said: ' Chris, we would like to inform you that you will be able to buy at THE $ 59.99 / month "has absolutely nothing to do with my question.

    First of all, I don't think I should have to pay the cancellation fee that I am in fact pursuing a membership with Adobe Stock and was informed that I woudnt be charged. If for any reason any that should be charged, I would prefer that my subscription was restored and I saw the contract of the year and have actually 2 accounts rather than having to pay $180 for nothing!

    If someone, anyone... could you please help me with this issue, it would be greatly appreciated. Being able to talk to someone who has made a greater understanding of the services associated with this feature of Adobe products would be amazing. I realize that it may not be the fault of representatives for customer service but outsourcing Adobe Stock that their call centre in India is really not useful that just does not seem to have any understanding of ther product other than scripted information they have before them. I'd be happy to wait as long as it took just to talk to someone who had a real understanding of my issue and eventually get some sort of resolution.

    Help, please. It comes from really should be a very simple thing to fix.

    Thanks in advance

    Hello

    I'm sorry to hear that you had a frustrating experience with our support team and focus on the problems you mention.

    I will also refund cancellation fees.

    Kind regards

    Bev

  • Lost a Custom Action - CS6

    I use the same custom action file to insert my signature in pictures for more than two years now.  Whenever I started Photoshop, it's here.  I guess I should have saved it.  However, following a recent BSOD episode where Photoshop reset itself to its default state, my custom action is no longer there.

    I looked in C:\program files\adobe\Adobe Photoshop CS6 (64 bit) \Presets\Actions and only the stock nine actions are there.  I went to a recent full backup of before the crash and the Actions folder is the same as what I see now.

    Questions: Is my custom action elsewhere in Photoshop?  If Photoshop could see my action for two years, he must be somewhere.  Y at - it somewhere that I can recover from the backup file?

    Thanks for reading and I hope to help.

    Gerry

    If it is everywhere where it would be in the settings folder in the actions of psp file. Since you blue screened, this file can be messed with PS resetting is auto. If you had an older version of PS with the same action, copy this file to psp versions in your current version of PS.

    Photoshop CS6 Photoshop CS6\Adobe C:\Users\[user]\AppData\Roaming\Adobe\Adobe settings

  • VMware service manager - query about the customer approval task

    Hi team,

    I have a question about the customer approval task. In the workflow, there are two approval tasks: customer approval task (shown available for common to approve client portal) and the task (see sm9 for officer to approve). We wonder when opening a session a request and attach an object, the object could be shown on the customer approval task in the Web page of the portal? And how?

    Any help would be appreciated. Thank you in advance.

    Hello

    You can easily change the approval control model (LiteApprovalReview.htm) by adding a code of extra table row in the table of information request:

    
        
            

    Objects

    Then you should be able to display the list of attachments of application in the customer portal approval form.

    Is a little more difficult for the approver to open the attachment - it must have permissions to view the query. You can do this by configuring the roles system (preferred method) or by changing the query .

    Gytis

  • Question of Pinterest

    Hello

    I just received the following question from a customer:

    "I tried the function of Pinterest (very cool). I made the stumbled upon an article, no problem. But when I click to open the PIN link in Pinterest to my iPhone or my iPad, it does not work. He said: "we're sorry, this content is not available on the browser." Do you know what is happening with this? »

    Don't know how to react. Anyone know about this?

    Darin

    Hi Darin,

    Looks like your client is to see the Web landing page. Currently, the Web Viewer does not currently support the Safari Mobile, so a landing page is displayed. If there is an app available for the device, the landing page will provide the user interface for the user to get the app (iTunes link) or open content in App. When no application is available, you will receive the message.

    We worked on the new Web Viewer support to improve the experience of "getting content shared" on the iPad. You will hear more in the coming weeks.

    Kristy

  • Fill in the blank Question

    Hello

    Does anyone know if there is a way to make several correct answers on this kind of issue?

    I use Adobe Captivate 6 and here is a screenshot of the issue:

    Fillinblank.JPG

    Users only see the letter Ls and need to type in the rest of the text.  I want the correct marking issue regardless of what order they type the words, but currently this is justified if they also get the right order, so if someone types in libraries last it is marked wrong.  Anyone have any ideas on the best way to ask this question, so that they have to give the three characteristics, they receive a clue but do not have to get them in the right order?

    Your help is greatly appreciated

    Hello

    You could add three possibilities to each word, and the question will be marked as correct if they meet the three words, not in the sequence.

    However: If the learner is entered twice or three times the same (correct) Word, it will be also marked as correct. And it's certainly not what you want. I'm afraid that you will need the advanced actions to verify that the entries are different. And that means you'll have to create slides, a question that is customized using BER. Have you ever used advanced actions?

    Lilybiri

Maybe you are looking for

  • Open message window is too big

    When I double-click on a message, it opens in a new window, which is what I want. The problem is too big for one of my two monitors. I can manually move the window with a tedious combination of keystrokes on the keyboard / mouse clicks, which would a

  • Solution Center said problem as the printer is disabled

    Since the upgrade to 8.1 Windows solution Center says that my printer is disabled. This isn't the case, that my printer is enabled and works well. I deleted and reinstalled the printer drivers and also Center solutions lenovo, but he always tells me

  • NI1433 trigger camerlink Cam

    Hello What to do | : the ni1433 should trigger a camera above the line of CC1. Are there examples in the web? I can set the camera to switch with the command CC1 source, but what VI is used?

  • Another problem with sound

    Hi all! As you can see, I have a sound problem. I searched a lot, but not found any solution. I do an application 'easy' with native SDK, that play a sound when you press the buttons. I used the MMR and DSL, and each of them does not work as I expect

  • iPad can not find photosmart liked

    I can print with laptop (windows xp), Ican print with the iPad I have OS 4.x, but cannot print with iPad II OS 5.x or iPhone 3gs OS 5.x simply, they do not find the printer (but the fine worki on same wifi)