Force -(FormUID) always Visible when ...

any one of SDKers know how to force the form contained user defined fields always visible when core form is loaded. For example If Form Invoice(133)load then Form -133 Visible.
Thx
-Hamdi-

Hi Hamdi,
I'd like to know which item event you use to activate '6913' menu.
Form_Load or Form_Activate?
If you don't mind can you give me a your source code?
Joanne
Message was edited by: Joanne Lee

Similar Messages

  • How can I force an "invisible" object to become "visible" when a numeric value is entered?

    So I’m trying to force an “invisible” subform to switch to “visible” when a numeric value greater than or equal to 22 is input into a numeric field.
    I can’t get the following javascript code to work properly with any event. I’ve tried the change, calculate, validate, events and a few more to no avail. The only event that kind of works with the javascript code I’m using is the validate event. When I input the code into the validateevent, the invisible subform becomes visible when an amount equal to or greater than 22 is entered, but when ANY amount is input into this field, an error message pops up that says “NumericField4 validation failed” and the user has to click “Ok” to get rid of the pop up box.
    if (this.rawValue <= 22) {
            Approval23.presence = "hidden";
    if (this.rawValue >= 23) {
                Approval23.presence ="visible";
     Here’s a link to my .pdf: http://www.filedropper.com/salgovform
    The object field that the javascript code is contained in is called: NumericField4 (a.k.a. New Job Grade)
    The subform that I want to become visible when a number greater than 22 is input into NumericField4, is called Approval23.
    I’ve based the javascript code I used on information I gathered from the following thread and associated .pdf . . .
    Thread:
    http://forums.adobe.com/message/1982919
    PDF in thread with the javascript code:
    http://forums.adobe.com/servlet/JiveServlet/download/1981437-8059/Sample_SW.pdf
    I’m pretty sure I’m just missing one little thing that’s throwing everything off!
    Any help would be GREATLY appreciated.

    Hi,
    The following works in the exit event of the numeric field, where the language is set to JavaScript:
    if (this.rawValue <= 22) {
         Approval23.presence = "hidden";
    else {
         Approval23.presence = "visible";
    Here is your form: https://acrobat.com/#d=3gRNt6WBY2bE0K7en4CnSA
    Hope that helps,
    Niall

  • Why am I always forced to upgrade Firefox when I don't want to?

    I asked this question once b4, & never got a response. Probably because Firefox sucks royally, & they're afraid to answer my question. I'm always forced to upgrade Firefox when I don't want to. I get this stupid little pop-up for 1-4 days saying the new version is available. I ignore it, & without warning upon starting up my computer, Firefox upgrades itself. First of all, I F'ING H8 THAT! Second of all, I WANT TO MAKE THE BLOODY CHOICE WHETHER OR NOT I WANT ANOTHER SUBSTANDARD FIREFOX UPGRADE!! The ONLY reason I stay w/Firefox is that IE sucks even more, & you can't play any Facebook games w/IE. Firefox dev's, I realize I'm just an insignificant user & you don't really care about any of us, but really, must you force us to upgrade? Hmmm, I may just move on over to Chrome.

    You can turn off automatic updates, for details see the "Configuring update options" section of this article - https://support.mozilla.com/kb/Updating+Firefox
    Turning off automatic updates in Chrome is not as easy, it involved editing the registry.

  • Buritto/Hero 4.5 (MobileApplication) Scrollbar always visible?

    I've tried for 3 to 4 days now...
    To make a scrollers scrollbar always visible.
    It seems to me extremely counterintuitive to make a scollbar not visible within a scroller that has (for example) a textarea in it.
    You can't see that the text goes beyond the viewport and should be scrolled. Usually a scrolls purpose is to help identify there is more to scroll to.
    Enough said there, making the scrollbar invisible or fade away is really bad (DESIGN Flaw).
    Trying to make it appear initially is ultimately currently impossible from what I can tell (BUG & DESIGN flaw).
    Don't recommend turning visiblity or alpha on. That was the first minute of four days no success.
    ScrollerPolicy is only about should it appear when the content is larger and that is also not the issue.
    You see for some backwards thinking reason the scroller only appears when your actually scrolling and then fades away when done.
    I did override to disable fade out potentially (not perfect example for animated sliding action).
    Well first I replaced the skin with something people can actually see too instead of the thin line of black on black. (using a spark skin not the default)
                import spark.skins.spark.VScrollBarSkin;
                public function init():void {
                    xtc.getTextFor(title, contentTextArea);
                    contentScroller.verticalScrollBar.setStyle("skinClass", Class(VScrollBarSkin));
                    contentScroller.verticalScrollBar.addEventListener(MouseEvent.MOUSE_UP, bringMeBackPlease);
                public function bringMeBackPlease(e:MouseEvent):void {
                    trace("bringMeBackPlease: " + e.type);
                    trace("MOUSE: " + e.localX + " " + e.localY);
                    var ai:AnimateInstance = contentScroller.verticalScrollBar.activeEffects[0];
                    if(ai != null) {
                        if(ai.animation != null) {
                            ai.animation.stop();
                            ai.animation = null;
                            contentScroller.verticalScrollBar.removeEventListener(MouseEvent.MOUSE_UP, bringMeBackPlease);
    Okay well that reminds me I totally replaced the skin with a Catylist built one two but this animated fade functionality resides clearly in the Scroller class I think.
    You'd possible be able to replace the Scroller class via Catylist but it only has a few simple objects to play with No textarea, no Scroller, etc.
    I couldm't find a different none mobile spark scroller that isn't disfunctional in this way (fadeing scrollbars).
    I even delved into using Effects to Fade it back
                //private var restoreSliderFade:Fade = new Fade();
    skipping code it did fade the dcroller to view but I could not also make the scrollbar fade back.
    I tried simulating drag operations, mousedown, move events etc. nohting can actually get the f!ng scrollbar to appear that I can find.
    It's rare I result to forums so I'm hopeful people at Adobe in development see this stuff and actually realize the need a boolean on the MobileApplication Scroller Class that is something like autohideScrollbars with a default of false.
    Please help ASAP anyone any work around??!!!
    At this point I'm forced to try and make the scroller cut a line of text in half so the user thinks Oh I should scroll now... but where's the scrollbar?!
    I've dynamically loaded the textarea in init and that resizes the thing.
    I've added manually draging of the textarea (also seems wrong and should work by default)
                private function draggingContent(me:MouseEvent):void {
                    trace("draggingContent" + me.toString());
                    switch(me.type) {
                        case MouseEvent.MOUSE_DOWN:
                            dragging = true;
                            dragOrigin = contentScroller.contentMouseY;
                            scrollStart = contentScroller.verticalScrollBar.value;
                            break;
                        case MouseEvent.MOUSE_MOVE:
                            if(dragging == true) {
                                contentScroller.verticalScrollBar.value = (scrollStart + (dragOrigin - contentScroller.contentMouseY));
                            break;
                        case MouseEvent.MOUSE_UP:
                        case MouseEvent.MOUSE_OUT:
                            contentScroller.setFocus();
                            dragging = false;
                            break;
                        default:
                            break;
    with listeners in initi()
                    contentTextArea.addEventListener(MouseEvent.MOUSE_DOWN, draggingContent);
                    contentTextArea.addEventListener(MouseEvent.MOUSE_MOVE, draggingContent);
                    contentTextArea.addEventListener(MouseEvent.MOUSE_UP, draggingContent);
                    contentTextArea.addEventListener(MouseEvent.MOUSE_OUT, draggingContent);
                    contentScroller.setFocus();
    I could go on with all the ways I looked at ever class property and function, delved through the debug viewer inspecting values before and during states of visibility.
    Is there a way to access all the automation and disable certain ones like fading with my hack breaking other more useful smoothings, or override the ones I loath?!!
       Your angry MobileApplication Burrito Beta Testing Victim

    I'm sorry to hear you've been having problems with this, but thank you for providing this feedback on here.  It's really helpful for us to hear experiences like this so we can work to make things easier.
    1. "making the scrollbar invisible or fade away is really bad (DESIGN Flaw)."
    Native iOS and Android applications also fade away their scrollbars the same way, but they do initially show the scrollbar for a short time when the view is first loaded before fading them away.
    Here's an enhancement request for allowing scrollbars to always be visible: http://bugs.adobe.com/jira/browse/SDK-29296
    2. "Trying to make it appear initially is ultimately currently impossible from what I can tell (BUG & DESIGN flaw)."
    This is something we thought about doing, but didn't have the time to implement in this release.  See attached ZIP for an example of how you might do this.
    There is an enhancement filed here: http://bugs.adobe.com/jira/browse/SDK-29299
    3. "ScrollerPolicy is only about should it appear when the content is larger and that is also not the issue."
    When you're using a mobile Scroller the horizontalScrollPolicy/verticalScrollPolicy govern whether scrolling is allowed in that direction.  It doesn't have any further connection with the visibility of scroll bars like it does in a desktop Scroller.
    4. "Well first I replaced the skin with something people can actually see too instead of the thin line of black on black. (using a spark skin not the default)"
    The skin for the scrollbars has been updated since the preview release and will stand out more in the final release.
    5. "I couldm't find a different none mobile spark scroller that isn't disfunctional in this way (fadeing scrollbars)."
    On a desktop application you can hook up your own HScrollBar/VScrollBar directly to have more control over things like this, but in a mobile application only Scroller currently is able to handle touch-based scrolling.
    It might make sense to enable touch scrolling without needing a Scroller.  Here's the enhancement request for this: http://bugs.adobe.com/jira/browse/SDK-29300
    7. "I tried simulating drag operations, mousedown, move events etc. nohting can actually get the f!ng scrollbar to appear that I can find."
    Interesting idea, but faking a touch scroll is quite tricky and won't really get the results you are looking for in the final release so I would recommend not going further down this approach.
    8. "It's rare I result to forums so I'm hopeful people at Adobe in development see this stuff and actually realize the need a boolean on the MobileApplication Scroller Class that is something like autohideScrollbars with a default of false."
    This relates to the first two bugs listed above.
    9. "Please help ASAP anyone any work around??!!!"
    See the attached ZIP for an example application that demonstrates how to keep the scrollbars always visible, as well as a sample way of implementing the initial show and fade functionality.
    It was a bit tricky to figure this out because both Scroller and ScrollerLayout affect the visibility of the scrollbars and change includeInLayout/scaleX/scaleY when things are not visible.
    10. "Your angry MobileApplication Burrito Beta Testing Victim"
    Again, thank you for your detailed feedback.  I know working with preview releases can be very frustrating at times, but hopefully the information in this post helps ease the pain a little.
    Please feel free to vote and comment on any/all of the bugs listed above.
    Thanks,
    Steve

  • Laserjet 100 color MFP M175nw - Problem always visible to public network

    I have an IBM laptop running on Windows 7. I know that supposedly the SSID is only supposed to be visible when printing, but mine is always available and visible in the Network Connections Internet Access Tray at all times.  I can tell when neighbors try to log on using that as a wireless connection because the printer resets itself.  How do I make the printer invisible on the network?  The only way I can see to make it disappear from the list of available wireless networks is to turn the printer off.  Is there another way?
    I read:
    "The network "HP-Print-b9-Laserjet 100" is the wireless direct ssid for your printer for on the spot printing, but is based on activity in a way (if there is no activity on the connection - i.e. Print jobs - the connection terminates)."
    However, my connection is always available.
    This question was solved.
    View Solution.

    There can only be two reasons for the SSID to be broadcasted:  either the Ad-hoc is being listed or the Wireless Direct feature has been enabled (it is disabled by default).
    The SSID definitely looks like a Wireless Direct SSID as an ad-hoc ID does not list print by default.
    Perform these steps on the printer:
    1.  Go to Setup.
    2.  Go to Network Setup.
    3.  Go to Wireless.
    4.  Check that Wireless Direct is enabled.  If it is, disable it and the SSID you listed should no longer be listed.
    Now, the ad-hoc connection will then be broadcasted.  Ad-hoc is the standard wifi adapter when there is no wifi network connection on the printer.  Since you do not want the printer listed at all and you are using a wired connection, I recommend disabling the wifi feature all together.
    This can be done by going to the wireless menu, where wireless direct was listed, and turn wireless off.
    These steps will not affect Ethernet or USB connections.  They will disable both Wireless Direct and the wireless radio completely.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • PDF form data not visible when opened in Illustrator CS5

    I've been searching the forums but have been unable to find an answer to my specific problem.
    I've created a form using Adobe Acrobat Pro. The PDF form fields are then populated with data via Netsuite. When I open the PDF (with data) in Acrobat all of the information shows up, however when I open the PDF in Illustrator CS5 the field data is not visible. Is there a way to force the data to be visible when opened in Illustrator?
    Thanks in advance for any help!

    You could try first flattenening the fields. This converts the field appearances to regular page contents. You can do this with JavaScript, PDF Optimizer, or a Preflight fixup.

  • How can I make the status bar always visible in safari?

    How can I make the status bar always visible in safari? Even when I go to "View" and then select "show status bar," the status bar still disappears unless my cursor is hovering over it. I want to be able to see the time, battery life etc. while surfing the web in safari!

    When Safari is in FullScreen mode, menu bar will be hidden.
    Safari window to fit the screen?
    Move the mouse pointer to the bottom right corner of the Safari window.
    Double arrows will appear. Drag it to resize the window to fit the screen.

  • Table header always visible

    Hi All,
    I have used table in scroll container.when i scroll a vertical scrollbar,table heading are also scrolled.
    Is it possible that the table header is  visible, when i scroll to vertical scroll  in the table?
    Thanks
    Abhilasha.

    Hi,
    Have a workaround to use two tables, one table containing columns as header and set some of the properties of the that table like footer visible = false,row selectable = false etc., and the other table holding the actual data. This is proposed by Armin in the following thread. Hope your requirement will be fullfilled.
    [Re: scroll container UI element]
    and some other related threads
    [Re: Table header always visible]
    [Table header fixed]
    Regards
    Raghu

  • Ensuring OK/Cancel visible when using complex JOptionPane

    Hi all,
    I am using a quite complex JOptionPane, but unfortunately there are occassions when the OK/Cancel buttons are not shown because the information I am displaying means that the buttons 'fall off' the bottom of the OptionPane. This isn't an issue if the user knows that there should be OK/Cancel buttons and can drag the size of the pane larger to gain access to them, but a new user can be presented with an option pane with no buttons and no idea how to proceed.
    What I am hoping is that there is a simple way to ensure that the OK/Cancel buttons are always visible, is this possible?
    The method below creates my option pane, but at the time it is created the height of the parametersPanel may not be final.
    Thanks in advance for any help...
    private JOptionPane getJOptionPane() {
    if (jOptionPane == null) {
    JPanel main = parent.getMainPanel();
    parent.remove(main);
    main.add(getTopLabel(),BorderLayout.NORTH);
    main.add(parametersPanel,BorderLayout.CENTER);
    jOptionPane = new JOptionPane(main,JOptionPane.PLAIN_MESSAGE,JOptionPane.OK_CANCEL_OPTION);
    jOptionPane.addPropertyChangeListener(this);
    return jOptionPane;
    }

    Um, just a wild stab in the dark here, but is there any chance that you can call pack() on the JOptionPane? That way it will always be the right size...

  • Dialog always visible in top ???

    hi,
    i would like to display a dialog not modal, but always visible in top, even when its looses focus and other "nomal" dialogue are displayed, as a "color palette" dialogue or something like that, can you please tell which class is more suitable for this purpose, and if somebody has always coded this kind of dialog, i am interrested, thanks for your help

    Specify the "parent" JFrame when creating the JDialog.

  • Scroller always visible

    Hallo, i need a little help. I have a component List and i want the scroller of this List to be always visible even if in disable mode. Now it is only visible when there many lines and it is ok, but i wish to see it even if it is not usable... How can i do it??
    Thx for all
    Max

    I'm having a similar problem over two days still not finding a good solution.
    Using Flash Builder 4.5 Burrito Hero SDK for MobileApplication.
    Scroller with a TextArea beyond the bounds of the scroller.
    The scroller is black and nearly invisible?! In fact it is invisible so no one knows it might be content off screen to scroll.
    Really it would make more sense to be invisible after you start scrolling? duh
    Anyway you can try stuff like this...
    contentScroller.verticalScrollBar.setStyle("skinClass", Class(VScrollBarSkin));
    contentScroller.verticalScrollBar.setStyle("autoThumbVisibility", false);
    contentScroller.setStyle("verticalScrollPolicy", "on");
    contentScroller.verticalScrollBar.visible = true;
    contentScroller.verticalScrollBar.alpha = 1.0;
    but the Scrollbar is always faded out until you actually start draging it then in fades in.
    I just want it to be visible so a user understands there is something there to scroll?!! but it's basically imposible.
    ScrollPolicy is just about if it's bigger then the bounds normally which is fine but it does not address this mobile faded out problem at all.
    Please somebody there explain how this is usful.
    Further I'm not seeing with the TextArea disabled the inherient ability to drag the text = scroll area around with presumable your finger in Mobile land as one would expect as default so I guess there's all kinds of comvoluted dragging bubbling to pass on or something... mybe I'll find something to set to true, lets hope it takes less then two+ days to make the thing visible in the first place.
    Your truely pissed Burrito Beta Guinea Pig

  • RE1000 - SSID Always Visible, No Internet

    Pros: Easy setup
    Cons: While clearly in range of router, Extender does not connect to the Internet; my laptop can connect to the router with four bars from the same location and get the Internet.
    SSID is always visible.
    Other Thoughts: Cisco should sell Linksys so that the products can be good again. Why do big companies by successful ones only to screw up their products?

    The RE1000 is meant to extend the range of an 802.11n network. While the device has the ability to extend the signal for a traditional 802.11g router. The reason for this is because the RE1000 is built to extend 2.4 Ghz 802.11n signals which use MIMO as well as other advanced technologies, if attempting to extend a G network you will not achieve the desired performance because it is not optimized to extend standard 802.11G signals.
    Remember that the RE1000 will only extend the 2.4Ghz frequency. Meaning that if you have a router that is dualband you can only use an extender on the 2.4Ghz channel. The 5 Ghz channel does not currently have an Extender available for it. Since some dual band routers have the ability to select which frequency you want activated. Always make sure 2.4 Ghz is enabled if you are having troubles configuring.
    Possibly try and use the Setup Utility and make sure the RE1000 is close to the router when first setting it up. The utility will test your network performance through the setup.
    Remember to quickly get to the RE1000 after it has been setup, you can click on Computer > Network > then look in network infrastructure to see the RE1000. Double Clicking it will launch the setup page.
    Lastly and most importantly, remember that in order to get the best performance from an RE1000 you need to place the extender in an area where you still have at least 50% signal strength to your router when you place it in the final location where the RE1000 will be used. During every call where you configure the RE1000 you will need to login to the UI after you have put the RE1000 in the final location to verify the signal strength.
    For ALL configurations you should have between 2-3 bars of signal at the very least. If you have less you will need to move the RE1000 closer to the router. You can also check the status on the status page of the RE1000 as well. On the status page both Signal Strength and Signal Quality can be measured. If either set of bars is red you must move the RE1000 closer to the Router.
    Also, let me know which brand of Router are you using and what is the exact configuration of your router, so that we can understand the same in a better way....

  • Movie Titles Always Visible

    Hi,
    I just bought Toy Story 3 on iTunes and when I play it on my ATV, the chapter titles are always visible (and they're in French!!) but when I look at the same movie on my ATV2, they aren't shown (at all)...
    I've checked that there are no chapter view options etc witin the movie and I can't see any and I can't see any option in the ATV settings related to Chapter titles so I'm at a loss...
    Any ideas..?
    Thanks
    Mark

    What you have got there is a text track embedded into your source footage - if you open it in quicktime and delete the text track it will go. You'll then need to add in the marker info when in the DVDSP timeline.
    Of course, you could export it from FCP again and only carry over the relevant marker info, encode the footage to MPEG2 with Compressor and then bring that into DVDSP...

  • Is there anyway to get an App Tab to stay when I close the program then reopen it?...they always disappear when I open a new window etc.

    Is there anyway to get an App Tab to stay when I close the program then reopen it?...they always disappear when I open a new window etc.
    And I thought the whole point of an App Tab was to always have those tabs there no matter what window is open all the time period.
    It's a minor complaint but I would really appreciate the option to permanently have them there.

    I thought that app tabs would be more persistent, like pinning programs to the taskbar in Windows, but this is not the case.
    Instead, once you close a Firefox window, all its tabs and app tabs are lost.
    Essentially, this means that the close button in the upper-left corner of a Firefox window is now a "kill all open tabs and loose all App Tabs without warning++ " button. That is not cool.
    I realize that "Firefox > Quit Firefox" behaves as intended, but many people use the more obvious red close button instead of the menu to close windows on a Mac. And it is easy to forget that the red button is now also an app-tab-death button. I've lost my app tabs many times to this issue. It is an unforgiving user interface decision which hampers the usability of app tabs. Why should I go through the extra clicks of setting up app tabs if I can loose them so easily?
    Ideally, App Tabs could be saved separately from the currently open windows (perhaps create an option to save then to a special Tab Group that opens on startup?). App tabs would be exceedingly useful to me if they weren't so easy to loose.
    On that note, saving Tab Groups would also be a useful functionality.
    ++ You will get a "closing multiple tabs" warning if you have only one window open, and that one window has multiple non-app tabs open, and you have enabled the warning in Preferences. But this too unreliable to help prevent the loss of app tabs.

  • I have an iPod Classic and when I try to move songs from my library to my iPod, my iTunes freezes. When I tried to eject my iPod, nothing happened and I had to force quit iTunes. When I unplugged my iPod, all of my songs had been deleted. What can I do?

    After attempting to move songs from my iTunes library to my iPod Classic, the pinwheel kept spinning and iTunes froze. I tried pressing CTRL E to eject the iPod, but nothing happened. I unplugged the iPod then force quit iTunes, but when I checked my iPod all of the songs had been deleted. I tried plugging the iPod back in and slowly moved music over again, but iTunes still froze. I don't want to restore it to factory settings because I am afraid of losing the pictures I have on there and can't figure out how to get them off.

    Are you using a Macbook?
    If all your songs on the iPod are deleted, most likely the photios are gone too.
    Unless you put the photos, via Diskmode.
    To recover the photos that you've put in Diskmode, use Finder to locate where it is in the iPod.
    Try also if iPhoto can locate those photos.

Maybe you are looking for

  • Mail sync issue with new iPod Touch

    I have been unable to successfully perform an initial mail sync using my new iPod Touch 32 GB with Version 3.1.1. All is being successfully sync'd with the exception of mail. The error box when I click on mail with the iTouch reads - "Cannot Get Mail

  • HTML to Tiff conversion

    Hi, I want to perform Html to Tiff conversion. The Html file is on my sys and i want to convert it into Tiff file using my java code. The html file contain Some formated text and 3-4 images. I have a tool (GUI) that take html file path and snap the h

  • Problem in "Process.waitFor()" in multithreaded application (UNIX OS)

    Hello all This is very urgent for me. I am using the follwing code to invoke the child process which calls a shell script in the unix OS,and it is going fine when runs in single thread. But if i run it as the multhreaded appln, anyone of the thread h

  • Order data in arraylist

    does anyknow how to order the data in an arraylist according to number.

  • Swf file into jpg

    hi I have build the greeting card and differnt layouts using flex4. if i press the button i want to convert that greeting card into jpeg and open a new window that jpeg file should display. But i don't know is it possible in flex or not. pls suggest