Some Imp Question

Hi all
Below are some of the question related to the dashboard and reporting.

1. how we handle guests specific user scope
2. dynamically manipulate the components to show or hide
3. don't OBIEE manages several items with no impact on performance
4. how to display the detail records in a dashboard where the user wants to scroll up and down
5. is it possible to right SQL custom in a page?
6 dealing with guests cascading
7. transfer value to a dashboard to a different dashboard
8 from graphs conditional formatting
9. is it possible to pass the value from one page to another page in the dashboard
10. how to manage the large number of legend items in the single chart
11. a dashboard get corrupted if all changes made in to ask level
12. dynamically change the title or header in graphics

Could you please explain each as

Raj wrote:
Hi all
Below are some of the question related to the dashboard and reporting.

1. how we handle guests specific user scope

Guests of scope are not specific to the user, but incase you need to do this then you will need to create the edge/separate pages for the users/grps table that is long and tedious process (AVOID)

2. dynamically manipulate the components to show or hide

By using the conditional Section guided Navigation for 10g and action links in 11g

3. don't OBIEE manages several items with no impact on performance

What you mean here... 2 independent things, I'd say. There are several ways to improve performance once the needs of the business are met.

4. how to display the detail records in a dashboard where the user wants to scroll up and down

Dashboard report folders can be managed using the report properties

5. is it possible to right SQL custom in a page?

Can use request Direct to database to point to a valid connection pool and write SQLs

6 dealing with guests cascading

Achievable

7. transfer value to a dashboard to a different dashboard

Are there different methods to achieve this

8 from graphs conditional formatting

Achievable based on conditions

9. is it possible to pass the value from one page to another page in the dashboard

Are there different methods to achieve this

10. how to manage the large number of legend items in the single chart

With the help of the legend view

11. a dashboard get corrupted if all changes made in to ask level

What do you mean here? Dashboard is just a layout where various queries and reports are integrated. CAB always change you it.

12. dynamically change the title or header in graphics

Not possible at the level of graphical property but workarnds are there to satisfy operational requirements.

>

Could you please explain each as

BTW, this forum is used for individual QUESTIONS you encounter during projects LIVE or individual oxygen concentrators or self-learning. Hope you understand!

Tags: Business Intelligence

