Hiding .flv controls AS 2.0

I need to display an .flv so after the poster frame you do not see the controls only on mouseover the controls appear.
any help?

The person above is correct but assure you enter into component inspector, and change the the parameters of the component.

Similar Messages

  • Hiding flash controls in HTML

    I have created a video on After Effects and exported it as a
    AVI. I then opened Flash Encoder and created a FLV file out of
    that. I then added the FLV file into Dream Weaver on my webpage.
    When the page loads the flash file plays, but shows the controls.
    How do I get that to not show the controls and just play? You can
    look at my test site to see what I mean.
    http://www.getcapturednow.com/test.htm
    Thanks

    Your embedding code looks to be on the short side of completeness, so you might consider letting Flash generate an html page and copy the code from that.  If that doesn't fix anything, then you might also try using full url's in the getURL calls (http://www.etc...)

  • Hiding Playback Control Bar

    Is it possible to hide the control bar selectively? i.e. for one slide only.
    I am using a certificate widget at the end of a quiz but you can get to the certificate even if you fail by simply clicking on the forward button. In the Quiz Preferences I have set the "if fail" option to jump user back to the beginning of of the quiz, but this only happens when you hit a "continue" button. Am I going about this all wrong?

    Hi there
    Absolutely it can be done. What you have to do is to create an Advanced Action that hides it. Then edit the slide properties and configure them so the Advanced Action is triggered when you enter the slide.
    Personally I like to configure a toggle. That way I create one Advanced Action and not two. The toggle looks at the status and if it's hidden it reveals it. If it's shown, it hides it.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Disabling and or hiding parameter controls depending on the value of a popup

    How should I go about doing this? I've set the flags for the popup param to PF_ParamFlag_SUPERVISE like so
    def.flags = PF_ParamFlag_SUPERVISE;
    PF_ADD_POPUP(
         "Mode",
       6,
       1,
         "Option 1|Option 2|...",
       POPUP_MODE_ID
    And I'm capturing the PF_Cmd_USER_CHANGED_PARAM command like so
    case PF_Cmd_USER_CHANGED_PARAM:
         ERR(UserChangedParam(in_data, out_data, params, output, reinterpret_cast<PF_UserChangedParamExtra *>(extra));
         break;
    static PF_Err UserChangedParam(
        PF_InData* in_data,
        PF_OutData* out_data,
        PF_ParamDef* params[],
        PF_LayerDef* outputP,
        PF_UserChangedParamExtra* extra)
        PF_Err err = PF_Err_NONE;
        if (extra->param_index == POPUP_MODE_ID)
            if (params[POPUP_MODE_ID]->u.cd.value == 2)
                 //Code to enable and show the controls
            else
                 //Cose to disable or hide the controls
        return err;
    Am I doing everything right so far? What code do I need to put in the "if (params[POPUP_MODE_ID]->u.cd.value == 2)" block to disable a parameter? How different would the code be to hide the parameter completely? Can I hid entire topics like I can hide parameters? I'd have a use for all three things, I just can't figure out how to do them.

    I took a look at the Supervisor sample project. I've managed to figure out how to disable controls, which I've done like so:
    AEGP_SuiteHandler suites(in_data->pica_basicP);
    params[CONTROL_ID]->ui_flags |= PF_PUI_DISABLED;
    params[CONTROL_ID]->flags |= PF_ParamFlag_COLLAPSE_TWIRLY;
    ERR(suites.ParamUtilsSuite3()->PF_UpdateParamUI(
        in_data->effect_ref,
        CONTROL_ID,
        params[CONTROL_ID]
    Enabling should be something this instead:
    params[CONTROL_ID]->ui_flags &= ~PF_PUI_DISABLED;
    What I can't figure out, still, is how to hide a control. I've tried to set the PF_PUI_INVISIBLE flag but that did not seem to change anything. It looks like the Supervisor plugin is setting the exact same flag to hide controls but it must have something else that I'm missing.

  • Hover Menu hiding behind controls.

    hi Experts,
    I have a created a custom hover drop down menu using Dhtml
    but this menu hides behind controls like r/3 transactions, VC iviews, PDF displayed in content area.
    From other threads i found that the only solution to solve this is to have an iframe behind the div.
    I have tried this too still the problem is not solved.
    Steps i performed:
    1> made a copy of original-A.jsp file as B.jsp.
    2> removed the code for menu display from the
    original-A.jsp and inserted the Iframe code as
    <iframe src="/irj/servlet/prt/portal/prtroot/SDNTest.JSPPortalComponent" height="60" width="1000" top="0px" left="0px" margin="0px" padding="0px" >
    </iframe>
    and called the B.jsp from src of Iframe.
    till here it works fine, the menu too is displayed.
    but it still hides behind the control.
    Please help for where am i going wrong ???
    Do i need to modify any properties of Iframe ???
    Please help.
    Regards,
    Sanjyoti.

    hi,
    yes the complete Hover menu available on SDN also has this problem,
    basically i am facing problem when i open any PDF or VC iview in the Content area,
    I have also observed that even the tray options hide behind the PDFs, really dont understand why this happens ?
    We have many PDF and VC iviews, its really not possible to move ahead without finding a solution to this.
    Can anyone please help.
    Regards,
    Sanjyoti.

  • Problem seeing the flv player control

    Hope someone can help me on this.
    1. encoded a video with Flash 8
    2. selected SteelExternalPlaySeekMute as skin for player
    3. resized the canvas to be about 10% larger than the actual
    video+player
    4. centered the video+player
    5. generated the swf, plays fine in Flash 9 Player standalone
    6. embeded into a webpage, but neither swfobject.js nor
    <object> nor <embed> displays the flv controler. the
    video plays, just no controller.
    I've make sure that the skin file is in the directory as the
    flv, so now I'm baffled as to why the controller is not showing at
    all. so if any one can help me on this, please.

    I had some minor success by adding this into frame 1 of the
    .fla containing the FLVPlayback control (with id set to
    FLVPlayback):
    if(_root.flvSkin != null) {
    this.FLVPlayback.skin = _root.flvSkin;
    Then for SWFObject I added (using a relative path to our skin
    asset):
    so.addVariable("flvSkin",
    "/assets/flash/SteelExternalPlaySeekMute.swf");
    This seemed to help for most browsers. Opera didn't seem to
    cooperate with this solution, but putting
    SteelExternalPlaySeekMute.swf also at the very root of our site
    seemed to fix it for now. In a bit of a rush to deploy, so we
    haven't been able to investigate further.
    The site this is embedded in does make use of the <base
    href="
    http://www.oursite.com"> html
    tag in the header section, which has given us a bit of grief
    elsewhere but is necessary for some other add ins... haven't tried
    removing it yet, but it may be possible this is contributing to the
    issue?

  • Issue with .flv Captivate and LMS

    Hi, I am testing an LMS that we will be rolling out in the
    New Year. We have produced some Captivate2 modules and have
    successfully loaded them as SCORM2004 onto the LMS and they run
    okay.
    I tried creating a .flv using Studio8 and inserted it into a
    Captivate 2. The module runs okay on my harddrive. I create the
    manifest.xml file and zip all the content and upload onto the LMS.
    The LMS will launch the file okay and it plays and stops at the
    point where the flv should play - but it doesn't there is nothing
    not even the small flv controls are displayed. If I click on the
    forward button it advances to the next part of the Captivate as
    normal.
    Has anyone else experienced this and found a solution?
    thanks
    Gerry

    I highly recommend you look at:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=67&catid=470&threadid =1203710&highlight_key=y&keyword1=flv
    This issue is one that is CAUSED by Adobe. The flvs work fine
    on an Adobe server. They are trying to force people to use their
    service.
    It sucks, and I hope someone fixes it soon -- not being able
    to play flv is ridiculous.

  • How to make  a particular field in table control invisible?

    i have a field in my table control but im not able to make it invisible
    im using the following code
    PBO
    LOOP AT itab_ctrl INTO wa2_ctrl WITH CONTROL ztabctrl
        CURSOR Ztabctrl-current_line.
        MODULE modify_scrn_100.
      ENDLOOP.
    module modify_scrn_100.
    LOOP AT SCREEN.
       IF SCREEN-NAME = 'WA_CTRL-ZITEM'.
          SCREEN-INVISIBLE = 1.
          MODIFY SCREEN.
       ENDIF.
         ENDLOOP.
    endmodule
    ...here WA_CTRL-ZITEM is my table control field name
    ...even if i make invisible = 1 or 0 the field is not getting invisible

    Hi,
    Check the Demo Program <b>RSDEMO02</b>.here you can have option to make the column invisible.
    also check these..
    How to Hide a entire column in a Table Control?
    Hiding table control columns along with header
    Hiding of Table control
    Regards
    Vijay

  • CS6 Beta first impressions

    Here is a list of things I noticed during a first test drive of the Photoshop CS6 Beta. This is a mixture of feature requests, bug reports and general observations. I just typed this up as I went along. I'm sorry I don't have enough time to file proper bug reports and feature requests, but I though this might still be useful feedback. These things are in no particular order (well, except in the order I noticed them), and I'm sure there are a quite a few grammar/spelling errors, but right now that's all the time I can invest, sorry.
    And even though this all sounds really negative (I basically just listed the annoying points since a list of good thigs probably isn't very useful), I am quite happy with the new version, congratulations to the team! I love the cat graphic on the splash screen by the way.
    All these things were tested on a MacBook (2008 I think) with OS X Snow Leopard and 8 GB of RAM. So here you go:
    Ctrl+Some Key still not available as shortcuts (e.g. Cmd+H Hide Photoshop, Ctrl+H Hide Extras)
    The aesthetic merit of the font choice in the about box/splash screen is debatable
    Despite all the vector enhancements, Spacebar+drag still doesn't work in the Pen tool like it does in other Adobe applications
    Paragraph and Character style definitions apparently cannot be shared with InDesign or Illustrator so far. There is no way to link to external style definition files, and no way to import or export. Since all these applications use the same text engine, this seems like a missed opportunity, requiring a lot of duplicate work on the user's part (not as much as in previous versions, though)
    The title bar of the document window uses the system title bar and thus does not match the overall interface skin. If that is set to dark (which is the default), it calls attention to itself.
    There is no way to hide the filter bar in the layers panel, making it waste screen space on laptop screens when it is not needed.
    The Warp option in Free Transform was updated to add GPU acceleration, which is great. That would have been a perfect opportunity to make the number of subdivisions user-adjustable.
    There are lots of new vector features. This would have been a perfect opportunity to integrate After Effects' mask and shape system (including effects like repeaters), resulting in increased compatibility for importing Photoshop files into AE. Besides, all enhancements would pay off double since two applications would benefit from them. That would also have added the option to feather vector shapes for use as soft vector masks (Photoshop's mask feather function seems to perform a blur and thus is significantly slower, plus it applies globally to all paths in the mask). Still, the vector features are very well implemented, even though Fireworks still seems to have a slight edge.
    The red "active" indicator on the layers panel filter bar calls attention to itself. The entire application uses grayscale icons. While I can see why this indicator needs to be obvious, I think that is too much.
    The "Scripted Pattern" function is not very intuitive to use without any kind of preview. Also, it is not really clear how to create your own scripts, edit the existing ones or even just adjust parameters.
    The Fill dialog in general takes too many clicks with that popup menu. Using icons or something similar would save a lot of mouse miles/clicks.
    There is still no way to directly load 50% gray as the foreground/background color. In photo retouching etc., this comes up a lot. Adding a little icon to the color picker in the toolbox with the ability to assign a shortcut would help a lot. Waiting for this since version 5 or so...
    Curves still doesn't support editing the layer's alpha channel nor LAB mode (at least not without converting the entire document to LAB mode or a smart object).
    The "File Info" is still the ugly inefficient Flash monster where everything takes ten times as long to do than it did with the old dialog it replaced a few versions back (mouse wheel doesn't work on tabs, text editing shortcuts are different/don't work, tabs instead of the InDesign-like list of categories and many more). Photomerge is still ugly, but at least it doesn't have such major usability issues. The interface is inconsistent enough already, why do these have to be Flash?!
    Shift key during canvas rotation to constrain angles still only works when using the tool but is ignored when using a multitouch pad gesture
    The minimum size on the new "Adjustments" panel is larger than necessary
    There still seems to be no option to not hide all panels when activating another application, causing that visual jump and slight desorientation every time
    That new pen tool cursor is huge
    There are still no Lightroom-like info bubbles or indicator icons (like LR's process version upgrade warning) for entering Quick Mask, toggling Softproofing etc. that would alert the user when accidental keystrokes
    Photoshop doesn't seem to ask the user to automatically migrate settings and presets from any previous version on first launch. The migrate presets function does nothing (don't know if this is an issue related to the computer I am testing this on).
    The "Blend RGB Colors using Gamma" feature in the color management settings still seems to be global and not per document (not 100% sure, though). This results in files being displayed differently on different computers, which is not a good idea.
    The line-based warping in "Adaptive Wide Angle" is only available within that filter as far as I can tell. This is a missed opportunity IMO. Being able to specify arbitrary source and destination paths to that algorithm would make for a very powerful warping tool.
    I'm not exactly sure what caused it, but I managed to accidentally disable path anti-aliasing and I can't seem to find a way to switch it on again. No combinations in the GPU preferences under "Performance", including switching GPU acceleration off completely, restored it. This is either a bug or a usability problem. Personally, I think the option to antialias paths and guides should be located in the View menu, not hidden in the GPU preferences.
    In the settings for a LUT adjustment layer, clicking any of the radio buttons will automatically pop up a file selection dialog, even if my intention was to use one of the presets. That file selection dialog also gives me no clue which file formats are supported (i.e the regular format popup is missing).
    Both Cmd+Space and the zoom tool itself now seem to behave identically. There is no more way to drag a box, except to switch off "Scrubby Zoom" altogether. Using both methods in parallel (as I would prefer) is unfortunately no longer possible as far as I can tell.
    The brush cursor in Liquify is always dark, making it hard to see on black surfaces for instance. "Advanced Mode" is also off by default. Since the entire thing is in a huge dialog box (a solution like Blur Gallery's interface would seem like a better way to do this by the way), there is no real benefit to hiding these controls since there are no UI elements that would benefit from the additional space. It just requires an additional click.
    The Liquify preview flickers as I am typing this in a TextEdit window that is floating above it
    Select > Color Range would benefit from buttons with icons for preview mode instead of a dropdown. Same for Curves (tabs would probably be best in that case, but at least we have the shortcuts for now)
    The "Sample all Layers" option vanishes when switching the Patch tool from "Content Aware" to "Normal"
    That's it for now, thanks for listening.

    @Chris Cox: I didn't mean post professionals who probably answered your surveys, but cinematographers and the like who currently simply deliver JPEGs of their desired look as far as I know, not colorists and effects artists using Photoshop to generate their look. But I'm no expert on those workflows, and I completely agree, a third party solution for LUT export is probably the best way to implement such a workflow.
    @c.pfaffenbichler: Most professionals are still working predominantly in a semi-destructive way (i.e. using layers). Smart objects are too much hassle for most things (especially not being able to see your changes in context when editing them), so keeping an original layer and re-applying a filter is still very common.
    Seeing that Blur Gallery can export a channel, that actually makes it quite useful, contrary to my initial assessment. Even though the interface is currently not optimized for this, it looks like Blur Gallery is a great quick and easy way to generate layer masks for color corrections.
    @TLL..: Professionals will always buy their software. And those people who don't won't make that decision dependent on the licensing model. Very few of those who pirate programs are actually lost customers who don't buy software because they found a way can get it for free. It just doesn't work that way even though many companies would like to think it does. Most people simply wouldn't buy the software if piracy was not an option, with price being the deciding factor. The question is simply how spread-out the transition area inbetween is. I don't have Adobe's research data, though, so I can't comment on their specific case (I'd guess Photoshop is one of the most pirated programs, though), but I don't think threatening them with piracy is going to be that effective, they probably have someone who does nothing else all day than figure out smart ways to optimize these kinds of things for maximum profit
    Just as a side note, in some cases piracy actually works in a company's favor. Microsoft owed much of its market dominance in their early days to the fact that unlike the competition their software was not copy protected and thus became much more widely used than comparable solutions, leading to much higher sales than copy protection could ever have given them.
    Don't get me wrong, I am in no way defending piracy here, of course, I just think it's interesting from a strategic perspective. On the other hand, Photoshop is quite well known and doesn't have any real competition, so that probably defeats my point. Anyway, moving on.
    I had a chance to play with the Beta again today for about an hour, and here are a few more things I found (again, a mixture of bugs, features I had hoped for, quirks etc. that I noticed and jotted down as I went along):
    The new in-place/on-canvas filters like Blur Gallery use an OK/Cancel button combination to exit the semi-modal state, which is inconsistent with all the existing semi-modal tools like Crop and Free Transform (which continue to use the checkmark system).
    Panel groups can no longer be collapsed by double clicking in the free area next to the tabs, only the tabs themselves. Not sure if that is intended behavior or a bug.
    Most panels seem to be docked below the Brushes panel by default for some reason so that showing any of these panels will also automatically bring up the much larger Brushes panel.
    ExtendScript Toolkit always crashes when switching to the "Fonts and Colors" tab in Preferences. This behavior can be reproduced every time. Unless this is related to a specific configuration, I can't imagine how this could have slipped through during QA/internal testing.
    There is currently no documentation for the APIs for the new Deco patterns, at least I was not able to find any, but I guess this is going to change in the release build.
    The Displace filter is still stuck in the early nineties (no preview, not accepting channels but using separate map files etc.). Displace is one of the most used filters in photo post production and image compositing.
    When placing files, it is never made 100% clear to the user which files/file types are linked to and which ones are embedded. An option to choose and possibly even a links panel like in InDesign and Illustrator would be useful.
    For placed videos (which seem to be linked to rather than embedded), the link seems to consist of just an absolute path (heard about this problem somewhere else, didn't have a chance to verify). I'd suggest storing both relative and absolute paths and if one fails to match, try the other before requesting a manual relink.
    The properties panel displays an unnecessary vertical scrollbar for Curves adjustment layers that just scrolls down to some empty space below
    The Timeline panel flyout menu has lost the "Document Settings" command. There now seems to be no reasonably obvious way to set the overall animation duration. There is also no "Trim Animation to Work Area" command. New layers seem to always use some kind of default duration, not the duration of the current timeline sequence.
    The segments in the animation timeline are a very vibrant color (at least on a wide gamut monitor). Ideally, they should at least match the color palette established by the blue selection highlight color, the ok buttons in the options bar and the render progress bar (which I really like). Strongly colored UI elements affect the perception of color in the image. Autodesk Smoke/Flame does a great job of using a non-obtrusive color palette in its interface.
    The "Set Current Time" dialog box that pops up when double-clicking the timecode display in the bottom area of the Timeline panel does not support pressing the escape key to cancel if the text field has the focus. Pressing Tab doesn't seem to change the focus either. Pressing down on the OK button, holding and dragging out of it doesn't hide the selection in the text field, but the escape key now works as expected. The return key works as expected in all situations, no matter which control has the focus.
    The "Split Clip" button doesn't seem to work well with the undo system. The corresponding menu bar item (Edit > Undo Split Clip) is sometimes grayed out. Switching to another application and back to Photoshop seems to re-enable the menu item in some cases. The grayed-out menu item obviously also blocks out the use of the corresponding hotkey (Cmd+Z in the default configuration).
    Dragging transitions to clips sometimes has no effect. I can't give a specific combination of things that cause this behavior, but it seems to be a per-document issue. If it kicks in, transition dragging doesn't work at all, i.e. it is always all segments in a particular timeline that don't accept transitions, not just individual ones. The dragging process happens as expected, but basically, the segments don't highlight under the mouse, nor do they accept the transition.
    Keyframe interpolations are limited to "Linear" and "Hold". A minimalistic "Smooth" option would be really useful, and it wouldn't have a noticeable impact on the complexity of the video timeline feature for novice users. I'm no AE expert, but I believe it has a feature called "Easy easy" keyframes, too, giving you smooth interpolation without manually adjusting the bézier animation curves.
    The horizontal scroll bar on the Timeline panel always shows some extra empty space, like the Properties panel for Curves. There is also no obvious "Zoom Timeline to Fit All" function (a toggle between 100% and the last zoom position would make sense, I think this is also how Avid implemented it in Media Composer).
    3D layer rendering still isn't really a background thread and almost all interactions with the applications cancel the render operation.
    Vector shapes unfortunately only support plain vector outline strokes instead of allowing the user to apply any of the brush presets (or even use any of the settings inside the "Stroke Path" command, which would enable things like smearing using vector shapes). In my opinion, that is really the missed opportunity for additional usefulness that vector support in a pixel-based application can offer. I know the vector shapes feature is aimed at designers who don't want to switch between Photoshop and Illustrator for every single vector task, but that would have been a way to make that feature much more relevant for more than just the screen design demographic.
    The beta doesn't ship with the Pixel Bender filter, which I hope is going to change with the final build. That filter needs some work compared to CS5 (supporting the AE user control fields, supporting high-resolution images at least in CPU mode, channels as input images, color management issues, etc.) The CS5 release still feels very much like Alpha software (Pixel Bender Toolkit is even worse).
    The 3D camera has no on-screen widget to specify depth of field distance settings or even locking them to an object (similar to an aimed camera in compositing programs and 3D software). The sliders are also sometimes quite laggy, ideally all sliders should be completely interactive with only the render lagging behind. A slider that sticks jumps around while the software is rendering can be quite frustrating for a user (Lightroom has had that problem for a long time).
    The "Sketch" render presets seem to give incorrect results (i.e. results that have nothing to do with the 3D object, just a bunch of semi-random shapes and rectangles. The render button is also completely disabled. There also seems to be no way to activate the "Sketch" setting except through the presets.
    The fact that Content Aware Move allows the user to change the Adaptation setting after the fact is not very discoverable and inconsistent with both the other tools and apparently even the behavior of the Mode setting on the same tool. I'd suggest giving the tool a pseudo-modal state like the crop and free transform tools instead.
    The lorem ipsum command is called "Paste Lorem Ipsum". The use of the term "Paste" here is potentially confusing since it has nothing to do with the system clipboard. "Insert" would be a better choice of words in my opinion. Also, the same command inside InDesign is called "Fill with Placeholder Text", so you may want to consider using that for cross-application consistency.
    On the 2008 generation MacBook I was able to test this on, Liquify always launches in CPU mode (1 pixel black border around the preview image). Not sure if the GPU in that system is simply not supported. I suggest showing an unobtrusive information note somewhere (maybe below the settings), like "GPU acceleration for this filter is not supported on this hardware configuration". Like the "Efficiency" setting in the document window status bar, this would help users identify potential performance bottlenecks on their systems. The black border is just not very discoverable.
    The improvements to text (paragraph/character styles etc.) would make a glyphs panel like in InDesign and Illustrator a logical addition (saves unnecessary copy & paste operations).
    It seems that multiple clips in the Animation Timeline cannot be trimmed at the same time, even if they are both selected.
    The "Show Asian Text Options" checkbox seems to have disappeared from Preferences. Things like the Warichu option still seems to be Illustrator-only, even though it is incredibly useful for other things beyond what it was intended for (movie poster-style credits are the most popular example, but there are many more). Also, it seems illogical that you would have to choose between either of the text engines available, but I guess this is required by historical engineering decisions.
    Panels still can only be docked to the edges of the primary monitor. Docking is not available on secondary monitors. On Windows, docking only works inside the main window, no matter on which screen. I know this is standard behavior, but I never really understood the logic behind that.
    Hope this is useful.

  • How to Play Documented type file in Firefox like Internet Explorer

    I am student in 3d Graphics, so i viewing some tutorials like Digital Tutors Vedios.So I have a problem to open documented file in FIREFOX. The same file is opening in INTERNET EXPLORER. But I like to use FIREFOX only.

    From what I've seen, none of the Linksys cameras have the option of DynDNS embedded in them. You could try setting DynDNS on your router itself. If you're using a Linksys router, all Linksys routers support DynDNS. Most other routers support DynDNS too.
    Not too sure about hiding the controls in Firefox. Have you tried Safari for Windows? One would think that it should work the same for Windows and Mac OS.

  • Find my iPhone jumps all around?

    Since we have several iOS devices and want to make sure we can find them should they get "misplaced", and also it's nice to be able for us to follow each other on long road trips to make sure we aren't stuck on a road somewhere in trouble.
    But on our phones (iPads only wifi), even when device is inside house sitting in one spot, it will show it at the neighbors, behind trees by the road, in the driveway, etc. why does it jump around like that? If it were missing, I sure wouldn't want to have it show at one of my neighbors house, when it was maybe under a couch cushion etc...
    You'd think that 4s's would be highly accurate especially when connected to Internet. Sometimes, it's even showed the phone in the middle of a field 1/2 mi from house (there is a cell tower there)??
    I'm confident it could be remotely locked, but as far as watching out for each other, it seems to be worthless.

    This can occur when your iPhone, iPad, iPod touch, or Mac is still determining a more accurate location or is unable to provide a more accurate location. Wait a few minutes and refresh the map to try again.
    To center the device on the map, or to zoom in or out, use the map navigation controls in the upper-left corner (if the My Devices list is open and hiding the controls, click outside the list to close it). You can also drag the map to move it around.
    To check for an updated or more specific location, click the green dot on the map (so the device info appears), then click the Refresh button.

  • Can we have two textures for the same project ?

    Hello all
    I use Captivate4. In my project, the background transparency for Playbar controls is 100%. So the texture would be seen as the background for the PlayBar. I have a requirement of hiding PlayBack Controls in few slides. Then I would like to change my texture to some other image. in brief, I would like to show one texture when the PlayBar is visible & another texture when the PlayBar is invisible.
    Is that possible?
    Thanks & regards,
    Kartik.

    OK.  This would be a little easier to do in Captivate 5 which has Master Slides and Playbar Overlay. But since you have Captivate 4 you will need to make do with adding graphics to the background of the actual slide, and just turning off the Playbar.
    From the graphics you added to your last post, it looks like you already know what you want the background to look like. You want a different background for Slide A and Slide B.  One way to do this is to add the graphic to each slide, then right-click and select Merge with Background.  But you can also just put the image on the lowest layer on the timeline of each slide and the effect would be similar.
    Regarding the Playbar...Since you are on Captivate 4, you do not have the option to set Playbar to Overlay.  I've just looked in Captivate 4 but the option is missing.  Here is what the Skin Editor looks like in Captivate 4 and 5.  Notice the Playbar Overlay setting is missing in Cp4.  There may be another way to do this but I don't know.
    This playbar overlay option would have allowed you to set the position of the playbar as sitting over the bottom 30 pixels or so of the stage area.  Since you can't do this, you may need to be satisfied with seeing the area occupied by the playbar go blank when it is hidden.
    To hide your playbar on Slide B, you will need to add an Advanced Action on Slide Enter that turns off the playbar by assigning the variable cpCmndShowPlaybar to 0.  Here is what that looks like in the Slide Properties dialog for your Slide B.

  • InsertListItem() works slower if the number of lines increase

    Hello,
    i am using a listbox to trace can/lin messages. I think that it is better to work with a textbox, but first i want to look, if there is a possibility to make the ui update faster. The item label is used to show the important data, the item value contains detailed information in a string.
    Is it possible to grab the raw data of a listbox or to insert more than one item (label+value) without an ui update?
    Is it possible to mark a row in a textbox like in a listbox? I need this option, to show detailed informations of a marked listbox entry a in second textbox.
    Best regards,
    Vitali

    Let's start from the second question. A row in a textbox cannot be "marked": you can detect which row the cursor is on by using ATTR_TEXT_SELECTION_START control attribute (but you will have to handle the case when the user selects more lines) and you can replace it prepending for example an asterisk (remember to delete it when you don't need it anymore).
    On the listbox size, I suppose some improvement can be obtained by hiding the control while updating (be sure the listbox is not the active control and no screen refresh happens so that you don't see flickering).
    Regarding the performance, while the text (item label) is always on screen you may consider that additional informations are not so crucial to maintain them inside the control all the time. That is, you could use the item value as the index into an in-memory object or a disk file where additional informations are stored: you can retrieve and display one single element when the user asks for it, leaving the control with a reduced amount of informations stored in it. It seems to me that this could make the control lighter and possibly reduce the slowering effect you are seeing now.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • LV reports

    I am using LV 5.1.1 on a Win 9x platform. I am trying to come up with a
    way to let users save reports easily from Labview.
    I have stayed away from the LV report VI's because they do not support
    graphics. What I have come up with is less than optimal in my view. I
    am using a front panel as my report template to show the user the data.
    I am hiding any control or indicator via attribute nodes that should not
    show on the report. Then I am using the Get Panel Image Vi Server
    method to grab the front panel and save it as an image file (why isn't
    gif format available? Is it the Unisys copyright deal?). This allows
    for a user to at least be able to print or save the report to file in a
    nicely formatted, 1" inch margin, etc. way. One problem that this is
    less than optimal is that the portable network graphic (*.png) format is
    not fully supported (without plugins and the like) via common browsers
    or graphic viewers.
    Another problem I encountered was when merely trying to just print the
    front panel programmatically from LV, no matter where I placed my
    controls the ones on the left ended up printing right on the left side
    of the page leaving minimal page margin. One thing I did try was to
    place a trasparent decoration box around the report to give LV the
    reference edge I guess it is looking for. However, an unexpected result
    with this was that even though the decoration was transparent on the
    page it printed with a fine border. Not sure what is going on here.
    I also tried using the print to RTF format method and that did not allow
    for setting of margins that I could see. It also printed the vi name
    and the words "front panel" in the RTF document. Could not find a way
    to stop it from doing this which was annoying.
    Another attempt was made using the print to HTML method, but this would
    mean that the user would have to keep up with the html and image files
    that go to make up the report. This creates a potential problem when
    the user would like to copy the file or email it because they have to
    keep up with all the files both html and image and keep them in their
    proper referenced locations (so that the htm file can find its images
    unless the end user wants to go in and edit tags.)
    Any help would be greatly appreciated.
    Thanks,
    Don

    I had almost the same problem as you with the reports, and I couldn't find
    any god way to solve the problem inside LV. My solution is to use ActiveX
    to export the data to Excel or Word. The ActiveX interface in LV is simple
    to use and there are some examples at the NI homepage how to use it. I also
    create the graphs directly inside Excel instead of exporting them as a picture
    from LW.
    One other problem that I dint manage to solve is how to get a decent picture
    file out of a graph in LV. You are writing about the gif and png format but
    none of these is relay god if you want to include the picture in a document.
    Both those formats are pixel built up and I would like to have a vector image
    like the wmf format instead. The vector format is scalable and has a bit
    better quality. If you right click on a graph and select copy then paste
    it into for example Word, you get some kind of object that is scalable and
    nice locking but I newer figured out a way to do this by code. Maybe someone
    else in the n.g. knows some thing about this.
    Don wrote:
    >I am using LV 5.1.1 on a Win 9x platform. I am trying to come up with a>way
    to let users save reports easily from Labview.>>I have stayed away from the
    LV report VI's because they do not support>graphics. What I have come up
    with is less than optimal in my view. I>am using a front panel as my report
    template to show the user the data.>I am hiding any control or indicator
    via attribute nodes that should not>show on the report. Then I am using
    the Get Panel Image Vi Server>method to grab the front panel and save it
    as an image file (why isn't>gif format available? Is it the Unisys copyright
    deal?). This allows>for a user to at least be able to print or save the
    report to file in a>nicely formatted, 1" inch margin, etc. way. One problem
    that this is>less than optimal is that the portable network graphic (*.png)
    format is>not fully supported (without plugins and the like) via common browsers>or
    graphic viewers.>>Another problem I encountered was when merely trying to
    just print the>front panel programmatically from LV, no matter where I placed
    my>controls the ones on the left ended up printing right on the left side>of
    the page leaving minimal page margin. One thing I did try was to>place a
    trasparent decoration box around the report to give LV the>reference edge
    I guess it is looking for. However, an unexpected result>with this was that
    even though the decoration was transparent on the>page it printed with a
    fine border. Not sure what is going on here.>>I also tried using the print
    to RTF format method and that did not allow>for setting of margins that I
    could see. It also printed the vi name>and the words "front panel" in the
    RTF document. Could not find a way>to stop it from doing this which was
    annoying.>>Another attempt was made using the print to HTML method, but this
    would>mean that the user would have to keep up with the html and image files>that
    go to make up the report. This creates a potential problem when>the user
    would like to copy the file or email it because they have to>keep up with
    all the files both html and image and keep them in their>proper referenced
    locations (so that the htm file can find its images>unless the end user wants
    to go in and edit tags.)>>Any help would be greatly appreciated.>>Thanks,>>Don>

  • How to gone the form after login to the application in smp2.3 hwc?

    Hi All,
           I developed an application in that user has to login the application, based on the login user details are shown in a listview.
    The whole thing is working fine, but when the user logged in the application, then the login screen has not visible. for that i wrote a code in custom.js
    if (screenKey == 'Start' && destScreenKey == 'Details') {
    document.getElementById(screenKey+"Form").style.visibility = "hidden";
    Here the controls in that form are not visible, but the screen is visible.
    How to handle that?
    Regards,
    Sravanya.

    Hi Midhun,
        I created an MBO, i.e., UserDetails. In that user's details like username, password, first name, lastname, date of birth ete. If the user logged in the application i am showing these details in a listview.
    My first screen is "Start" in that username and password editboxes are there, and when the user clicked on log in button i gave the online request to that MBO.
    The query i wrote for login is
    SELECT x.* FROM UserDetails x
    WHERE x.username = :Uname_P
    AND x.pwd = :Pwd_P
    Then it is moved to next scree i.e., "Details" , in that screen i am showing the details in listview.
    After that the user click on back button, it is going to "Start" screen.
    In that screen i have the username and password fileds, even the user logged in the application, when click on back button it is showing the start screen. I want to hide that screen
    So i wore the code
    if (screenKey == 'Start' && destScreenKey == 'Details') {
    document.getElementById(screenKey+"Form").style.visibility = "hidden";
    But it is hiding the Controls which is present in the Start screen.
    I want to hide the whole "Start"  Screen, when the user clicked on back button it should not show the start screen.
    Regards,
    Sravanya

Maybe you are looking for