Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

Populate ViewBox with value of a single textbox

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Populate ViewBox with value of a single textbox

    This should be easy but I am not having much luck. I want to grab a URL value from a textbox and then populate the View Box with that data. That is the ONLY field ('VideoURL') in the View Box


    Code:
    //Grab URL from textbox
    var vURL = {dialog.Object}.getValue('VideoURL');
    
    //Get Pointer to VB
    var vbObj = {dialog.object}.getControl('VID');
    
    //This is hard coded with the URL. How to I pass in vURL formatted like below?
    var _d = [
    {VideoURL: 'https://www.alphasoftware.com/permanent/builtinvids/big_buck_bunny.mp4'}
    ]
    vbObj.populate(_d);
    Thanks in advance for any assistance.

    #2
    What goes wrong?
    Think your code is good, perhaps your viewbox definition not.
    See my quick example in the attachment how I defined the source for the viewbox en it's layout
    And I changed your video so that it reallly played something

    It works stand alone (all hard coded) just press the populate button in preview
    Attached Files
    Ger Kurvers
    Alpha Anywhere / V4.6.1.9- Build 6488 (production) / V4.6.5.1 - 8722-5683(testing)
    Development: Mysql, windows 10 64 Applicationserver: standard on Windows server 2019

    Comment


      #3
      Thank you for your help. The viewbox works fine if hard coded. What I need to do is NOT hardcode the value....but grab the URL from a textbox field and format it as JSON so I can populate the viewbox from that.

      Comment


        #4
        Ah,

        Try:

        var _d = A5.ajax.buildURLParam('VideoURL',vURL);
        Ger Kurvers
        Alpha Anywhere / V4.6.1.9- Build 6488 (production) / V4.6.5.1 - 8722-5683(testing)
        Development: Mysql, windows 10 64 Applicationserver: standard on Windows server 2019

        Comment


          #5
          Thank you again for the suggestion.


          Unfortunately that did not give me the result I need.

          I have tried this:

          Code:
          var _d = '[{VideoURL: ' + "'" + vURL + "'" + '}]'

          That results in _d =

          Code:
          [{VideoURL: 'https://www.alphasoftware.com/permanent/builtinvids/big_buck_bunny.mp4'}]
          Which I think is the same as the hard coded of:

          Code:
          var _d = [
          {VideoURL: 'https://www.alphasoftware.com/permanent/builtinvids/big_buck_bunny.mp4'}
          ]

          But the viewbox still fails to load the video.

          I must still be missing something. The opening and closing brackets are on different lines in the hard coded...but it looks like the JSON should work?

          Comment


            #6
            Watch the Video - the component is attached.

            https://www.screencast.com/t/YpvWkQLtCVNT


            Attached Files
            Insanity: doing the same thing over and over again and expecting different results.
            Albert Einstein, (attributed)
            US (German-born) physicist (1879 - 1955)

            Comment


              #7
              Pete,

              Thank you so much for taking the time to make the video and the demo component. Your solution is clean and easy to understand. I am still a novice when it comes to the View Box but I am definitely enjoying the process of learning how to use it.. Thank you again for sharing your expertise on the subject!

              Cheers

              Comment


                #8
                Same to Ger.. well done.
                Insanity: doing the same thing over and over again and expecting different results.
                Albert Einstein, (attributed)
                US (German-born) physicist (1879 - 1955)

                Comment


                  #9
                  Yes.....thank you so much Ger! I did not know your name before.

                  I appreciate your willingness to help on this. It is developers like you and Pete who really give back to the developer community and help all of us to be come better developers.

                  I hope you have a nice weekend....cheers!

                  Comment


                    #10
                    your are welcome, succes!
                    Community is invaluable, got and get many times help here myself!
                    Ger Kurvers
                    Alpha Anywhere / V4.6.1.9- Build 6488 (production) / V4.6.5.1 - 8722-5683(testing)
                    Development: Mysql, windows 10 64 Applicationserver: standard on Windows server 2019

                    Comment


                      #11
                      Just want to say thanks to both of you. I also was looking at the viewbox for the video container but was stuck on how to pass data to the script in the view box.

                      Greg, I'm also using S3 as storage for the videos and I'm a bit stuck on access control. Have you tried anything with the access control lists in S3?

                      Thanks
                      Tom

                      Comment


                        #12
                        Hi Tom. The help that I received from Ger and Pete allowed me to offer a virtual music adjudication for our music association. We had over 7,000 videos uploaded to s3. The viewbox was the perfect option for the job since it was very light and responsive. We consumed over 8 TBs of bandwidth but overall the approach worked well.

                        Our music judges used a list control to access the videos. Their access was controlled by an argument......Judge 1 would only see performers assigned to them, etc. I locked out (sort of) the ability to download the video with some code in the viewbox. I will look that up and post it here for you. Are those the questions you had about access control? Obviously there is no easy way to prevent someone from using a screen recorder program to capture the video....but this approach works well for the casual user.

                        Comment


                          #13
                          Here is the layout I used for the viewbox. It turns off the contextual menu and hides the download option. Big caveat, it may not disable those in all browsers....but it is better than nothing.

                          HTML Code:
                          <div>
                          <style>
                          video {
                          width: 100%;
                          height: auto;
                          }
                          </style>
                          
                          <video oncontextmenu="return false;" controls controlsList="nodownload" src={VideoURL}></video>
                          </div>

                          Comment


                            #14
                            Wonderful to read the story Greg, glad it worked well the Viewbox is a real less is more story, less resource consumption, more speed and happy users. - thanks.
                            Insanity: doing the same thing over and over again and expecting different results.
                            Albert Einstein, (attributed)
                            US (German-born) physicist (1879 - 1955)

                            Comment

                            Working...
                            X