Similar Questions

  • Some basic questions on TestStand

    Hello

    I'm new on the test stand and I just finished my first sequence. I have some questions on how to do better.

    My sequence steps about 100 it is running. One of the steps that happen quite frequently is a break so that the previous output VI can take effect. Right now I use a VI with one that takes an integer as an input and makes a break during this time. Is there a more elegant way to do it?

    VI another I use saves some data and runs all the 6 step or so. The only difference between each execution is a setting of path for the filling of journal to be issued. I wish that the sequence to be as clean and well placed as possible. Is there a clever way to short-circuit the number of steps down?

    Basically, it seems that you have basically 3 things that could potentially happen: travel, Journal, break sensor.

    So why not create a data type for every thing.  For example, your MoveSensor data type would be a container that looks like this:

    MoveSensor

    Boolean SensorFlag

    Digital NewPosition

    Digital CurrentPosition

    etc...

    Your Log data type would look like this:

    Boolean LogFlag

    String FilePath

    Digital time

    etc...

    Your break would be just a number (PauseTime)

    Then, you bring a container with each type of data into it.  And then do a table of these containers.

    Now by using the ForEach flow control step type, you can iterate through the table.  The pseudo code would look like this:

    ForEach item in my table

    If CurrentElement.MoveSensor.SensorFlag is true

    MoveSensor to CurrentElement.MoveSensor.NewPosition

    CurrentElement.MoveSensor.CurrentPosition is equal to the new position

    If LogFlag is true

    Log LogPath (maybe the loop on that for a certain period of time)

    Wait (CurrentElement.PauseTime) set to 0 if you do not need to take a break

    End ForEach

    This way you would add just the elements in the table.  You can also write the array a property object (read about those in the help) file and the test, just read in a different property object file that would fill your table with different values in function.

    Hope this helps some,

  • Some General Questions of CVI - how does the compiler

    Hello

    I work with CVI 9.1 for more then a year during this time i ' v noticed a couple things, I would like to help me to understand.

    1. Work with several C files:
    • When I'm writing a software that uses lets say C files and files of 10 H 10: Main.c Main.h File1.c File1.h Panels.h Panels.uir and so on... I'm implementation of the function in the c file and its deceleration of writing in the file h, i ' v noticed that sometimes I get msgs of the compiler on the conflicts, maybe there's a way I know not just for the CVI?
    • Works correctly with the file UIR for example lets take the files written above, if I have sign - HAND and control led1 and I want to do SetCtrlVal in the Main.c I can implement as this SetCtelVal(MAIN,MAIN_LED1,1); but when I go to file1.c and try to do it, I get the error message that main_led1 is not a control value (I included the Panels.h) this problem happens to me a lot is there a solution? or maybe I am doing something wrong...
    • What is the best way to implement bollean var (true false) for the software? is it possible to add this var always?
    • decelerations of incompatible type: allows you to take the Fmt function for example when I'm trying to use it in another file, I get the decelerations of incompatible type with the names of the files...
    • General question: lets say I want to include in my project and I want to use its features in main.c and file1.c, I included in two files? or there is a way to include it in a single file only?

    2. to access the buttons

    • lets say that I have buttons and I am pressing on it after pressing the button I have a loop for 10 min, I want to create a button give up, but I can't press anything because the keys are "locked out" is there a way besides multi threading to implement this?

    Wow! A very broad set of issues!

    A quick response.

    • Works correctly with the file UIR for example lets take the files written above, if I have sign - HAND and control led1 and I want to do SetCtrlVal in the Main.c I can implement as this SetCtelVal(MAIN,MAIN_LED1,1); but when I go to file1.c and try to do it, I get the error message that main_led1 is not a control value (I included the Panels.h) this problem happens to me a lot is there a solution? or maybe I am doing something wrong...

    There is a basic error in your statement: the first (SetCtrlVal) parameter must be the handle Panel, which is the reference to the object in memory that is created when you call LoadPanel (). Using the name of constant sign is not correct: it may work if you're lucky and you have the Panel handle with the same value as the name of the constant, but this certainly isn't the correct way to address on a panel controls.

    Even if I don't understand the error that you declare: I expect 'the control is not of the type expected by the function' or an error of inconsistent data type (like passing an int to double check) or...

    Remember that each function that processes objects on a Panel must be aware of the handful of Panel, then either you pass to the function as a parameter, or store it in a global variable.

    • decelerations of incompatible type: allows you to take the Fmt function for example when I'm trying to use it in another file, I get the decelerations of incompatible type with the names of the files...

    I normally leave CVI #including the necessary system files: when I use certain functions like Fmt in a source file and compile ICB warns me to add the relevant include file, and it does it correctly. Operating in this way I never had problems with formatting and the I/o library functions. You can rebuild the inclusion list by removing all #includes in yous source files and compilation of the project, this should correct errors

    • General question: lets say I want to include in my project and I want to use its features in main.c and file1.c, I included in two files? or there is a way to include it in a single file only?

    You must include the file containing the definitions of the functions in all source files that use. Or you can create a general include file with all included in your project and include only this one in all of your source files

    • lets say that I have buttons and I am pressing on it after pressing the button I have a loop for 10 min, I want to create a button give up, but I can't press anything because the keys are "locked out" is there a way besides multi threading to implement this?

    It is a general rule that animates the CVI environment: during the execution of a loop inside a function (a reminder of command or another function) the system does not handle the user interface events, so that your buttons appear locked. This can be solved by adding a call repeated (ProcessSystemEvents) inside the loop: this way of all UI events are monitored and managed by the system.

    You must use this method with caution: before entering the loop, you must disable all the controls that can be used during operation (normally only the Quit button should stay active) otherwise, you can enter a situation in which other callbacks are executed during the loop that might interfere with it.

    In such a case, do not put a reminder in the stop button and the use of a global variable I have normally create a toggle button Stop and manipulate it in this way:

    While (1) {}

    ....

    ProcessStemsEvents ();

    GetCtrlVal (panelHandle, PANEL_STOP, &stop);)

    If {(stop)

    ... gracefully out of the function

    break;

    }

    }

    This argument has been discussed several times in the forums: do a search for ProcessSystemEvents returns a large number of discussions you can read

    • What is the best way to implement bollean var (true false) for the software? is it possible to add this var always?

    CVI is not a native boolean value. I used to use an int and test weather it is zero or not

    • When I'm writing a software that uses lets say C files and files of 10 H 10: Main.c Main.h File1.c File1.h Panels.h Panels.uir and so on... I'm implementation of the function in the c file and its deceleration of writing in the file h, i ' v noticed that sometimes I get msgs of the compiler on the conflicts, maybe there's a way I know not just for the CVI?

    I do not understand what you describe: could you add some piece of code allowing to penetrate this situation and report exactly the message the compiler warns?

  • Two questions: Running XP and have some interesting questions at the start and with IE.

    Hi, I try to wear the IT hat and works to clear up some questions on my mother's computer.  #1 I guess that the computer was shipped with a version of Corel Photo software on it and we cannot get rid "Installer" messages at the beginning upward.  We tried to remove the program and the same message comes back to tell us that "Installer can do the requested action without the CD/program files" it gets about 6 of these reviews that it must close any until the computer will continue to boot the system.  Please, please tell me how to get rid of this.  I tried to install the 'Installer' update to see if that would make the difference and nope.  I also tried to remove the Corel file via CCleaner and got the same message.  I do not have the program disc, I don't want to program... I want to just get rid of it!

    #2 when entering address in the Internet Explorer address bar, the browser opens a second browser instead of going to the requested site.  For example, when I open my Internet Explorer and say go to the top of the address bar and typewww.google.com, instead of going to Google, it opens a completely separate browser.  When she did this, it's EXTREMELY SLOW!  until you think that IE went unresponsive and then finally opens the second browser.

    I'd appreciate any help!  I'm trying to solve these problems, while I'll be staying here so that I can leave him a computer running.

    Thank you!

    Hello

    ·        What version of Internet explorer that you are using (Internet Explorer 6, 7 or 8)?

    ·        Was long before Internet Explorer work?

    ·        Since when are you facing this problem?

    Step 1:

    It may be some third-party software that runs in the background that is shown with the process, I suggest you do a clean boot and check. To perform a clean boot follow the steps mentioned in the link given below.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Note: Once you have finished installing, follow step 7 to start the computer in normal startup.

    If the steps above don't help you not to remove the Corel Photo software, I suggest you to post your query on the forums of XP. Click on the link below.

    http://social.answers.Microsoft.com/forums/en-us/xpprograms/threads?filter=answered

    For Internet Explorer related issues, follow steps 2 and 3 of the step.

    Step 2:

    I suggest you run the fix it this tin article given to repair Internet explore

    How to reinstall or repair Internet Explorer in Windows Vista and Windows XP

    http://support.Microsoft.com/kb/318378

    Step 3:

    If you use Internet Explorer 7 or 8 I suggest you run the fix it is present in the article below. If you use Internet Explorer 6, you can follow the steps mentioned in the article given below where they apply to Internet Explorer 6 also.

    How to reset Internet Explorer settings

    http://support.Microsoft.com/kb/923737

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • BlackBerry Smartphones has BB for less than 24 hours... some (stupid) questions!

    Hi all

    I looked through some tips and read the summary instructions (at best) that came with my BB and now have a few questions, if that's ok:

    1. I downloaded the "favorite" of Facebook, but I don't know where that is?  I thought this would be an icon, I could then add to the home screen?  If it IS, then how can I find and to do this?

    2. is it possible to add my iTunes Catalog, or a part of it, to my BB - are compatible somehow?

    3. how to choose something other than the horrible Vodafone home page, to be my homepage on the internet?

    5. What is the difference between "browser" icon and the icon "WAP"?  Am I meant to go through one preference to another, because in the end, they both make the same thing?

    6 represents the number of pins only to give BB 'friends', so we can chat on messenger, or there are homonyms?

    Again, sorry for the stupid question; I'm really proud of the implementation so far without any help from the husband, but having my llimitations, lol - it's a world apart form the Nokias I've owned exclusively for the past 13 years... but I think I love her!

    Thank you

    L x

    1. I don't know about a 'bookmark', unless you try to bookmark a place in your web browser? You can download and install the Facebook for BlackBerry application.

    Use the browser of your BlackBerry to access www.blackberry.com/facebook

    2. Yes, use of BlackBerry MediaSync software...

    http://NA.BlackBerry.com/eng/services/media/mediasync.jsp

    iTunes with DRM will not transfer, DRM coding should be removed first of all files.

    3. open the browser to the page that you are going to choose as your home page, and then press the Menu key > Options > browser Configuration > scroll down > address Home Page > use current Page

    5. I would like to use the browser icon. WAP icon uses the data of your service provider's WAP service.

    6. the PIN identifies your device to the network and is, so to speak, "Digital ID" in your devide.

    And Yes, your use of the primary AXIS will invite friends with BlackBerrys chatter on BBMessenger.

    You would benefit from reading and practice of 9700 (very similar) my friend Mr. Stinsonddog PIL.
    Look at this link for them, download and print the PDF file and practice the tips using your device. You will be amazed at all the cool things that your BlackBerry can do.
    http://www.Stinsonddog.com/

  • Try structured: ask some Conversion Questions

    So, finally I will give FM structured a serious whirlpool. My style FM use unstructured is consistent and predictable.

    I'm trying to use the online resources, including, http://help.adobe.com/en_US/FrameMaker/12.0/Help/Using/index.html, , I saw samples of Adobe to file > new > Document > explore structured models, but, honestly, they are light. Also, I looked at the Adobe TV video on converting unstructured structured. . However, Miss me some information.


    I'm working on my first conversion table:

    (1) should what element name conventions I follow? I use Easter breaks now, but don't account using all lowercase so he preferred. Should what names I use? 'P' for the body of the text or "Para", for example?

    (2) I understand to map the heading styles to the elements that I call 'Head', and different styles of body to the elements, I will name 'Para'. My bullets and numbered lists that I match the items that I give the word, 'Élément' and I plan to create a wrapper of the 'list' for these, for example. Agenda is defined with a 'Type' attribute which can be "numbered" or "chips". I know there are other ways to approach that, like using explicit UL and OL elements or envelopes.

    (3) what should I do with the paragraphs I have graphics anchor to? I have an AnchorGraphics tag for anchoring of the images and an AnchorTable tag for the anchor tables. If these become 'Para '? Should and can I maps a tag FrameMaker to anything, so he goes?

    (4) what I'd do with remarks, precautions and warnings? Are these also best as elements of "Para", or if they get their own?


    You have thoughts and resources?


    Thank you!

    Sean,

    I think you can ask questions without solid answers. There is probably a significant variety of opinions out there, all of which are just that... opinions. The short answer is that you need to understand what works for you, and maybe it's not what works for someone else.

    There are some who would you like to forget this exercise together and just use existing data, such as DITA or Docbook structure. It's certainly an option. I use not or because it doesn't work for me.

    So, let me tell you what works for me, with regard to the questions you have asked. This is all subjective in your case, but it is based on a very busy and highly refined workflow, producing good results for many years.

    1. name element conventions - I love tiny element names that DITA uses, such as

    (((,

      , etc. because 1) they are short and easy to visualize 2) I know not what they mean because I am a writer and they are also similar to HTML in some cases 3) short the tag of the element, the least amount of overhead in the file structured and also XML, if you export in XML format.

      2 - as long as author, I find much faster specify a

        explicit or something in
          , rather than defining an attribute. In addition, it is much easier to see in the view of the structure. In addition, there is less overhead in the source file. DITA called a header element... I like this better than<Head>, but once again, it is just me.<p class="reply"> <p class="reply">3. for the numbers, I use a <fig>item that matches my tag "AnchorGraphics". The <fig>element has two children...<image>and<title>. The<image>element is a graphic element that inserts a framework anchored in the empty AnchorGraphics paragraph (created by <fig>). Then, the container<title>element inserts a new paragraph for the legend of the figure. The end result is the same as the use of unstructured FM standard, except that the management of the space reserved AnchorGraphics is much better automated and controlled. IOW, you don't have to worry about this more... the element structure does this for you. Among the myriad of benefits of the structure.<p class="reply"> <p class="reply">4 - DITA defines a single <note>element that has an attribute to control if it appears as a note, attention, etc. I like this approach. You can reuse the <para>element, but my thinking is that this would really complicate your background formatting rules. Explicit <note>element seems much better.</note> </para> </note>

    5 - tables - Yes to your basic question, although there are a lot of different names, you can choose the elements. To follow the model of DITA or CLIENT access licenses, you must also an ancestor more in the tree that is the parent of the real table element. DITA, it is the

    element and the actual table element is an element of as a child. In my EDD, the
    item works very similar to the element, empty insert a paragraph in which the child element inserts the actual table. This typical unstructured use of models and works very well for me.

    In all of this, you will notice that I have a lot of reference DITA, but pretend that I do not use DITA. I love DITA structure definition (the DTD mainly)... I find it very intuitive and well designed for the Executive of creation. However, I find little use for other DITA things, such as its emphasis on the management of thematic content and a huge bunch of other complexities that are just a nuisance if you do not need. So, I do have my own EDD, but the definition of the underlying structure is most often pulled away from DITA. I encourage you at least watch the DITA specification and see how they did it. The easiest way would be to use FM menus to create a DITA sample topic and wasting its time with her.

    I hope this helps.

    Russ

  • Some General Questions about the externalization of authentication

    We plane to outsource the APEX authentication so that it would be linked to the credentials of the end-user network. Were do because:

    It is more in line with the expectations of the users.
    It will simplify maintenance by the user.
    When the user leaves the ice, their APEX access will be automatically disbanded as their network connections are disabled.

    We found some very good articles on the subject, for example http://www.greenit.li/greenIT/Willkommen_files/Oracle_APEX_ProofOfConceptNTLMPLSQL.pdf (other suggestions would be welcomed and encouraged). However; We have a few questions:

    The first is authentication and authorization. We get how end users can be authenticated based on Active Directory. However, within the APEX now, create us a new user and specify if who are developers, who, team development Application Builder, SQL workshop, they can access. schemas are accessible to them, etc. This page requires, of course, a password.

    How will this work if the authentication is outsourced? We always create the same user in the APEX?
    If so, what should we put the password related areas?
    If this is not the case, how do we control authorization once authentication completed successfully?
    If not, how to make the application available for users (authenticated network) and not others?
    If the application allows the user to pass a password (assuming that they are properly connected to the network), what should happen when a person clicks on logout?

    Thank you for any input,

    -Joe

    Joe Upshaw wrote:

    One of the elements of game here (great requirements above) is to make sure that the APEX applications are directly linked in the cycle of creation/decommissioning of the user of the organization. In other words, the desire is that deleting or disabling a user account in the central directory (Active Directory) have the effect of disabling access to all enterprise systems. We do not expect to allow some "heavy" end users the ability to access the SQL browser. Is there something that can be done, perhaps with the authorisation schemes, which would allow their access is automatically revoked if it network id have been revoked? Can authorisation schemes be applied to the APEX development pages maybe?

    Laughing out loud

    The only thing that comes to mind is running a scheduled task on your databases which retrieves users APEX in the APEX_WORKSPACE_APEX_USERS view, checks the user account is still valid in AD using dbms_ldap (assuming that the user IDS match, or there is a convention to get from one to the other) and removes , expires or to block those who are not using the APEX API. The problem which is the

    To perform this procedure, the current user must have administrator privileges in the workspace.

    restriction to the user of apex_util API. Comply with the scheduled job will have to Re: create a session programmatically (that is to say, outside the APEX)., who is skating on or above the line about the API without papers/not taken in charge. This may be frowned upon by the great above and Oracle. (However, in this case it is less of a concern that the use of such methods in your APEX applications, which certainly, I would not recommend.)

  • exp / imp question to support

    Hello @ all.
    It exist in some other forums tools exp and imp will be launched out of the product. Does anyone know if this is true and when it will arrive?
    Thank you very much.

    It has not been started, you can still use exp/imp in version 11 GR 2.

    In Oracle 10 g is a better tool called "Data Pump" for exports or imports

  • Flash Builder 4 - some basic Questions

    -Very well, I'm a total essential with flash, so I apologize for the nubbish garbage, I will say...

    .. .and like any node of forum, I apologize if this is in the wrong forum.

    That out of the way, I have a few questions.

    First of all, I would like to get the software to create flash games, flash animations and web design in general. I guess that Flash Builder 4 is the right software for it? If this isn't the case, please let me know what is.

    I'm quite familiar with the Eclipse IDE for Java. I read somewhere that the environment of the building was "based on Eclipse,' which for some reason any actually surprised me a lot. This environment of standard construction with FB4 or is it part of something else?

    Assuming that it is the correct software, and this is the right section to ask, where would be a good place to start to learn flash? I have a computer science background, so I know the basics of most of the stuffs programming. The program built in tutorials? They are all good? I'll probably use w3schools for more help as well. Where can else I learn some tips?

    Also, I noticed there are a few discounts for students. I attend college full time, so is that enough to be eligible for discounts of such?

    Hello

    You can create animations and games with Flash Builder, but honestly, I think you'll find more easily and more quickly using Flash or Flash Professional because it gives you easier control of this type of installation (Visual rather than code).

    Flash Builder (Eclipse) is really the best way and the most common is to develop Flex applications, you can use the standalone or plugin Eclipse and dive into it with full functionality in both. Is there another IDE, but personally, Flash Builder is still my favorite and actually convinced me to use Eclipse more for other projects and languages.

    Adobe has great resources for getting started, there are also some fantastic courses on lynda.com, which is where I always go to form upward on a product or a new topic (I'm not affiliated, just a fan), including on a Flash animation which may interest you with ActionScript 3 animation, there are some courses. Most of these forums have some great people ready to answer and help with questions, also Adobe Press books are great to touch the ground with. Shameless plug I've also conditioned videos on my site www.uibuzz.com.

    I'm going back to my first paragraph if, I think Flash is likely to agree with you're needs more Flash Builder, but the great thing is whatever allows you to become familiar with the ActionScript 3, all this applies, my background starts with Flash, and then moved to Flash Builder with little or no re-learning other than the Flex framework.

    Hope this helps,

    Kind regards

    Peter Witham

    www.uibuzz.com

  • [Issue] [CS5] With the help of. send() and some other questions

    Hi guys in these last days I made research Stratus in CS5 hoping to be able to reproduce some kind of multiplayer game of him. The main problem that I ran in use. send(), I can't understand how to use the correctly. This is what I understood would work, but it doesn't seem to register that something happened:

    var myString:String;

    function sendmsg(2) (event: MouseEvent): void
    {
    myString = textInput.text;
    outgoingStream.send ("msg", myString);
    }

    function msg (myMsg:String): void

    {

    myLog.text += myMsg;

    }

    Any help to do this would be greatly appreciated.

    Just a few small questions about Stratus I want good answer:

    1. Use. more faster/more efficient send() then post where a fraction of a second account (sending players positions) where there are 4-8 people?
    2. When you use a NetStream with an attached how GroupSpecifier know when a person has joined or left?

    Note: All questions are regarding the CS5, not Flash Builder as I am not very aware if there is any difference in coding.

    NetStream.send () should generally be faster than NetGroup.post (), especially when using NetStreams 1:1 (vs. Group NetStreams).

    When groups are great, there is no average liabilities to say when members join or leave.  However, for small groups (less than 15 members), they will be "full mesh", meaning that each Member is a direct connection to every other Member.  When this is the case, you can see the events of NetGroup.Neighbor.Connect/Disconnect on a NetGroup.  to receive people, you create a network group with the same groupspec than your NetStream and listen for events from NetStatusEvent.NET_STATUS.

    your "msg" function must be a method on the 'customer' object of the NetStream subscribed to receive the NetStream.send (s) of the editor.

    It's all generic ActionScript stuff.  I don't know how to use Flash CS5, but such things should all be the same in Flash and Flash Builder.

    -mike

  • Some newbie question CS4 Adobe Premier [Black]

    Hello everyone! I work with Ulead Video Studio and Sony Vegas studio before, but when I started working with huge projects that these produts are starting to work a very unstable and now I'm doing a project in first CS4.

    And I have a question:

    I have some pictures from my camera. These photos have such parameters: 2816 x 2112 [it's 5 megapixel camera].

    And my video with parameters: 640 x 480, 30 frames per second.

    Then, I created my project with custom settings I made according to the properties of my video file [640 x 480, 30 fps].

    When I put a few pictures on the timeline, the Prime Minister does not seek to to scale an image in the resolution 640 x 480 and I see just part of my photos.

    (It was very frustrating for me because Vegas and Ulead have done automatically).

    But I found an option that requires "Scale to the size of the image". It works, but black bars appear on the top and the bottom of my photo.

    What should I do to remove these bars? It's very strange because in Ulead and Vegas bars do not appear with the same video settings and the resolution of the photo.

    I guess maybe I made a few adjustments incorect but I really do not understand what I have to do.

    Thank you for you attention! Thanks in advance!

    Scale to the size of the image can be problematic, because it allows to adjust the size of your clip to fit completely inside the video 'openness' that you use, without distorting the proportions. This means that if a clip (or in your case, photo) has a report that does not match your sequence settings, you can potentially see black bars. Your photos have 1.33 pixel aspect ratio (2112/2816), and this is what should be your sequence of 640 x 480 - unless you use non square pixels. Try to create a new sequence that is 640 x 480 and make sure that your pixel format is set to "Square Pixels". This will ensure a 1:1 relationship between the width and the height of your sequence.

  • Some basic questions please about iCloud photo library

    I am today store all my photos locally in my iOS and OSX devices.

    In addition, I use time machine and cloud CrashPlan backup.

    Recommend using iCloud library instead of my present meanneging photo?

    IN the affirmative. When turning on photo library from iCloud, it will replace the unlimited lacal automattecly?

    Thank you.

    1. using iCloud photo library or not it is a personal decision - nobody else can do it for you - my personal choice is to use it for a small library, keeping a larger separate library and the use of PowerPhotos to move photos between libraries that I find that the best compromise between cost and the connivance to me - you and others can find some better implemented

    2. so far nobody has restored successfully a library of Photos CrashPlan form then I suggest that not rely you on it for a backup - and ICPL is not a backup, is a way to share your library among multiple devices

    3 / ICPL-turning will not replace the photos - it merges your libraries in a library that is exactly the same on all devices and is related any modification on any device is made on all

    LN

  • Some basic questions

    Dear all:

    I'm new to workspace so please accept my apologies for these fundamental questions.

    So I installed vworkspace console management as well as the connection broker role. but when I want to add the broker for connections to the location it gives the error (the system could not find all servers in the domain XXX). It would be appreciated if you can let me know if additional configuration should be made at this stage

    Thanks to you all

    Hello Sina,

    You can check the services and verify that the "computer browser" service is enabled and running. If not then turn on and start the service, leave a few minutes and then check back the vWorkspace Console to see if you can now see the domain servers.

    Thank you

    David

  • Some additional questions about the creation of recovery disks

    HP Clubhouse 17 laptop laptop 17-e040us

    Wireless connection

    Disks creating information that I downloaded from the HP website, he States "If you are prompted for an administrator password, type the password confirmation or providide.

    How to create an administrator password?  The only areas where I created passwords on the laptop are the Login Screen/signature to the PC, Mirosoft account and a Description of the computers.   How can I give confirmation?

    Disconnected from the internet.  After the login screen and go to the start menu, I'm not connected to the internet.  Fix?

    Do I have to disconnect external equipment of the laptop before you create recovery discs?

    During the process of creating, if it has stop or, a message that something is wrong, what should I do?

    Thank you.

    You're not likely to be asked for Admin password unless you use a user account created with Limited permissions such as we would be put in place for another user on their machine. Some people share a machine with children, adolescents and setup one account limited for them.

    I never really worried about to disconnect Internet-just don't have Internet Explorer or Email app open and active on the internet. You could always disable the wireless I guess. Usually the F12 key in the top row turns stylized / disable tapping. White = light it.

    If you have a problem... just after this problem if the Recovery Manager gives no details of what you need to do about it. You can always phone HP and request a recovery media if the process fails for you.

    Just try to stop worrying and thinking that it. Go ahead!

  • How to adjust the alignment of the fonts and some other questions?

    Hello, I am wanting to know how align the police left and in each tab and the tab "UNCHANGED" I wish that all these lines to be attached to a (jpg image file or what ever would be preferable) which appears in the example tab.

    var l = new window ('dialogue', "Running changes", undefined);
    tpanel var = w.add ('tabbedpanel');
    tpanel.preferredSize = [500 500];

    var General = tpanel.add ('tab', undefined, "Changed Éléments");
    General.Add ("statictext', undefined," Double space - space unique");
    General.Add ("statictext', undefined," Double - single back");
    General.Add ("statictext', undefined," space.)   -   .");
    General.Add ("statictext', undefined," space:-: "");
    General.Add ("statictext', undefined," "< CR > - back ');

    var General = tpanel.add ('tab', undefined, "no change");
    General.Add ("statictext', undefined," B1.)   Omni before aligning information panel o in omni ");
    General.Add ("statictext', undefined," B2.)   ShopLine before aligning the text with S in store and identifier with L online Flush left text panels");
    General.Add ("statictext', undefined," B3.)   Deltron spacing around Art and logo');
    General.Add ("statictext', undefined," B4.)   Art Matthews and attribute update instruction");
    General.Add ("statictext', undefined," B5.)   A work of shot (some just change green bar Some blue ETC...) ») ;
    General.Add ("statictext', undefined, 'B6.   Concept work changes');
    General.Add ("statictext', undefined, 'B7.   Envirobase work changes');
    General.Add ("statictext', undefined," G1.)   Spacing around PPG LOGO');
    General.Add ("statictext', undefined," G2.)   ("Sentence case on the USE of the APP and Description ');
    General.Add ("statictext', undefined," G4.)   Important information and medical information change of SDS Info");
    General.Add ("statictext', undefined," N1.)   Replace contains a box');
    General.Add ("statictext', undefined," N2.)   Remove bar below and above codes bar and near PPG LOGO");
    General.Add ("statictext', undefined," N3.)   (' CPCDescription must be initial capital LETTER ');

    var images = tpanel.add ('tab', undefined, "Example");
    images. Add ("statictext', undefined," regardless of file name.) "JPG"); "
    var buttons = w.add ('group');
    Buttons.Add ('button', undefined, 'OK', {name: 'ok'});
    w.Show ();

    to add the photo, see the book of Peter scriptUi...

    ScriptUI for Dummies | Peter Kahrel

    number of pages: 66

Maybe you are looking for