Links in between 2 Nodes in the Interactive Scripts is not working ,

Hi, Experts
I saw u r reply's Regarding, Interactive Scripts, I felt happy thats Somebody is here with some expertise ,
Here my problem is , we are developing the scripts, we are attching the nodes in the Scripts with Arrow line , But here for Some Scripts that link is working, it means once u click on the node it is going to next level and for Some perticular Scripts this link is not working , in webclient Script navigation is not possible, it mean the link is not picking up ,
Can u help in this issue ,
if , it neccessary i will send the Scrpit XML file to U , so that it is easy to investigate,
i did redesign the Script for lot of time , i think this is happening Because OF JAVA , or ITS error in the Server,
Can u please suggest me in this , it is urgent ..........
Regards
Sreelatha

I solved it this way:
I solved it like this: In the Form1_Load event i did:
SetToLevel(treeViewMS1.Nodes, 1);
In my case i wanted it to begin by default in level 1.
Then in the numericupdown1 changed value event:
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
SetToLevel(treeViewMS1.Nodes, (int)numericUpDown1.Value);
Then the method SetToLevel:
void SetToLevel(TreeNodeCollection nodes, int level)
foreach (TreeNode node in nodes)
node.Collapse(false);
ExpandToLevel(nodes, level);
And last the method EXpandToLevel:
void ExpandToLevel(TreeNodeCollection nodes, int level)
if (level > 0)
foreach (TreeNode node in nodes)
node.Expand();
ExpandToLevel(node.Nodes, level -1);
And now it's working perfect like i wanted it to work. When changing the numericupdown value it's changing the node tree expand/collapse levels.

