Help with navigation step by step, handlers and train

HI, im trying to use a train with a navigationbar, to make a relationship between 3 pages in a step by step process, but I can`t configure the links in the next and previous buttons, if it`s posible, could any body help me ?
to relate this
<uix:train selectedIndex="1">
<uix:contents>
<uix:link text="Conceptos Cobros"
destination="cobros1.jsp"/>
<uix:link text="Formas de Pago"
destination="cobros2.jsp"/>
<uix:link text="Impresisn"
destination="cobros3.jsp"/>
</uix:contents>
</uix:train>
and this
<uix:pageButtonBar>
<uix:contents>
<uix:navigationBar minValue="1" maxValue="3" value="2" />
</uix:contents>
</uix:pageButtonBar>
and change between the asp pages.

Navigation bars do not let you set the destination for previous and next
separately. Rather, they deliver an event to the specified destination
(or to the destination on the form, if you're using formSubmitted).
See the navigationBar documentation for the details on the
parameters of this event.

Similar Messages

  • Need help with navigation within a spark list...

    hey guys, so in my application when you click on a list item, it opens up an image, and along with the image a few buttons are created dynamically...
    the image and the url/labels for the dynamic buttons is provided through an xml/xmlListCollection.
    what i need help with is the url or more specifically when you click on one of these dynamic buttons it needs to navigate me to another part of an list or display a certain set of images that is not in my spark list...
    please let me know if this makes no sence
    the code i have is
    <code>
        [Bindable] private var menuXml:XML;
        [Bindable] private var imgList:XMLListCollection = new XMLListCollection();
        [Bindable] private var navControl:XMLListCollection = new XMLListCollection();
        [Bindable] private var fullList:XMLListCollection = new XMLListCollection();
        private var returnedXml:XMLListCollection = new XMLListCollection();
        private var myXmlSource:XML = new XML();
        //[Bindable] private var xmlReturn:Object;
        private var currImage:int = 0;
        //public var userOpProv:XMLListCollection = new XMLListCollection();
        //private var troubleShootProvider:XMLListCollection = new XMLListCollection();
        private function myXml_resultHandeler(event:ResultEvent):void{
            userOptionProvider.source = event.result.apx32.userOptions.children();
            troubleShootProvider.source = event.result.apx32.troubleShooting.children();
            fullList.source = event.result.apx32.children();
            returnedXml.source = event.result[0].children();
            myXmlSource = event.result[0];
        private function myXml_faultHandler(event:FaultEvent):void{
            Alert.show("Error loading XML");
            Alert.show(event.fault.message);
        private function app_creationComplete(event:FlexEvent):void{
            userOptions.scroller.setStyle("horizontalScrollPolicy", ScrollPolicy.OFF);
            myXml.send();
            //trouble.scroller.setStyle("horizontalScrollPolicy", ScrollPolicy.OFF);
            myXml = new HTTPService();
            myXml.url = "modules/apx32/apx32TroubleshootingXml.xml";
            myXml.resultFormat = "e4x";
            myXml.addEventListener(ResultEvent.RESULT, myXml_resultHandeler);
            myXml.addEventListener(FaultEvent.FAULT, myXml_faultHandler);
            myXml.send();
        private function troubleShootChange(event:IndexChangeEvent):void{
            dynamicButtons.removeAllElements();
            navControl.source = troubleShootProvider[event.newIndex].children();
            currImage = 0;
            imgList.source = troubleShootProvider[event.newIndex].images.children();
            definition.source = imgList[currImage].@url;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        dynamicButtons.addElement(newButton);
            //var isMultiPage:String = navControl[2]["multiPages"];
            //trace(isMultiPage);
            //        if(isMultiPage){
            if(currImage >= imgList.length - 1){
                next.visible = false;
                back.visible = false;
            else{
                back.visible = false;
                next.visible = true;
        private function customButtonPressed(event:Event):void{
            if(imgList[currImage].button.@changeTo != ""){
        private function userOptionsChange(event:IndexChangeEvent):void{
            dynamicButtons.removeAllElements();
            navControl.source = userOptionProvider[event.newIndex].children();
            currImage = 0;
            imgList.source = userOptionProvider[event.newIndex].images.children();
            definition.source = imgList[currImage].@url;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        newButton.addEventListener(MouseEvent.MOUSE_DOWN, customButtonPressed);
                        dynamicButtons.addElement(newButton);
            var isMultiPage:String = navControl[2]["multiPages"];
            if(isMultiPage == "true"){
                if(navControl[2]["next"] == "NEXT STEP"){
                    navContainer.x = 630;
                else{
                    navContainer.x = 640;
                next.label = navControl[2]["next"];
                back.label = navControl[2]["back"];
            if(currImage >= imgList.length - 1){
                next.visible = false;
                back.visible = false;
            else{
                back.visible = false;
                next.visible = true;
        private function nextClickHandler(event:MouseEvent):void{
            currImage += 1;
            dynamicButtons.removeAllElements();
            if(currImage >= imgList.length-1){
                currImage = imgList.length - 1;
                //next.visible = false;
                next.label = "YOU'RE DONE";
            else
                next.label = navControl[2]["next"];
            back.visible = true;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        dynamicButtons.addElement(newButton);
            definition.source = imgList[currImage].@url;
        private function backClickHandler(event:MouseEvent):void{
            currImage -= 1;
            dynamicButtons.removeAllElements();
            if(currImage == 0){
                back.visible = false;
            next.visible = true;
            next.label = navControl[2]["next"];
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        dynamicButtons.addElement(newButton);
            definition.source = imgList[currImage].@url;
    </code>
    i have attached a copy of the xml that i have right now to this post for reference...
    any help will be greatly appretiated!!! i've been stuck on this problem for the last week and my project is due soon
    again thank you in advance...

    hey david... just nevermind my previous post... I was able to subclass a link button, so i now have two variables that get assigned to a link button,
    one is "tabId" <-- contains the information on which tab to swtich to, and the second is, "changeTo"... this contans the label name which it needs to switch to
    I'm just stuck on how to change my selected item in my tabNavigator/list
    the code i have right now is
        private function customButtonPressed(event:Event):void{
            if(event.currentTarget.tabId == "troubleShooting"){
                for each(var item:Object in troubleShootProvider){
                    if(item.@label == event.currentTarget.changeTo){
        private function userOptionsChange(event:IndexChangeEvent):void{
            dynamicButtons.removeAllElements();
            navControl.source = userOptionProvider[event.newIndex].children();
            currImage = 0;
            imgList.source = userOptionProvider[event.newIndex].images.children();
            definition.source = imgList[currImage].@url;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:customLinkButton = new customLinkButton();
                        newButton.label = item.@name;
                        newButton.tabId = item.@tab;
                        newButton.changeTo = item.@changeTo;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        newButton.addEventListener(MouseEvent.MOUSE_DOWN, customButtonPressed);
                        dynamicButtons.addElement(newButton);
            var isMultiPage:String = navControl[2]["multiPages"];
            var videoPresent:String = navControl[1]["videoPresent"];
            if(videoPresent == "true"){
                if(isMultiPage != "true"){
                    navContainer.x = 825;
            if(isMultiPage == "true"){
                if(navControl[2]["next"] == "NEXT STEP"){
                    navContainer.x = 630;
                else{
                    navContainer.x = 640;
                next.label = navControl[2]["next"];
                back.label = navControl[2]["back"];
            if(currImage >= imgList.length - 1){
                next.visible = false;
                back.visible = false;
            else{
                back.visible = false;
                next.visible = true;
    as you know, my xml gets divided into two saperate xmllistcollections one is the userOptionProvider, and the troubleshootingProvider
    as is in the following xml
    <mx:TabNavigator id="tabNav" width="275" tabStyleName="tabStyle" fontWeight="bold" height="400" paddingTop="0"
                             tabWidth="137.5" creationPolicy="all" borderVisible="false">
                <mx:VBox label="USER OPTIONS" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
                    <s:List id="userOptions" width="100%" height="100%" itemRenderer="modules.apx32.myComponents.listRenderer"
                            borderVisible="false" contentBackgroundColor="#e9e9e9"
                            change="userOptionsChange(event)">
                        <s:dataProvider>
                            <s:XMLListCollection id="userOptionProvider" />
                        </s:dataProvider>
                    </s:List>
                </mx:VBox>
                <mx:VBox label="TROUBLESHOOTING">
                    <s:List id="trouble" width="100%" height="100%" itemRenderer="modules.apx32.myComponents.listRenderer"
                            borderAlpha="0" borderVisible="false" contentBackgroundColor="#e9e9e9"
                            change="troubleShootChange(event)">
                        <s:dataProvider>
                            <s:XMLListCollection id="troubleShootProvider" />
                        </s:dataProvider>
                    </s:List>
                </mx:VBox>
            </mx:TabNavigator>
    Im having some trouble updating my list... basically change to the troubleshooting tab, and then select the one that i need...
    hopefully that makes sence...

  • Help with PageMaker 7.0, Transparent Backgrounds, and Feathering in Photoshop CS5

    Hi all,
    I am hoping  someone here can help me out with a problem that I've been having for  more than a week that I can't seem to figure out and it's driving me  crazy.
    I have a friend who's trying to put together a  graphical instruction manual using PageMaker 7.0.  My friend would like  to have the borders on the pictures in the manual be softened and the  background needs to be transparent, because each page in the manual will  have a background watermark picture.
    I am running into a  number of problems.  I have been using the feather and contrast options  under Refine Edges in Photoshop CS5.  While the picture looks and prints  great from Photoshop, as soon as I save the picture to a file format  that I can import into Word and then PageMaker (more on this step  below), the feathering only either becomes white instead of transparent  (the rest of the transparent part of the picture is still fine) or the  feathering becomes horribly pixelated.
    I am not sure which  step in the process is causing the picture to degrade.  The two file  formats that seem to at least retain the transparency through the  importing process are PNG and TIFF, albeit horribly pixelated.  Could  using these file formats cause the quality issue that I am describing?   Could it be transferring it through Word first, as described below?
    Is  there are any other methods that one can use in Photoshop CS5 to soften  the border of a picture other than feathering that may work better for  these purposes.
    Regarding the use of Word to retain the  transparency into PageMaker... are there any better ways of  accomplishing this?  In order for the transparency to be retained, I  need to add a text box, send it behind the picture, group it together,  and copy the group over in order to retain the transparency using Word.   This, needless to say, is a horribly huge pain in the ***.  Any  suggestions that could cut down the number of steps would be  appreciated.
    Any help with this would be greatly appreciated.  Thanks!

    Pagemaker does support transparency for placed files, just not
    partial transparency like drop shadows or feathering that
    would result in partial transparency.
    You can place an object into pagemaker without getting the
    white background by making a clipping path of the object
    and then saving the file as tiff file. Then you would use
    File>Place in pagemaker.
    You could also put a background behind your object that matches the page in pagemaker
    or use photoshop to make the layout.
    More info on clipping paths
    http://help.adobe.com/en_US/photoshop/cs/using/WS08719555-224E-48db-AC64-FC21F4B87689a.htm l
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7713a.h tml
    MTSTUNER

  • Need Help with Navigation for an Online Art Gallery

    I am trying to create a web site for an online art gallery.
    I am new to DW8 and I have been reading several books,
    forums, etc trying to figure out how to build a simple and elegant
    navigation system.
    I have successfully built simple navigation using a frame set
    as the index.html page. I have successfully built and incorporated
    the art gallery using Photo Assist (Photo Assist is a DW8 extension
    that creates photo albums using AJAX). The gallery.html page built
    with Photo Assist has thumbnail browsing and a slideshow mechanism.
    Photo Assist also uses CSS that I have been able to modify for my
    personal tastes in terms of creating a simple and elegant user
    interface for the gallery section of the web site.
    My index.html frame set consists of navFrame.html and
    mainDisplayFrame.html pages. I created a navigation button (using
    Fireworks 8) that links the gallery.html as its source and targets
    mainDisplayframe.html.
    My plan was to just add about 5 or 6 more navigation buttons
    and target the mainDisplayFrame.html from each navigation button to
    display some static information.I think the site looks fairly good
    except that the frame set requires scroll bars when browsed with
    800 x 600 screen resolutions. I thought that I could just use
    'layers' instead of a frame set, but there is not a "target"
    mechanism when usings layers.
    At the end of the day, I would prefer to just use one web
    page for displaying the navigation and all of my other web pages
    including the gallery.html page. I think I have the right idea but
    I can't seem to get a good handle on a navigation system that is
    better than a frame set.
    My online art gallery that is under construction is:
    http://www.andrew.cmu.edu/user/tburak/
    Photo Assist 1.0.1 DW extension URL is:
    http://www.webassist.com/professional/products/productdetails.asp?PID=108
    Please note that I am not a web designer that has deep
    knowledge of HTML, CSS, javascript, server side stuff, etc. I do
    know a little bit about C++ and Java programming and a little bit
    about html tags, and also a little bit about how CSS works. Beyond
    that, I am pretty much a point and click type of web page builder.
    My real expertise is more or less on photographing and digitizing
    the art.
    I should mention that I eventually want to build in PayPal
    eCommerce if at all possible, but I realize I might not have the
    skills to do so.
    Any help, suggestions and comments are very much
    appreciated.

    [discussion moved to LiveCycle Forms forum.]

  • Need help with my iTunes on iPhone 5 and Macbook Pro

    Need help with my iPhone 5 and my Macbook Pro.  I was purchased some music on itunes at my mac. Some reason I deleted those music from both on Mac and iPhone 5.  Today, I went to my iPhone iTunes store inside of iCloud to redownload my puchased. But those song won't able to sync back to my iTunes library on my Mac.  Can anyone help me with that ??....

    You've posted to the iTunes Match forum, which your question does not appear to be related to. You'll get better support responses by posting to either the iTunes for Mac or iTunes for Windows forum. Which ever is more appropriate for your situation.

  • Need help with pictures on an external HDD and windows labtop to Ipad3

    Hallo everybody!
    This week (I finally) bought an Ipad 3 and an Apple TV!
    For the time being I still have a windows labtop and an external HDD full with photo's.
    The ICloud software for windows has been installed because I would like to stream the pictures from this external HDD to my Ipad and then ofcourse on my flatscreen TV (via Apple TV). And ofcourse back, when I have taken a photo or a movie on the Ipad 3.
    I would appreciate some help with the following questions:
    do I have add all pictures from the HDD into a new map on the windows labtop. So that via Icloud the contain could become 'in the cloud'.
    or do I have to add all the pictures from the HDD into the Itunes map on the windows labtop.
    I have connected the Ipad to the windows labtop and via Itunes I have synchroniced a lot of pictures to the Ipad. I asume these are copies? And is it possible to remove them from the Ipad, because it will take a lot of memory (currently already 35 GB from the 64 GB).
    Well I hope somebody could help me.
    Many thanks in advance!
    Ronald from the Netherland

    I just found out that ICloud isen't really a storage place for photo's. Just a passing throw station to your other devices.

  • Help with  songs files transfer on iPod and iTouch?

    Hey guys.
    I just got an itouch recently and I need help with something but I don't really know how to describe it so I'll try my best to put it in a way for you guys to understand. Is there an option where when you plug in the iTouch into your computer, but you don't want to transfer the songs/mp3 files you already have originally on your iPod to be automatically transfer over to your itouch? Everytime when I connect the iTouch to computer it would just copy the mp3 files over to it butI don't really want that. I just want the mp3 file to stay on the iPod only.
    Thank you, QuTran

    Does it get cut off on the iPod or in iTunes (or both)?
    Does it always happen with the same songs?
    The problem may be related to the program that was used to encode those files. Do a +Get Info+ on a few of the affected songs and see if there is anything in common where is says +Encoded with+ on the Summary tab.

  • Help with two scripts - Mounting remote DMG and Checking which network I'm connected to

    Hey guys, I need some help with two separate scripts:
    1. The first script I'm trying to create to mount a DMG stored remotely on another Mac using an AppleScript or shell script. Using the following:
    set cmd to "hdiutil mount 'afp://username:[email protected]/Lion/Users/username/Desktop/Test.sparseim age'"
    do shell script cmd
    results in the following error:
    error "hdiutil: mount failed - not recognized" number 1
    I'm not very experienced regarding AppleScript or using hdiutil, could somebody point out what's wrong with my script?
    2. The second script I'm working on to try and essentially prevent the 'Could Not Find Server' Finder dialog when a network mount is unavailable. I guess what I'd like it to do is detect which network I'm connected to, and if I'm connected to the correct network, then mount the shares, otherwise just fail silently without any errors. From the searching I've done, using try statements should do this, but they do not, and I'm still presented with an error dialog after the server cannot be found.
    Does anybody have any suggestions on this script? Also, I've seen some tips regarding detecting which wireless network the Mac is connected to, which could work, but what about when connected via Ethernet?
    Thanks!

    Edit: I need to clarify on my first script request:
    I need to mount the DMG on the remote Mac, not on the Mac I'm running the script from.

  • Help with calculated column formula- combine strings and convert to date

    In my list (SharePoint Server 2013) I have:
    'Invoiced Month' column, type of choice (strings with names of months- January, February, March..., December)
    'Year' column, single line of text (e.g. 2012, 2013, 2014)
    1. I need to create a calculated column which will return combined value of the columns above, but in DATE format e.g. 'Sep-2013' or '01-Sep-2013'.
    I then use that newly created calculated column to do this: http://iwillsharemypoint.blogspot.in/2012/03/sharepoint-list-view-of-current-month.html
    I am rubbish with formulas, can I have some help with my problem please?

    Hi,
    Use the formula, I have tested by creating Months column with choice, Year column as numeric and Calculated column as DateTime returned.
    =DATE(Year,IF([Months]="January", 1,IF([Months]="February",2,IF([Months]="March",3,IF([Months]="April",4,IF([Months]="May",5,IF([Months]="June",6,IF([Months]="July",7,IF([Months]="August",8,IF([Months]="September",9,IF([Months]="October",10,IF([Months]="November",11,12))))))))))),1)
    Before applying the formula few things need to be noted.
    DATE(YEAR, MONTH,DAY) will accepts three parameters all should be type numeric(integer).
    Create the Year column of type numeric
    Create the calculated column of type "DateTime" to return as date
    Please mark it answered, if your problem resolved or helpful.

  • Need help with Soundblaster Live! 5.1 and King Theatre 5.1 speake

    Hi,
    First time ost and need some help.
    Ok i bought a nice Soundblaster Li've! 5. sound card around a month ago. 2 days ago i bought myself som speakers "Kingtheatre 5." I doubt it any of you have ever heard of this brand, i bought speakers from local shop. Ok this is where the problems start. When i try to connect the speakers i can only ever get 4 out of 5 satelites to work and the subwoofer. If i change the wiring around, i will only ever have 4 speakers working at a time. Can anyone help me with the connecting. In the back of the subwoofer i have 3 cables, one says "Centre/subwoofer" the other says "Input | surround L/R" with the word Input on the side of it, and the last one says "Front L/R(Stereo)". At the back of my soundcard i have the following colour plug ins (sorry im only 4, im not used to technical terms) Ok from left to right black, green,pink(mic),blue and a orange/brownie colour. Can anyone help with the pluging it part.
    Cheers, sorry about the long post.

    Dooda,
    If you can post a link for the layout diagram of your speaker system then it will be great.
    From your description, you could try this. Connect the audio cable from subwoofer "Front L/R(Stereo)" to Green jack on the sound card, "Input | surround L/R" to the Black jack and "Centre/subwoofer" to the Orange jack on the sound card.
    Do a speaker test via the Creative Surround Mixer application.
    Jason

  • Help with Photo Library (first steps on mac)

    Hi Everyone
    First of all let me tell you i'm giving my very first steps con Mac after years on Windows. Although everything is way better than expected, i'm having troubles managing photos between my iPhone 5S, iCloud and my brand new MacBook Air.
    For a few months I've been syncing my iPhone photos with iCloud keeping full versions on the cloud optimising iPhone storage. Now i'm using iPhoto on my Mac but i find no way of view my whole iCloud library. Just a few photos (the last ones I took). When i log on to icloud.com i see all the pictures.
    Please, somebody help me!!!
    On the other hand, i'd like to know how to backup the photo on an external HD. Is there an automatic way of doing this?
    Thanks in advance for all the help!

    Connect your iPhone to your Mac with it's USB cable and launch iPhoto.  There you can import all of the photos on your phone that are not already in your iPhoto Library.
    However, the iCloud Photos Library is not visible on the MBA.  It won't be until the new Photos app for the Mac is released sometime next spring. 
    Do you have MyPhotoStream enabled on your Mac and on the iPhone?
    On your iPhone enable these settings:
    On your Mac in iPhoto set the iCloud preferences to this:
    Also in your System/iCloud preference pane on your Mac make  sure you're signed in to your iCloud account, you've checked the Photo Stream checkbox and and under the Options button these are checked:

  • Help with TCP/IP communication via Teststand and Labview

    Hello,
    I am trying to create a sequence of tests and need to communicate between LabView vi's and another program over a TCP connection. When I have the sequence hard coded in LabView everything works fine, but my goal is to break up the sequence into steps and execute it in Teststand. Currently, the working LabView code sets up a listener, and the other program establishes the connection. Once the connection is established, I use the Read/Write to TCP blocks for the programs to send messages back and forth.
    What I first tried in Teststand is to create a simple vi under Setup, that creates the listener, then the user is prompted to run the script on the other program to establish the connection. On the vi, I clicked on "create -> indicator" for the connection ID, then wired it as an output intending to use it in other vi's in the main part of the sequence.
    The main (and very strange) problem is that TestStand will crash before I even get a chance to execute the sequence. Starting with a blank sequence, I open up an "Action," then "Browse for vi" on the Module tab and once I select that simple vi mentioned above, Teststand crashes before it's even loaded properly. A screenshot of the error, the error report (which mentions that the problem is with seqedit.exe), as well as the vi in question is attached.
    This crash happens every single time I try to load the vi into the sequence. It seems to load ok on our NI machine running Windows XP, but it keeps on crashing on my pc (also running XP, i5 processor 1.85Gb RAM).
    Is the problem with the LabView code, Teststand or my pc? I've tried re-installing Teststand but to no avail.
    Any help is appreciated, and thank you in advance,
    Sorin
    Attachments:
    error.JPG ‏194 KB
    error report.txt.txt ‏111 KB
    open_connection.vi ‏12 KB

    Sorin,
    It looks like you are using TS 4.2.1 with LV 2010. Can you please check if you have the following patchs installed on your machine
    - http://digital.ni.com/public.nsf/allkb/7D728B70F167CE088625776E00582C7B?OpenDocument
    You will need to install both the TS 4.2.1 and LV 2010 F2 patch.
    Regards
    Anand Jain
    National Instruments

  • Help with a BB Playbook App- strings and variables

    hello, i hope ive come to the right place for help.
    let me give u some background:
    im developing an app for the blackberry playbook, which in fact just came out today! yay. so anyway, im making an app that will decode fringe glyphs, from the show "fringe." unless u watch it, u prob wouldnt get it, but everyso often they show a symbol in the show, and by the end of the show, they have shown about 5-6 of them. there is a code to them, and each distinc symbol represents a letter. so when u have recognized all 5 symbols, u are able to spell a word, that typically correlates to that epidsode of the show. So, for my app, i have a wall of tiles, with groups of the symbols. underneath this group of tiles, i have 5 blank spaces.
    So, i want a user to be able to watch the show, and as he/she sees a symbol, finds it on the tablet app, taps it, and the corresponding letter will appear in the 1st blank space, and so on, until it spells out an entire word.
    I am relatively new to the programming, so i was hoping that someone could possibly provide me with a list of major steps on how to provide this app. basically, what methods do u use to make each of these things happen. and what is the practical/efficient way of course. So, of course my main question is how i can link each image to a letter with then displays along the bottom, but i have no idea what i would need or how i would do this. Reminder: i am using actionscritpt, if that makes any difference.
    Thank you, and please ask any questions necessary for u to help me.
    PS.
    along with selecting images for the letters, i would also like it to be almost like a toggle button. if that makes any sense, but for now, id like to figure out wat i have stated above.

    heres a screenshot of what i have so far. nothing really except kind of the layout and pics. what i need now is user interaction... lol

  • Need help with downloading adobe photoshop elements 11 and premiere elements 11.

      i already have my product keys from the internet, but when i go to the download page and push on the download button, nothing happens. im running windows 8

    clear your adobe.com cookies, or try another browser, or:
    if you follow all 7 steps you can dl a trial here:  http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l
    and activate with your serial.
    if you have a problem dl'g, you didn't follow all 7 steps.  the most common error involves failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).

  • Help with downloading cs4,  I accidently unplugged and lost connection while downloading, do I erase files and start over?

    I was downloading cs4 and lost connection, I thaught maybe when i re-connected it would pick up where it left off, but it didnt and the registration screen froze.  Im sorta lost on what to do now, erase all files and try starting over?

    yes, delete partially loaded files.
    restart your dl.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3 | 2.7(win),2.7(mac)
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

Maybe you are looking for

  • Error While terminating the employee through API

    Hello Group, I am facing the error while terminating the employee through standard api. The error is "You cannot create an entry past the termination rule date" The element entry I have are type "Recurring" and Termination at "Final Close" I have gon

  • CCMS configuration question - more than one sapccmsr agent on one server

    Hello all, this might be a newbie question, please excuse: We have several SAP systems installed on AIX in several LPARs. SAP aplication server and SAP database is always located in different LPARs, but one LPAR can share application server of severa

  • Multipart request is garbled in case of binary file (excel)

    Hi, I am having problem in uploading file in our portal application. Setup: We have a 10g portal server (10.1.0.4). Authentication is done using coreid. We have a http apache server hosted on a different machine with webgate plugin protecting all the

  • Unicode line-drawing characters - possible Java bug?

    Hi all, I am trying to draw a box using line drawing characters in UTF-8. I make the UTF-8 box file in Microsoft Word where it looks aligned. However, when I run my Java program to display the box in a JTextArea, it is all out of alignment like below

  • Performance counters for SQL database

    I have this need to carry out a performance test on our SQL database. What are the counters that I need to check and are there any tools that would assist me on this? mayooran99