Similar Messages

  • I am trying to reinstall Flash CS4 professional as the action script is not working but now I am getting an error: 2 message when I use the original CD to try and reinstall

    I can't get the original disk to work on a reinstall.  I get the message
    AdobeColorCommonSetRGB
    Error:
    Error 2.
    I teach a class using this program on Macintosh computers running 10.9.5 and the action script is not working.  It will work on any program designed using the 10.8 but if you design any animation on 10.9.5 the action script will not work for the buttons

    You would have to manually delete the color profiles in question... Run the cleaner tool and see if it gets you started.
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

  • How to set up the interaction between InDesign CS6 8.0 and Photoshop CS 6 - if Photoshop is installed and the 64 and 32-bit?? default InDesign refers to the 64-bit version of Photoshop and scripts do not work.

    how to set up the interaction between InDesign CS6 8.0 and Photoshop CS 6 - if Photoshop is installed and the 64 and 32-bit?? default InDesign refers to the 64-bit version of Photoshop and scripts do not work.

    Nice of you to point it out here as I at least don’t follow Mr.Nash’s blog regularly.

  • Filling Activity fields in the Interactive Script in the IC WinClient

    Hi Experts
    My question is how to pass parameters between two workspaces. More specifically between the workspace of the Interactive Script WinClient and the workspace Activity.
    The thing is that after i finish navigating in the script, i need to call an activity, which is working good. However what i want is to fill some fields of the activity i am calling with information coming from the script
    Can anyone help me on this issue?.
    Thanks

    Hi Shwetha,
    Lina is right SAP supports JRE 1.4.2, I also had similar problem however please see what version of JRE are you using. If you are using anything below JRE 1.4.2 you could probably upgrade to JRE 1.4.2. If you are using anything above JRE1.4.2 you may not be able to downgrade. In that case you could probabaly upgrade to 1.6.0. I could do all the functions in Interactive Script Editor with 1.6.0 except assigning Script to Script profile and you could do that alternatively through SPRO. One of my colleague had JRE 1.5 and was facing some issues. Secondly, Interactive Script Editor takes a while to populate therefore be a bit patient.
    To know which version of Java is installed on your local machine Click on Tools -> Sun Java Console.
    Regards,
    Deepak

  • Filling Activity fields from the Interactive Script WinClient

    Hi Experts,
    I am working with Interactive Scripting (CRMM_TM_SCRIPT) and I already defined my interactive script. I am also creating Activities after I finish with the Script in order to register a case. I am doing this by defining an Action Type CIC-AB which calls an Action Box in the Interaction Center WinClient. In the Action field I define the name of the Activity I want to call from the Action Box of the Interaction Center.
    When the Agent receives a call, he navigates in the Interactive Script in order to clasify the case he is treating. At the end of the Script, the case needs to be register following the clasification made by the Agent, and that’s why we are calling an Activity. The thing is that we don’t want the Agent to fill again the information he just defined in the Script in the Activiy, so we want to fill certain fields of the Activiy I am calling with Information of the Interactive Script I used before, in order to save time to the Agent that Register the Case.
    Can anyome shed some light on this issue?
    Thanks to everyone.

    Alberto
    You can create an activity.i.e., you can create an Order from the Interactive Script if you already created the Script structurethen follow the below steps
    I think it would be helpful
    Procedure: 
    T-Code:  EWFC0
    Path: SPROIMGCustomer Relationship ManagementCustomer Interaction CenterVisible ComponentsAction Box SettingsDefine Configuration Profile for Action Box.
    1. Choose F4 help to select one of the Action Box profiles you have created and you want to adapt and choose change.
    2. Mark the Action box Configuration and create a new Action Box Group by choosing Create transaction group.
    Enter a group ID, description and icon for the new transaction group and choose Continue.
    3. Mark the new transaction group and create a new Action Box transaction by choosing Create transaction.
    4. Enter a transaction ID.
    5. Enter a Transaction Definition section, select Workspace.
    6. In the Transaction Definition section, select Workspace.
    Two additional fields will appear.
    7 Choose F4 in the Workspace field to select the Script.
    8. Choose F4 in the profile field to select the Interactive Scripting profile that you created in the previous steps above.
    9. Enter a Slot Name if desired.
    10. Choose Continue.
    You are automatically taken to the Maintain Data Flow screen .No data flow parameters need to be maintained for the Interactive Scripting workspace.
    11. Choose Back.
    12 Choose Save.
    Note:  Since Only Workspace of this type can be open at once, you will need to close the Automatically Created Interactive Scripting Workspace before launching the Interactive Scripting Action Box call.
    Regards
    Surendra

  • Changing layout size of the Interactive Script in the Appl. Area

    Hi Experts,
    I need to change the standard size of the layout of the interactive script WinClient in the Apppl. Area. The screen has more space to increase the layout of the view of the Interactive Script but i don't know how to make this change.
    Thanks for your help

    hi!
    create a variable window and write this code there
    /: POSITION XORIGIN '2' CM YORIGIN '10' CM
    /: SIZE WIDTH '18.05' CM HEIGHT '18' CM
    /: BOX FRAME 10 TW
    /: POSITION XORIGIN '2.05' CM YORIGIN '10.05' CM
    /: BOX WIDTH '18' CM HEIGHT '1' CM INTENSITY 15
    /: POSITION XORIGIN '3.5' CM YORIGIN '10' CM
    /: BOX FRAME 10 TW WIDTH '0' TW HEIGHT '18' CM
    /: POSITION XORIGIN '9.2' CM YORIGIN '10' CM
    /: BOX FRAME 10 TW WIDTH '0' TW HEIGHT '18' CM
    /: POSITION XORIGIN '11.5' CM YORIGIN '10' CM
    /: BOX FRAME 10 TW WIDTH '0' TW HEIGHT '18' CM
    then create a main window with same height and width as that of the varaible window (overlapping the variable window on to it).
    now on looping in the main table and displaying the data boxes will come it self....
    here the main window dimensions are
    MAIN 00 Main Window 2,00 CM 10,00 CM 18,00 CM 18,00 CM
    [then with the help of data element call the box
    /: BOX WIDTH '18' CM HEIGHT '1' CM FRAME 10 TW
    in loop where write_form is called....]
    u will get the box with the data printed in the form......
    keeping same for the variable window....
    and try it....
    this will be done....

  • Filling an Activity  from the Interactive Script  in  Interaction Center WC

    Hi Experts,
       I need to fill an activity from an Interactive Script in the Interaction Center WinClient.
       When i finish selecting in the script all the possible answers, i need to create an activity with information coming from the script. How can i make that possible?
    points rewarded
    thanks

    Alberto
    You can create an activity.i.e., you can create an Order from the Interactive Script if you already created the Script structurethen follow the below steps
    I think it would be helpful
    Procedure: 
    T-Code:  EWFC0
    Path: SPROIMGCustomer Relationship ManagementCustomer Interaction CenterVisible ComponentsAction Box SettingsDefine Configuration Profile for Action Box.
    1. Choose F4 help to select one of the Action Box profiles you have created and you want to adapt and choose change.
    2. Mark the Action box Configuration and create a new Action Box Group by choosing Create transaction group.
    Enter a group ID, description and icon for the new transaction group and choose Continue.
    3. Mark the new transaction group and create a new Action Box transaction by choosing Create transaction.
    4. Enter a transaction ID.
    5. Enter a Transaction Definition section, select Workspace.
    6. In the Transaction Definition section, select Workspace.
    Two additional fields will appear.
    7 Choose F4 in the Workspace field to select the Script.
    8. Choose F4 in the profile field to select the Interactive Scripting profile that you created in the previous steps above.
    9. Enter a Slot Name if desired.
    10. Choose Continue.
    You are automatically taken to the Maintain Data Flow screen .No data flow parameters need to be maintained for the Interactive Scripting workspace.
    11. Choose Back.
    12 Choose Save.
    Note:  Since Only Workspace of this type can be open at once, you will need to close the Automatically Created Interactive Scripting Workspace before launching the Interactive Scripting Action Box call.
    Regards
    Surendra

  • Automatically display the Interactive Scripting on WinClient's CIC

    Is it possible to automatically display the Interactive Scripting for the cic Agent?
    I only have one script so there's really no need for the agent to choose when he only has that option.
    I'm on CRM 4.
    Thanks in advance,
    V

    Hi Vitor,
    To show the Interactive Scripting ViewSet as the default Viewset for your IC profile you will need to do the following customizing step:
    IMG > CRM > IC WebClient > Define Inital ViewSets and Transactions
    Create a new entry for your profile and set the Initial View to ScriptViewSet
    The views for Interactiver Scripting itself (in CRM4) are JSP's located in the Java Stack of the CRM server and can not be maintained using the ABAP workbench, so if you want to launch a script by default you will need to "extend" the coding of the appropriate JSP

  • How do I find a previously passcode to link a wireless keyboard (Model A101urs6) to a Mac Power Book G4 running 10.5.8.  The keyboard was linked at one point in the past, but then not used.  When I am trying to hook it up now, it requires the passcode.

    How do I find a previously passcode to link a wireless keyboard (Model A101urs6) to a Mac Power Book G4 running 10.5.8.  The keyboard was linked at one point in the past, but then not used.  When I am trying to hook it up now, it requires the passcode.  Where can I find this, or is there a general number I can use?

    Hello, and welcome to Apple Support Communities!
    Try entering four zeroes.

  • HT1203 i have tried this 6+ times to "How to share music between different accounts on a single computer" on my wifes mac and can not get it to work!! On my PC no problem but on the MAC it will not work, follow the instructions to the T but no go????

    i have tried this 6+ times to "How to share music between different accounts on a single computer" on my wifes mac and can not get it to work!! On my PC no problem but on the MAC it will not work, follow the instructions to the T but no go????

    It is almost as if the program does not exist on my computer. If I search for it, the only thing that comes up is the installer. I cannot find it anywhere despite the fact I have installed it numerous times, uninstalled it and conducted a fresh install, and the Adobe website checks says that it is installed.

  • Creating a new OU and the login scripts don't work

    Goodday,
    We are running DSfW for almost a year and we never had to make a new OU but that time has come.
    When I make a new OU (with iManager or AD tools) the outcome is the same: The login scripts I make for the new OU will not execute within iManager.
    If I make a new (test)user of move an existing user (with or without a GW account) the login script is not executed.
    If I place a login script directly on the user it works.
    I've patched everything and is up-to-date.
    What is different on exisiting OU's and new OU's is that it's missing two attributes:
    ACL 2#entry#ou=...#loginScript
    ACL 2#entry#ou=...#printJobConfiguration
    Maybe this has nothing to do with it but the first one I was thinking maybe this is the problem.

    Originally Posted by preemeyer
    Goodday,
    We are running DSfW for almost a year and we never had to make a new OU but that time has come.
    When I make a new OU (with iManager or AD tools) the outcome is the same: The login scripts I make for the new OU will not execute within iManager.
    Can you please give the details of how you are specifying the login script. Is it using a GPO?
    Originally Posted by preemeyer
    If I make a new (test)user of move an existing user (with or without a GW account) the login script is not executed.
    If I place a login script directly on the user it works.
    Is it by specifying the script path in existing profile tab?
    Originally Posted by preemeyer
    I've patched everything and is up-to-date.
    What is different on exisiting OU's and new OU's is that it's missing two attributes:
    ACL 2#entry#ou=...#loginScript
    ACL 2#entry#ou=...#printJobConfiguration
    Maybe this has nothing to do with it but the first one I was thinking maybe this is the problem.
    Can you check if the container is samified, and samify it if it is not.
    domaincntrl --samify
    May not work, but can be tried.

  • Header links in the web template is not working

    Hi all,
    I have a created webtemplete in that, header links in the web template is not working. But individually header links. I am not why they are not working in webtemplete.
    guys please help for above situation.
    Thanks,
    James

    Hi Bob,
    There are many XML schema files for the data connection, I recommend to check if the references to the XML files have been changed to the new schema files in the manifest file.
    For example, if we create a data connection called GetUserProfileByName, then there will be one XML file and three XML schema files for the data connection.
    Please make sure that all the references are updated in the manifest file.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • TS3367 Hi, the FaceTime just did not work between my mom and I. It used to work weeks ago, but now it does not work after showing"connecting". I feel frustrated and try all the method I can think of. Still do not work. Hope u can help me. Thanks!

    Hi, the FaceTime just did not work between my mom and I. It used to work weeks ago, but now it does not work after showing"connecting". I feel frustrated and try all the method I can think of. Still do not work. Hope u can help me. Thanks!

    Was it just this one time?  Could be that you, or your mom, were experiencing network problems.  Try again at a later time.

  • The PageDirective script does not define the findServerBehaviors function

    We run 2 servers at work and both have sites with legacy ASP.
    We just upgraded to DW CS3 and now I get this error message when I
    make a new ASP VBScript page:
    quote:
    The PageDirective script does not define the
    findServerBehaviors function
    Any ideas why it would be throwing this message? It even does
    this with the default asp page code

    It just keeps coming...
    The Dynamic Checkbox script does not define the findServerBehaviors function.
    The Dynamic Radio script does not define the findServerBehaviors function.
    The MoveToFirst Record script does not define the findServerBehaviors function.
    While executing findServerBehaviors in DynamicData.htm a JavaScript error occurred.
    ... and numerous other errors: fill in the blank: "________ script does not define the findServerBehaviors function."
    Configuration file issue, maybe?

  • Sometimes when I open a link in a new tab, the new tab does not load the link.

    Sometimes when I open a link in a new tab, the new tab does not load the link. This seems to be random.
    Win 7 64
    FF 4.0.1

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for